Can "presets" for selecting objects be implemented?

 From:  Michael Gibson
11689.12 In reply to 11689.11 
Hi Frederick,

re:
> I'm guessing that is buried deep within MoI and cannot be easily bypassed?

It can be bypassed when calling it from a script, like this:

script: moi.geometryDatabase.deselectAll(); moi.geometryDatabase.selectNamed( 'BC*' ); moi.geometryDatabase.fileExport( '', 'NoUI=true' );


That will use defaults for meshing parameters. You can also send in mesh parameters by using these options separated by semi-colons in the 'NoUI=true' string:

// Different possible options:
// NoUI=true
// Angle=12.0
// Output=ngons | quads | triangles
// MaxLength=0.0
// MaxLengthApplyTo=curved | planes | all
// MinLength=0.0
// AspectRatio=0.0
// Weld=true
// Display=shadedwithedges | shadednoedges | wireframe
// ExpandedDialog=false

- Michael