SharpMath.Vector4D.Set C# (CSharp) Méthode

Set() public méthode

public Set ( Point4D _Source ) : void
_Source Point4D
Résultat void
        public void Set( Point4D _Source )
        {
            x = _Source.x; y = _Source.y; z = _Source.z; w = _Source.w;
        }

Same methods

Vector4D::Set ( Vector2D _Source ) : void
Vector4D::Set ( Vector4D _Source ) : void
Vector4D::Set ( float _f ) : void
Vector4D::Set ( float _x, float _y, float _z, float _w ) : void
Vector4D::Set ( float3 _Source ) : void
Vector4D::Set ( float3 _Source, float _w ) : void