Box2DX.Common.Mat33.SetZero C# (CSharp) Method

SetZero() public method

Set this matrix to all zeros.
public SetZero ( ) : void
return void
        public void SetZero()
        {
            Col1 = Vector3.zero;
            Col2 = Vector3.zero;
            Col3 = Vector3.zero;
        }