0
0
Solidworksbi_tool~10 mins

Circle and arc tools 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 create a circle with a specified radius.

Solidworks
Circle = CreateCircle(center, [1])
Drag options to blanks, or click blank then click option'
Aradius
Bdiameter
Ccircumference
Darea
Attempts:
3 left
💡 Hint
Common Mistakes
Using diameter instead of radius
Confusing circumference with radius
2fill in blank
medium

Complete the code to draw an arc with a given start angle.

Solidworks
Arc = CreateArc(center, radius, [1], endAngle)
Drag options to blanks, or click blank then click option'
Awidth
Blength
CstartAngle
Ddiameter
Attempts:
3 left
💡 Hint
Common Mistakes
Using length instead of start angle
Confusing diameter with start angle
3fill in blank
hard

Fix the error in the code to correctly create a circle.

Solidworks
Circle = CreateCircle([1], radius)
Drag options to blanks, or click blank then click option'
AradiusPoint
BcenterPoint
CcircumferencePoint
DdiameterPoint
Attempts:
3 left
💡 Hint
Common Mistakes
Using a point on the circumference instead of the center
Confusing diameterPoint with centerPoint
4fill in blank
hard

Fill both blanks to create an arc with correct start and end angles.

Solidworks
Arc = CreateArc(center, radius, [1], [2])
Drag options to blanks, or click blank then click option'
AstartAngle
Blength
CendAngle
Dwidth
Attempts:
3 left
💡 Hint
Common Mistakes
Using length or width instead of angles
Swapping start and end angles
5fill in blank
hard

Fill all three blanks to create a circle and calculate its circumference.

Solidworks
circle = CreateCircle([1], [2])
circumference = 2 * [3] * PI
Drag options to blanks, or click blank then click option'
AcenterPoint
Bradius
Ddiameter
Attempts:
3 left
💡 Hint
Common Mistakes
Using diameter instead of radius in circumference
Confusing centerPoint with radius