0
0
Solidworksbi_tool~10 mins

Extruded 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 an extruded cut feature with a specified depth.

Solidworks
extrudedCut = featureManager.[1](depth)
Drag options to blanks, or click blank then click option'
ACreateExtrude
BAddExtrude
CCreateCut
DCreateExtrudedCut
Attempts:
3 left
💡 Hint
Common Mistakes
Using a method that creates an extrusion instead of a cut.
Confusing 'CreateCut' with 'CreateExtrudedCut'.
2fill in blank
medium

Complete the code to set the direction of the extruded cut to reverse.

Solidworks
extrudedCut.Direction = [1]
Drag options to blanks, or click blank then click option'
AswDirection_Forward
BswDirection_Reverse
CswDirection_Left
DswDirection_Right
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing the forward direction instead of reverse.
Selecting a direction unrelated to extrusion.
3fill in blank
hard

Fix the error in the code to specify the extrude depth correctly.

Solidworks
extrudedCut.SetDepth([1])
Drag options to blanks, or click blank then click option'
Adepth
BdepthValue
Cdepth_in_mm
DdepthValueMM
Attempts:
3 left
💡 Hint
Common Mistakes
Using a variable name that was not defined.
Adding units or suffixes to the variable name.
4fill in blank
hard

Fill both blanks to create an extruded cut with a blind end condition and a depth of 10 mm.

Solidworks
extrudedCut = featureManager.[1](10, [2])
Drag options to blanks, or click blank then click option'
ACreateExtrudedCut
BCreateCut
CswEndCondBlind
DswEndCondThroughAll
Attempts:
3 left
💡 Hint
Common Mistakes
Using the wrong method name for the cut.
Choosing an end condition that cuts through the entire part.
5fill in blank
hard

Fill all three blanks to create an extruded cut with a depth of 15 mm, reverse direction, and a blind end condition.

Solidworks
extrudedCut = featureManager.[1](15, [2])
extrudedCut.Direction = [3]
Drag options to blanks, or click blank then click option'
ACreateExtrudedCut
BswEndCondBlind
CswDirection_Reverse
DCreateCut
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up method names and constants.
Forgetting to set the direction to reverse.