Complete the code to create a linear pattern with equal spacing.
LinearPattern(entities=[1], direction=Vector(1,0,0), instances=5, spacing=10)
The features parameter specifies which features to pattern linearly.
Complete the code to create a circular pattern around the Z-axis.
CircularPattern(entities=[1], axis=Vector(0,0,1), instances=6, angle=360)
The features parameter defines which features to pattern circularly.
Fix the error in the linear pattern code by selecting the correct direction vector.
LinearPattern(entities=features, direction=[1], instances=4, spacing=15)
The direction vector Vector(1,0,0) points along the X-axis for linear patterning.
Fill both blanks to create a circular pattern with 8 instances around the Y-axis.
CircularPattern(entities=[1], axis=[2], instances=8, angle=360)
Use features to specify what to pattern and Vector(0,1,0) for the Y-axis.
Fill all three blanks to create a linear pattern with 3 instances spaced 20 units apart along the Z-axis.
LinearPattern(entities=[1], direction=[2], instances=[3], spacing=20)
Use features to pattern, Vector(0,0,1) for Z-axis direction, and 3 for number of instances.
