0
0
Solidworksbi_tool~10 mins

Sketch plane selection 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 select the front plane for sketching.

Solidworks
sketchManager.InsertSketchOnPlane([1])
Drag options to blanks, or click blank then click option'
AFrontPlane
BTopPlane
CRightPlane
DOrigin
Attempts:
3 left
💡 Hint
Common Mistakes
Selecting TopPlane or RightPlane instead of FrontPlane.
2fill in blank
medium

Complete the code to select the top plane for a new sketch.

Solidworks
sketchManager.InsertSketchOnPlane([1])
Drag options to blanks, or click blank then click option'
ATopPlane
BRightPlane
CFrontPlane
DOrigin
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing FrontPlane or RightPlane instead of TopPlane.
3fill in blank
hard

Fix the error in selecting the right plane for sketching.

Solidworks
sketchManager.InsertSketchOnPlane([1])
Drag options to blanks, or click blank then click option'
ARight_Plane
BRightplane
CRightPlane
DRight Plane
Attempts:
3 left
💡 Hint
Common Mistakes
Using incorrect casing or spaces in plane names.
4fill in blank
hard

Fill both blanks to select the origin and start a sketch.

Solidworks
sketchManager.InsertSketchOnPlane([1])
doc.ClearSelection2([2])
Drag options to blanks, or click blank then click option'
AOrigin
BFalse
CTrue
DFrontPlane
Attempts:
3 left
💡 Hint
Common Mistakes
Using True instead of False in ClearSelection2.
Selecting FrontPlane instead of Origin.
5fill in blank
hard

Fill all three blanks to select the front plane, start a sketch, and clear selection.

Solidworks
sketchManager.InsertSketchOnPlane([1])
sketchManager.InsertSketch()
doc.ClearSelection2([2])
sketchManager.AddToDB = [3]
Drag options to blanks, or click blank then click option'
AFrontPlane
BFalse
CTrue
DTopPlane
Attempts:
3 left
💡 Hint
Common Mistakes
Using TopPlane instead of FrontPlane.
Using True in ClearSelection2.
Setting AddToDB to False.