Avalon.Structure.Point.Point C# (CSharp) Метод

Point() публичный Метод

Initialized a position object out of a array of floats.
The first array element serves as the x component. The second array member serves a the y component. The third element serves as the z component.
public Point ( float pos ) : System
pos float Array of 3 floats.
Результат System
        public Point(float[] pos)
        {
            this.x = pos[0];
            this.y = pos[1];
            this.z = pos[2];
        }

Same methods

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