Box2DX.Common.Vec3.Set C# (CSharp) Method

Set() public method

Set this vector to some specified coordinates.
public Set ( float x, float y, float z ) : void
x float
y float
z float
return void
        public void Set(float x, float y, float z)
        {
            X = x; Y = y; Z = z;
        }