Select an Elliptical Arc with a script

 From:  wayne hill (WAYNEHILL5202)
10657.1 
How do I select an Elliptical Arc with a script?

An Ellipse can be selected with this script.

code:

script:/*Select Ellipse */ var curves = moi.geometryDatabase.getObjects().getCurves(); for ( var i = 0; i < curves.length; ++i ) if ( curves.item(i).isEllipse ) curves.item(i).selected = true;



http://moi3d.com/forum/index.php?webtag=MOI&msg=8814.1

Could not find any reference for isEllipticalArc.

Thank you,

Wayne