0
0
Solidworksbi_tool~10 mins

Revolved cut 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 revolved cut feature by selecting the correct axis option.

Solidworks
FeatureManager.SelectAxis([1])
Drag options to blanks, or click blank then click option'
AFace
BCenterline
CEdge
DSketchPoint
Attempts:
3 left
💡 Hint
Common Mistakes
Selecting a face or edge instead of a centerline as the axis.
Using a sketch point which cannot define an axis.
2fill in blank
medium

Complete the code to set the revolved cut angle to 180 degrees.

Solidworks
RevolvedCut.SetAngle([1])
Drag options to blanks, or click blank then click option'
A360
B90
C180
D45
Attempts:
3 left
💡 Hint
Common Mistakes
Using 90 degrees which is a quarter revolution.
Using 360 degrees which is a full revolution.
3fill in blank
hard

Fix the error in the revolved cut direction code by selecting the correct direction option.

Solidworks
RevolvedCut.SetDirection([1])
Drag options to blanks, or click blank then click option'
ASingleSide
BReverse
CBothSides
DUndefined
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'Undefined' which causes errors.
Using 'Reverse' which is not a valid direction setting.
4fill in blank
hard

Fill both blanks to define a revolved cut with a sketch and axis.

Solidworks
RevolvedCut.Create([1], [2])
Drag options to blanks, or click blank then click option'
ASketch1
BSketch2
CCenterline1
DEdge1
Attempts:
3 left
💡 Hint
Common Mistakes
Using an edge instead of a centerline for the axis.
Using the wrong sketch that does not define the profile.
5fill in blank
hard

Fill all three blanks to create a revolved cut with sketch, axis, and angle.

Solidworks
RevolvedCut.Define([1], [2], [3])
Drag options to blanks, or click blank then click option'
ASketch3
BCenterline2
C270
DEdge2
Attempts:
3 left
💡 Hint
Common Mistakes
Using an edge instead of a centerline for the axis.
Using an angle outside the valid range.