0
0
Solidworksbi_tool~10 mins

Why fully defined sketches matter in Solidworks - Test Your Understanding

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to fully define a sketch line in SolidWorks.

Solidworks
line = createLine([1])
Drag options to blanks, or click blank then click option'
AstartPoint
BstartPoint, endPoint
CendPoint
Dlength
Attempts:
3 left
💡 Hint
Common Mistakes
Using only one point leaves the line underdefined.
2fill in blank
medium

Complete the code to add a horizontal dimension to a sketch.

Solidworks
addDimension([1], 'horizontal')
Drag options to blanks, or click blank then click option'
Aline
Bpoint
Ccircle
Darc
Attempts:
3 left
💡 Hint
Common Mistakes
Trying to dimension a point or arc horizontally.
3fill in blank
hard

Fix the error in the code to fully define a rectangle sketch.

Solidworks
rectangle = createRectangle([1], [2])
Drag options to blanks, or click blank then click option'
Acorner2
Bcorner1
Ccorner1, corner2
Dcenter
Attempts:
3 left
💡 Hint
Common Mistakes
Using the same point for both corners.
4fill in blank
hard

Fill both blanks to fully define a circle sketch with center and radius.

Solidworks
circle = createCircle([1], [2])
Drag options to blanks, or click blank then click option'
AcenterPoint
Bradius
Cdiameter
Dcircumference
Attempts:
3 left
💡 Hint
Common Mistakes
Using diameter or circumference instead of radius.
5fill in blank
hard

Fill all three blanks to fully define a triangle sketch with points and constraints.

Solidworks
triangle = createTriangle([1], [2], [3])
Drag options to blanks, or click blank then click option'
ApointA
BpointB
CpointC
DangleConstraint
Attempts:
3 left
💡 Hint
Common Mistakes
Using constraints instead of points to define the triangle.