Starting with new drawing, than crashes at export function.
./pythonscad
Loaded design '/home/matthieu/pyscad_drawings/zaaiplaat/zaaiplaat.py'.
Running Python 3.10.12 without venv.
pythonscad: /home/matthieu/pythonscad/src/io/export_3mf_v1.cc:364: bool {anonymous}::append_3mf(const std::shared_ptr<const Geometry>&, Export3mfPartInfo, {anonymous}::ExportContext&): Assertion `false && "Unsupported file format"' failed.
Aborted (core dumped)
#####################
# Title: zaaiplaat
# Author: Matthieu Hendriks
# Date: 2025-07-18
# License: t.b.d
#
#####################
# Title: zaaiplaat
# start include section
#####################
# Title: zaaiplaat
from openscad import *
#####################
# start constants section
#####################
# constants
fn=128;
run="all"
dia=20
x=200-dia
y=150-dia
wall=2
#####################
# start module section
#####################
def point(x,y):
return(translate(circle(d=dia),[x,y,0]))
def print_zaaiplaat():
obj=hull(point(0,0),point(x,0),point(x,y),point(0,y))
return(obj)
#####################
# start run section
#####################
if run == "all":
Zaaiplaat=print_zaaiplaat()
export({"zaaiplaat" : Zaaiplaat}, "/home/matthieu/pyscad_drawings/slicer_files/zaaiplaat_zaaiplaat.3mf")
show([Zaaiplaat])