Main Content

rotateZ

Rotate RF PCB shape about z-axis

Since R2021b

Description

example

c = rotateZ(shape,angle) rotates a shape by the specified angle about the z-axis.

Examples

collapse all

Create and display a spiral trace.

trace = traceSpiral;
show(trace)

Rotate the spiral trace by 45 degrees about the z-axis.

traceRotZ = rotateZ(trace,45);

Display the rotated shape.

show(traceRotZ)

Input Arguments

collapse all

RF PCB shape created using custom elements and shape objects of RF PCB Toolbox™, specified as an object.

Example: shape = bendCurved; specifies the shape as a bendCurved object.

Angle of rotation, specified as a scalar in degrees.

Example: 45 rotates the shape around the z-axis by 45 degrees.

Data Types: double

Version History

Introduced in R2021b