Box2D.Common.Mat22.Set C# (CSharp) Method

Set() public method

Set as a copy of another matrix.
public Set ( Mat22 m ) : Mat22
m Mat22 Matrix to copy
return Mat22
        public Mat22 Set(Mat22 m)
        {
            Ex.X = m.Ex.X;
            Ex.Y = m.Ex.Y;
            Ey.X = m.Ey.X;
            Ey.Y = m.Ey.Y;
            return this;
        }

Same methods

Mat22::Set ( float exx, float col2x, float exy, float col2y ) : Mat22
Mat22::Set ( Vec2 c1, Vec2 c2 ) : void
Mat22::Set ( float angle ) : void