Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to select the Trim tool in SolidWorks sketch mode.
Solidworks
sketchManager.[1]() Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using Extend instead of Trim
Using Offset or Mirror which are different tools
✗ Incorrect
The Trim method activates the trim tool in the sketch manager.
2fill in blank
mediumComplete the code to extend a sketch line to another entity.
Solidworks
sketchManager.[1](line1, line2) Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using Trim instead of Extend
Using Cut or Join which are unrelated
✗ Incorrect
The Extend method lengthens a sketch entity to meet another.
3fill in blank
hardFix the error in the code to trim a sketch entity correctly.
Solidworks
sketchManager.[1](entityToTrim, trimPoint) Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using Extend which lengthens instead of trims
Using Cut or Split which are not valid methods here
✗ Incorrect
The Trim method trims the entity at the specified point.
4fill in blank
hardFill both blanks to trim and then extend two sketch lines.
Solidworks
sketchManager.[1](lineA, pointA) sketchManager.[2](lineB, lineC)
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping Trim and Extend methods
Using Cut or Join which are incorrect here
✗ Incorrect
First, Trim cuts lineA at pointA. Then, Extend lengthens lineB to meet lineC.
5fill in blank
hardFill all three blanks to trim, extend, and then trim again on sketch entities.
Solidworks
sketchManager.[1](entity1, point1) sketchManager.[2](entity2, entity3) sketchManager.[3](entity4, point2)
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up the order of Trim and Extend
Using Cut or Join which are invalid here
✗ Incorrect
First, Trim entity1 at point1. Then, Extend entity2 to entity3. Finally, Trim entity4 at point2.