What is the default CadRasterizationOptions pageWidth and pageHeight value if for-example:
I convert an STL file to JPEG.
I only set the rasterizationOptions pageWidth.
No pageHeight.
Image image = Image.load(sourceFile.toString());
CadRasterizationOptions rasterizationOptions = new CadRasterizationOptions();
float pw = 500;
rasterizationOptions.setPageWidth(pw);JpegOptions options = new JpegOptions();
options.setVectorRasterizationOptions(rasterizationOptions);image.save(targetFile.toString(), options);