Message 1 of 6

Not applicable
06-08-2018
10:47 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello, I just wanted to ask how you can get the intersection sketch of a BrepBody with a selected Construction Plane.
I currently have this below, but it makes the intersection sketch below where the construction plane is.
bodies = model.bRepBodies
body = bodies.item(0)
sketch2 = sketches.add(model.xZConstructionPlane)
entities = []
entities.append(body) # body
entities.append(plane) # construction plane
IntersectionSketches = sketch2.intersectWithSketchPlane(entities)
Solved! Go to Solution.