Box2D.Common.Vec3.Vec3 C# (CSharp) Method

Vec3() public method

public Vec3 ( float argX, float argY, float argZ ) : System
argX float
argY float
argZ float
return System
        public Vec3(float argX, float argY, float argZ)
        {
            X = argX;
            Y = argY;
            Z = argZ;
        }

Same methods

Vec3::Vec3 ( ) : System
Vec3::Vec3 ( Vec3 argCopy ) : System