- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
SketchDimension in the following C++ Sample Program: Programming Interface Sample Programs Modeling Sketches Create sketch lines in various ways,
https://help.autodesk.com/view/fusion360/ENU/?guid=GUID-98e163be-fd07-11e4-9c39-3417ebd3d5be
does not work.
I copied the whole program in the sample.
Please help.
Thurai
////////////////////////////////////////
Ptr<SketchDimensions> sketchDimensions = sketch->sketchDimensions();
if(!sketchDimensions)
return false;
Ptr<SketchDimension> sketchDimension = sketchDimensions->addDistanceDimension(recLines->item(0)->startSketchPoint(), recLines->item(0)->endSketchPoint(), HorizontalDimensionOrientation, Point3D::create(5.5, -1, 0));
if(!sketchDimension)
return false;
////////////////////////////////////////
Solved! Go to Solution.