LayoutFarm.Svg.SvgHitChain.Clear C# (CSharp) Method

Clear() public method

public Clear ( ) : void
return void
        public void Clear()
        {
            this.rootGlobalX = this.rootGlobalY = 0;
            this.svgList.Clear();
        }
        public void SetRootGlobalPosition(float x, float y)

Usage Example

 void ReleaseHitChain(SvgHitChain hitChain)
 {
     hitChain.Clear();
     this.hitChainPools.Push(hitChain);
 }
All Usage Examples Of LayoutFarm.Svg.SvgHitChain::Clear