0
0
Solidworksbi_tool~10 mins

Converting entities and intersection curves in Solidworks - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to convert the selected edge into a sketch entity.

Solidworks
convertedEntity = sketchManager.[1](selectedEdge)
Drag options to blanks, or click blank then click option'
AConvertEntities
BCreateIntersectionCurve
CExtrude
DAddSketchPoint
Attempts:
3 left
💡 Hint
Common Mistakes
Using CreateIntersectionCurve instead of ConvertEntities
Trying to extrude instead of converting
2fill in blank
medium

Complete the code to create an intersection curve between two bodies.

Solidworks
intersectionCurve = featureManager.[1](body1, body2)
Drag options to blanks, or click blank then click option'
AConvertEntities
BAddMate
CCreateIntersectionCurve
DCutExtrude
Attempts:
3 left
💡 Hint
Common Mistakes
Using ConvertEntities for intersection
Using AddMate which is unrelated
3fill in blank
hard

Fix the error in the code to properly convert entities from a face.

Solidworks
convertedEntities = sketchManager.[1](face, false)
Drag options to blanks, or click blank then click option'
AConvertEntities
BCreateIntersectionCurve
CAddSketchPoint
DExtrude
Attempts:
3 left
💡 Hint
Common Mistakes
Using CreateIntersectionCurve which is for curves, not faces
Passing wrong parameters
4fill in blank
hard

Fill both blanks to create an intersection curve and add it to the sketch.

Solidworks
intersectionCurve = featureManager.[1](bodyA, bodyB)
sketchManager.[2](intersectionCurve)
Drag options to blanks, or click blank then click option'
ACreateIntersectionCurve
BConvertEntities
CAddSketchSegment
DAddSketchPoint
Attempts:
3 left
💡 Hint
Common Mistakes
Reversing the method order
Using AddSketchPoint which adds points, not curves
5fill in blank
hard

Fill all three blanks to convert entities from a face, create an intersection curve, and add it to the sketch.

Solidworks
convertedFaceEntities = sketchManager.[1](face, true)
intersectionCurve = featureManager.[2](bodyX, bodyY)
sketchManager.[3](intersectionCurve)
Drag options to blanks, or click blank then click option'
AConvertEntities
BCreateIntersectionCurve
DAddSketchPoint
Attempts:
3 left
💡 Hint
Common Mistakes
Using AddSketchPoint instead of ConvertEntities
Mixing up the order of operations