Accord.Math.Vector3.Vector3 C# (CSharp) Method

Vector3() public method

Initializes a new instance of the Vector3 structure.
public Vector3 ( float value ) : System
value float Value, which is set to all 3 coordinates of the vector.
return System
        public Vector3( float value )
        {
            X = Y = Z = value;
        }

Same methods

Vector3::Vector3 ( float x, float y, float z ) : System