FC3Editor.Nomad.Vec3.Vec3 C# (CSharp) Method

Vec3() public method

public Vec3 ( float x, float y, float z ) : System
x float
y float
z float
return System
        public Vec3(float x, float y, float z)
        {
            this.X = x;
            this.Y = y;
            this.Z = z;
        }