0
0
Solidworksbi_tool~10 mins

Sketch fillet and chamfer 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 add a fillet to the sketch corner.

Solidworks
sketch.SketchFilletRadius = [1]
Drag options to blanks, or click blank then click option'
A10.0
B15.0
C5.0
D20.0
Attempts:
3 left
💡 Hint
Common Mistakes
Using a radius too large that overlaps other sketch elements.
Confusing fillet radius with chamfer distance.
2fill in blank
medium

Complete the code to apply a chamfer with a 45-degree angle.

Solidworks
sketch.AddChamfer([1], 5.0)
Drag options to blanks, or click blank then click option'
A30
B60
C90
D45
Attempts:
3 left
💡 Hint
Common Mistakes
Using an angle that is too steep or too shallow for the design.
Mixing up chamfer angle with chamfer distance.
3fill in blank
hard

Fix the error in the fillet application code.

Solidworks
sketch.ApplyFillet([1])
Drag options to blanks, or click blank then click option'
A10
Bradius=10
Cradius:10
Dradius= '10'
Attempts:
3 left
💡 Hint
Common Mistakes
Including parameter names inside the method call.
Passing the radius as a string instead of a number.
4fill in blank
hard

Fill both blanks to create a chamfer with distance and angle.

Solidworks
sketch.CreateChamfer([1], [2])
Drag options to blanks, or click blank then click option'
A5.0
B45
C10.0
D30
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping distance and angle values.
Using an angle that is not typical for chamfers.
5fill in blank
hard

Fill all three blanks to define a fillet with radius, select edges, and apply it.

Solidworks
fillet = sketch.[1]([2])
fillet.[3]()
Drag options to blanks, or click blank then click option'
AAddFillet
B5.0
CApply
DCreateChamfer
Attempts:
3 left
💡 Hint
Common Mistakes
Using chamfer method instead of fillet.
Forgetting to apply the fillet after adding it.