Complete the code to create a revolved cut feature by selecting the correct axis option.
FeatureManager.SelectAxis([1])The revolved cut requires a centerline as the axis of revolution to properly create the cut.
Complete the code to set the revolved cut angle to 180 degrees.
RevolvedCut.SetAngle([1])Setting the angle to 180 degrees creates a half revolution cut.
Fix the error in the revolved cut direction code by selecting the correct direction option.
RevolvedCut.SetDirection([1])The direction must be set to SingleSide or BothSides. 'SingleSide' is the correct option to fix the error if the code was missing this.
Fill both blanks to define a revolved cut with a sketch and axis.
RevolvedCut.Create([1], [2])
The revolved cut requires a sketch and a centerline axis. 'Sketch1' and 'Centerline1' are the correct inputs.
Fill all three blanks to create a revolved cut with sketch, axis, and angle.
RevolvedCut.Define([1], [2], [3])
The revolved cut needs a sketch, a centerline axis, and an angle. 'Sketch3', 'Centerline2', and '270' degrees are correct.