Complete the code to create a draft angle feature by specifying the angle value.
DraftFeature.SetAngle([1])The draft angle is typically a small angle like 10 degrees to allow easy removal from molds.
Complete the code to select the face to apply the draft angle feature.
DraftFeature.SelectFace("[1]")
The front face is commonly selected to apply the draft angle in many designs.
Fix the error in the code to correctly set the draft direction vector.
DraftFeature.SetDirection(Vector3[1])The correct syntax for a vector in SolidWorks API is using parentheses (1, 0, 0).
Fill both blanks to create a draft feature with a 5 degree angle and select the correct neutral plane.
DraftFeature.SetAngle([1]) DraftFeature.SetNeutralPlane("[2]")
A 5 degree draft angle is typical, and the FrontPlane is often used as the neutral plane for draft features.
Fill all three blanks to set draft angle, select face, and define direction vector correctly.
DraftFeature.SetAngle([1]) DraftFeature.SelectFace("[2]") DraftFeature.SetDirection(Vector3[3])
Setting a 7 degree draft angle on the SideFace with direction vector (0, 1, 0) correctly defines the draft feature.