Device.Rotate

Rotate(double)

Rotate the current transformation matrix. Calls writeTransform(Transform). Rotating with a positive angle theta rotates points on the positive x axis toward the positive y axis.

public virtual void Rotate(double theta)
ParameterTypeDescription
thetaDoubleAngle in radians over which to rotate.

See Also


Rotate(double, double, double)

Rotate the current transformation matrix around a point.

public virtual void Rotate(double theta, double x, double y)
ParameterTypeDescription
thetaDoubleAn angle of rotation in radians.
xDoubleX coordinate of point.
yDoubleY coordinate of point.

See Also