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

Point3() public method

Creates a new Point3 structure from the given coordinates.
public Point3 ( Vector3 coordinates ) : System
coordinates Vector3 The point coordinates.
return System
        public Point3(Vector3 coordinates)
        {
            this.coordinates = coordinates;
        }

Same methods

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