0
0
Solidworksbi_tool~10 mins

Fillet feature on edges 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 select an edge for fillet.

Solidworks
model.SelectEdgeByID([1])
Drag options to blanks, or click blank then click option'
Aedge1
Bvertex2
Cface3
Dedge5
Attempts:
3 left
💡 Hint
Common Mistakes
Selecting a face or vertex instead of an edge.
2fill in blank
medium

Complete the code to set the fillet radius.

Solidworks
filletFeature.SetRadius([1])
Drag options to blanks, or click blank then click option'
A5.0
B0
C10.0
D-3
Attempts:
3 left
💡 Hint
Common Mistakes
Using zero or negative values for radius.
3fill in blank
hard

Fix the error in the fillet creation code by completing the blank.

Solidworks
if not filletFeature.[1]():
    print('Failed to create fillet')
Drag options to blanks, or click blank then click option'
ACreate
BBuild
CApply
DGenerate
Attempts:
3 left
💡 Hint
Common Mistakes
Using non-existent methods like Apply or Generate.
4fill in blank
hard

Fill both blanks to create a fillet on multiple edges with a radius.

Solidworks
filletFeature = model.AddFillet([1], [2])
Drag options to blanks, or click blank then click option'
A[edge1, edge2, edge3]
B10.0
C5.0
D[face1, face2]
Attempts:
3 left
💡 Hint
Common Mistakes
Passing faces instead of edges.
Using incorrect radius values.
5fill in blank
hard

Fill all three blanks to check if the fillet was created and then update the model.

Solidworks
if filletFeature.[1]():
    model.[2]()
    print('Fillet created with radius', [3])
Drag options to blanks, or click blank then click option'
ABuild
BRebuild
CfilletFeature.GetRadius()
DCreate
Attempts:
3 left
💡 Hint
Common Mistakes
Using incorrect method names or missing model update.