Rotate shape about Z-axis and angle
rotateZ(shape,angle)
c = rotateZ(shape,angle)
example
rotateZ(shape,angle) rotate shape about the Z-axis and angle.
shape
angle
c = rotateZ(shape,angle) rotate shape about the Z-axis and angle.
collapse all
Create and view a rectangle with a length of 2 m and a width of 4 m.
r2 = antenna.Rectangle('Length',2,'Width',4); show(r2) axis equal
Rotate the rectangle.
rotateZ(r2,45); show(r2)
Shape created using custom elements and shape objects of Antenna Toolbox, specified as an object handle.
Example: rotateZ(rectangle) where rectangle is created using antenna.Rectangle object.
rotateZ(rectangle)
antenna.Rectangle
Angle of rotation, specified as a scalar in degrees
Example: rotateZ(rectangle,45) rotates the rectangle around Z-axis by 45 degrees.
rotateZ(rectangle,45)
Data Types: double
double
add | area | intersect | mesh | plot | rotate | rotateX | rotateY | scale | show | subtract | translate
add
area
intersect
mesh
plot
rotate
rotateX
rotateY
scale
show
subtract
translate
You have a modified version of this example. Do you want to open this example with your edits?