0
0
Solidworksbi_tool~10 mins

Mouse navigation (rotate, pan, zoom) 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 rotate the model using the mouse.

Solidworks
model.[1](angleX, angleY)
Drag options to blanks, or click blank then click option'
Apan
Brotate
Czoom
Dselect
Attempts:
3 left
💡 Hint
Common Mistakes
Using pan or zoom instead of rotate.
2fill in blank
medium

Complete the code to pan the model using the mouse.

Solidworks
model.[1](deltaX, deltaY)
Drag options to blanks, or click blank then click option'
Apan
Brotate
Czoom
Dselect
Attempts:
3 left
💡 Hint
Common Mistakes
Using rotate or zoom instead of pan.
3fill in blank
hard

Fix the error in the code to zoom the model correctly.

Solidworks
model.[1](zoomFactor)
Drag options to blanks, or click blank then click option'
Amove
Bpan
Crotate
Dzoom
Attempts:
3 left
💡 Hint
Common Mistakes
Using pan or rotate instead of zoom.
4fill in blank
hard

Fill both blanks to rotate and then pan the model.

Solidworks
model.[1](angleX, angleY)
model.[2](deltaX, deltaY)
Drag options to blanks, or click blank then click option'
Arotate
Bzoom
Cpan
Dselect
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping rotate and pan functions.
5fill in blank
hard

Fill all three blanks to rotate, pan, and zoom the model in sequence.

Solidworks
model.[1](angleX, angleY)
model.[2](deltaX, deltaY)
model.[3](zoomFactor)
Drag options to blanks, or click blank then click option'
Apan
Bzoom
Crotate
Dselect
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up the order of functions.