UMD.HCIL.Piccolo.PNode.RotateBy C# (CSharp) Method

RotateBy() public method

Rotates this node by theta (in degrees) about the 0,0 point.
This will affect this node and all its descendents.
public RotateBy ( float theta ) : void
theta float The rotation in degrees.
return void
		public virtual void RotateBy(float theta) {
			RotateBy(theta, 0, 0);
		}

Same methods

PNode::RotateBy ( float theta, PointF point ) : void
PNode::RotateBy ( float theta, float x, float y ) : void