Complete the code to create a revolved boss/base feature by selecting the correct axis option.
FeatureManager.CreateRevolvedBossBase(sketch, [1])The revolved boss/base feature requires an axis of revolution, so selecting Axis1 is correct.
Complete the code to set the angle of revolution to 180 degrees.
revolveFeature.SetAngle([1])Setting the angle to 180 degrees creates a half revolution.
Fix the error in the code by selecting the correct method to start the revolved boss/base feature.
FeatureManager.[1]RevolvedBossBase(sketch, axis)The correct method to create a revolved boss/base is CreateRevolvedBossBase.
Fill both blanks to define the direction and angle for the revolved boss/base feature.
revolveFeature.SetDirection([1]) revolveFeature.SetAngle([2])
The direction should be CounterClockwise and the angle set to 180 degrees for a half revolution.
Fill all three blanks to create a revolved boss/base with a sketch, axis, and angle.
FeatureManager.[1]RevolvedBossBase([2], [3])
The method is CreateRevolvedBossBase, using sketch1 and axis1 as parameters.