RekdEngine.UtilMath.Vector4f.Set C# (CSharp) Method

Set() public method

public Set ( Vector4f other ) : Vector4f
other Vector4f
return Vector4f
        public Vector4f Set(Vector4f other)
        {
            X = other.X;
            Y = other.Y;
            Z = other.Z;
            W = other.W;
            return this;
        }

Same methods

Vector4f::Set ( float X, float Y, float Z, float W ) : Vector4f