18 lines
436 B
C#
18 lines
436 B
C#
namespace Passer.LinearAlgebra
|
|
{
|
|
public class Spherical
|
|
{
|
|
public float distance;
|
|
public float horizontal;
|
|
public float vertical;
|
|
|
|
public static Spherical zero = new(0, 0, 0);
|
|
|
|
public Spherical(float distance, float horizontal, float vertical)
|
|
{
|
|
this.distance = distance;
|
|
this.horizontal = horizontal;
|
|
this.vertical = vertical;
|
|
}
|
|
}
|
|
} |