Message 1 of 6

Not applicable
05-26-2018
06:24 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
How do I create a 90 degrees arc of an orthogonal ellipse?
If it was the same pattern as circular arc it would be something like:-
Ptr<SketchCurves> curves = sketch->sketchCurves();
Ptr<SketchEllipticalArcs> e_arcs = curves->sketchEllipticalArcs();
e_arcs->addOrthogonalBySweep ( CentrePoint, MinorAxis, MajorAxis, StartAngle, EndAngle );
// e.g. add ( [0,0], 2.0, 5.0, M_PI/2, M_PI );
// c.f. arc->addByCentreStartSweep( Centre, Bgn, M_PI/2 );
but SketchEllipticalArcs doesn't have an add methods though the documentation
states the class "supports the methods to create new elliptical arcs." (https://help.autodesk.com/view/fusion360/ENU/?guid=GUID-c136fbd1-592e-4dc3-8a96-4d8454fd174e)
Solved! Go to Solution.