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

InvalidateFullBounds() public method

Invalidates the full bounds of this node, and sets the child bounds invalid flag on each of this node's ancestors.
public InvalidateFullBounds ( ) : void
return void
		public virtual void InvalidateFullBounds() {
			FullBoundsInvalid = true;
		
			PNode n = parent;
			while (n != null && !n.ChildBoundsInvalid) {
				n.ChildBoundsInvalid = true;
				n = n.Parent;
			}

			OnFullBoundsInvalidated();
		}