Agent.Vector3.Vector3 C# (CSharp) Метод

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

public Vector3 ( float x, float y, float z ) : System
x float
y float
z float
Результат System
    public Vector3(float x, float y, float z)
    {
      this.x = x;
      this.y = y;
      this.z = z;
      this.magnitude = (float)Math.Sqrt(x * x + y * y + z * z);
    }