0
0
Solidworksbi_tool~10 mins

Sketch trim and extend 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 the Trim tool in SolidWorks sketch mode.

Solidworks
sketchManager.[1]()
Drag options to blanks, or click blank then click option'
ATrim
BMirror
COffset
DExtend
Attempts:
3 left
💡 Hint
Common Mistakes
Using Extend instead of Trim
Using Offset or Mirror which are different tools
2fill in blank
medium

Complete 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'
AExtend
BTrim
CCut
DJoin
Attempts:
3 left
💡 Hint
Common Mistakes
Using Trim instead of Extend
Using Cut or Join which are unrelated
3fill in blank
hard

Fix 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'
ACut
BTrim
CExtend
DSplit
Attempts:
3 left
💡 Hint
Common Mistakes
Using Extend which lengthens instead of trims
Using Cut or Split which are not valid methods here
4fill in blank
hard

Fill 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'
ATrim
BExtend
CCut
DJoin
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping Trim and Extend methods
Using Cut or Join which are incorrect here
5fill in blank
hard

Fill 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'
AExtend
BTrim
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up the order of Trim and Extend
Using Cut or Join which are invalid here