Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to add a fillet to the sketch corner.
Solidworks
sketch.SketchFilletRadius = [1] Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using a radius too large that overlaps other sketch elements.
Confusing fillet radius with chamfer distance.
✗ Incorrect
The fillet radius is set to 5.0 units to create a smooth rounded corner.
2fill in blank
mediumComplete 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'
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.
✗ Incorrect
The chamfer angle is set to 45 degrees for a standard bevel.
3fill in blank
hardFix the error in the fillet application code.
Solidworks
sketch.ApplyFillet([1]) Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Including parameter names inside the method call.
Passing the radius as a string instead of a number.
✗ Incorrect
The method expects a numeric value for radius without parameter name or quotes.
4fill in blank
hardFill 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'
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping distance and angle values.
Using an angle that is not typical for chamfers.
✗ Incorrect
The chamfer is created with a distance of 10.0 units and an angle of 45 degrees.
5fill in blank
hardFill 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'
Attempts:
3 left
💡 Hint
Common Mistakes
Using chamfer method instead of fillet.
Forgetting to apply the fillet after adding it.
✗ Incorrect
The fillet is added with radius 5.0 and then applied to the selected edges.