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

ParentToLocal() public method

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

Same methods

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