ci: Fully render the geometry when creating images.

Required on headless systems.
This commit is contained in:
Arthur Moore 2024-08-04 03:04:41 -04:00
parent df9b7e5262
commit 49718cccc2

View file

@ -114,9 +114,10 @@ class OpenScadRunner:
TOP_ANGLE_CAMERA = CameraArguments(Vec3(0,0,0),Vec3(45,0,45),150)
common_arguments = [
#'--hardwarnings', // Does not work when setting variables by using functions
#'--enable=fast-csg', // Requires Beta version of OpenSCAD
#'--enable=predictible-output', // Requires Beta version of OpenSCAD
#'--hardwarnings', # Does not work when setting variables by using functions
#'--enable=fast-csg', # Requires Beta version of OpenSCAD
#'--enable=predictible-output', # Requires Beta version of OpenSCAD
'--render=true' # Required on headless systems
'--imgsize=1280,720',
'--view=axes',
'--projection=ortho',