0
0
Solidworksbi_tool~10 mins

Units and document properties setup 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 set the document units to millimeters.

Solidworks
doc.Units = [1]
Drag options to blanks, or click blank then click option'
AswFeet
BswInches
CswCentimeters
DswMM
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing inches or feet instead of millimeters.
2fill in blank
medium

Complete the code to set the angle units to degrees.

Solidworks
doc.AngleUnits = [1]
Drag options to blanks, or click blank then click option'
AswRadians
BswGradians
CswDegrees
DswTurns
Attempts:
3 left
💡 Hint
Common Mistakes
Selecting radians or gradians instead of degrees.
3fill in blank
hard

Fix the error in setting the document precision to 3 decimal places.

Solidworks
doc.Precision = [1]
Drag options to blanks, or click blank then click option'
A2
B3
C4
D5
Attempts:
3 left
💡 Hint
Common Mistakes
Using 2 or 4 instead of 3 for precision.
4fill in blank
hard

Fill both blanks to set the length units to inches and the document precision to 4 decimal places.

Solidworks
doc.Units = [1]
doc.Precision = [2]
Drag options to blanks, or click blank then click option'
AswInches
B3
C4
DswMM
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up units or precision values.
5fill in blank
hard

Fill all three blanks to set the length units to centimeters, angle units to radians, and precision to 2 decimal places.

Solidworks
doc.Units = [1]
doc.AngleUnits = [2]
doc.Precision = [3]
Drag options to blanks, or click blank then click option'
AswCentimeters
BswRadians
C2
DswDegrees
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing degrees with radians or wrong precision number.