
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
My goal is to create sketch on existing planar face. I have exact coordinates of points that should be placed on face. I'm creating sketch in the following way (here face is chosen arbitrary)
Ptr<BRepFace> face = bRepFaces->item(0); fusionSketch = fusionSketches->add(face);
The thing is when I'm adding points to this sketch their coordinates could be with the opposite sign. It depends on surface I'm choosing. For example, on top face of the object.
I suppose this issue occurs because I'm using existing face rather than construction plane (for sketch on construction plane everything works fine, coordinates don't change their signs). Looks like sketch on existing face should be added in some other way, but cannot find any other. Any idea how this could be done? Appreciate any help. Thanks.
Solved! Go to Solution.