rotateX

Rotate shape about X-axis and angle

Description

example

rotateX(shape,angle) rotate shape about an axes object and angle.

c =c rotateX(shape,angle) rotate shape about an axes object and angle.

Examples

collapse all

Create a rectangle shape.

r = antenna.Rectangle;
show(r)
axis equal

Rotate the rectangle at 45 degrees about the x-axis.

r1 = rotateX(r,45)
r1 = 
  Rectangle with properties:

         Name: 'myrectangle'
       Center: [0 0]
       Length: 1
        Width: 2
    NumPoints: 2

show(r1)
axis equal

Input Arguments

collapse all

Shape created using custom elements and shape objects of Antenna Toolbox, specified as an object handle.

Example: area(rectangle) where rectangle is created using antenna.Rectangle object.

Angle of rotation, specified as a scalar in degrees

Example: rotateX(rectangle,45) rotates the rectangle around X-axis by 45 degrees.

Data Types: double

Introduced in R2017a