0
0
Solidworksbi_tool~10 mins

Draft angle feature 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 create a draft angle feature by specifying the angle value.

Solidworks
DraftFeature.SetAngle([1])
Drag options to blanks, or click blank then click option'
A10
B45
C90
D0
Attempts:
3 left
💡 Hint
Common Mistakes
Using 0 degrees means no draft angle is applied.
2fill in blank
medium

Complete the code to select the face to apply the draft angle feature.

Solidworks
DraftFeature.SelectFace("[1]")
Drag options to blanks, or click blank then click option'
ATopFace
BSideFace
CFrontFace
DBottomFace
Attempts:
3 left
💡 Hint
Common Mistakes
Selecting a face that does not exist or is not suitable for draft.
3fill in blank
hard

Fix the error in the code to correctly set the draft direction vector.

Solidworks
DraftFeature.SetDirection(Vector3[1])
Drag options to blanks, or click blank then click option'
A<1, 0, 0>
B[1, 0, 0]
C{1, 0, 0}
D(1, 0, 0)
Attempts:
3 left
💡 Hint
Common Mistakes
Using square brackets or curly braces instead of parentheses.
4fill in blank
hard

Fill both blanks to create a draft feature with a 5 degree angle and select the correct neutral plane.

Solidworks
DraftFeature.SetAngle([1])
DraftFeature.SetNeutralPlane("[2]")
Drag options to blanks, or click blank then click option'
A5
B10
CTopPlane
DFrontPlane
Attempts:
3 left
💡 Hint
Common Mistakes
Using too large an angle or wrong neutral plane name.
5fill in blank
hard

Fill all three blanks to set draft angle, select face, and define direction vector correctly.

Solidworks
DraftFeature.SetAngle([1])
DraftFeature.SelectFace("[2]")
DraftFeature.SetDirection(Vector3[3])
Drag options to blanks, or click blank then click option'
A7
BSideFace
C(0, 1, 0)
DBottomFace
Attempts:
3 left
💡 Hint
Common Mistakes
Using invalid face names or incorrect vector syntax.