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

ScaleBy() public method

Scale this node's matrix by the given amount.
This will affect this node and all of its descendents.
public ScaleBy ( float scale ) : void
scale float The amount to scale by.
return void
		public virtual void ScaleBy(float scale) {
			ScaleBy(scale, 0, 0);
		}

Same methods

PNode::ScaleBy ( float scale, PointF point ) : void
PNode::ScaleBy ( float scale, float x, float y ) : void