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

LocalToParent() public method

Transform the given point from this node's local coordinate system to its parent's local coordinate system.
public LocalToParent ( PointF point ) : PointF
point System.Drawing.PointF The point in local coordinate system to be transformed.
return System.Drawing.PointF
		public virtual PointF LocalToParent(PointF point) {
			return matrix.Transform(point);
		}

Same methods

PNode::LocalToParent ( RectangleF rectangle ) : RectangleF
PNode::LocalToParent ( SizeF size ) : SizeF