Main Content

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

Figure contains an axes object. The axes object with xlabel x (m), ylabel y (m) contains 2 objects of type patch. These objects represent PEC, myrectangle.

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

Figure contains an axes object. The axes object with xlabel x (mm), ylabel y (mm) contains 2 objects of type patch. These objects represent PEC, myrectangle.

Input Arguments

collapse all

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

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

Version History

Introduced in R2017a