0
0
Solidworksbi_tool~10 mins

Revolved boss/base 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 boss/base feature by selecting the correct axis option.

Solidworks
FeatureManager.CreateRevolvedBossBase(sketch, [1])
Drag options to blanks, or click blank then click option'
AAxis1
BFace1
CPlane1
DEdge1
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing a plane or face instead of an axis causes errors.
Not specifying the axis leads to incomplete features.
2fill in blank
medium

Complete the code to set the angle of revolution to 180 degrees.

Solidworks
revolveFeature.SetAngle([1])
Drag options to blanks, or click blank then click option'
A180
B90
C360
D270
Attempts:
3 left
💡 Hint
Common Mistakes
Using 90 degrees creates only a quarter revolution.
Using 360 degrees creates a full revolution, not half.
3fill in blank
hard

Fix the error in the code by selecting the correct method to start the revolved boss/base feature.

Solidworks
FeatureManager.[1]RevolvedBossBase(sketch, axis)
Drag options to blanks, or click blank then click option'
AInit
BCreate
CBegin
DStart
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'Start' or 'Begin' causes method not found errors.
Using 'Init' is not a valid method.
4fill in blank
hard

Fill both blanks to define the direction and angle for the revolved boss/base feature.

Solidworks
revolveFeature.SetDirection([1])
revolveFeature.SetAngle([2])
Drag options to blanks, or click blank then click option'
AClockwise
BCounterClockwise
C180
D360
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up direction causes the feature to revolve the wrong way.
Using 360 degrees creates a full revolution, not half.
5fill in blank
hard

Fill all three blanks to create a revolved boss/base with a sketch, axis, and angle.

Solidworks
FeatureManager.[1]RevolvedBossBase([2], [3])
Drag options to blanks, or click blank then click option'
ACreate
Bsketch1
C180
Daxis1
Attempts:
3 left
💡 Hint
Common Mistakes
Using wrong method names causes errors.
Mixing up parameters leads to incorrect features.