Complete the code to convert the selected edge into a sketch entity.
convertedEntity = sketchManager.[1](selectedEdge)The ConvertEntities method creates a sketch entity from the selected edge or face.
Complete the code to create an intersection curve between two bodies.
intersectionCurve = featureManager.[1](body1, body2)The CreateIntersectionCurve method generates a curve where two bodies intersect.
Fix the error in the code to properly convert entities from a face.
convertedEntities = sketchManager.[1](face, false)The ConvertEntities method accepts a face and a boolean to include edges.
Fill both blanks to create an intersection curve and add it to the sketch.
intersectionCurve = featureManager.[1](bodyA, bodyB) sketchManager.[2](intersectionCurve)
First, create the intersection curve with CreateIntersectionCurve. Then convert it into sketch entities with ConvertEntities.
Fill all three blanks to convert entities from a face, create an intersection curve, and add it to the sketch.
convertedFaceEntities = sketchManager.[1](face, true) intersectionCurve = featureManager.[2](bodyX, bodyY) sketchManager.[3](intersectionCurve)
Use ConvertEntities to convert face edges, CreateIntersectionCurve to get the curve between bodies, then ConvertEntities again to add that curve to the sketch.