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

LocalToGlobal() public method

Transform the given point from this node's local coordinate system to the global coordinate system.
public LocalToGlobal ( PointF point ) : PointF
point System.Drawing.PointF The point in local coordinate system to be transformed.
return System.Drawing.PointF
		public virtual PointF LocalToGlobal(PointF point) {
			PNode n = this;
			while (n != null) {
				point = n.LocalToParent(point);
				n = n.Parent;
			}
			return point;
		}

Same methods

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