15 lines
410 B
C#
15 lines
410 B
C#
namespace Passer {
|
|
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;
|
|
}
|
|
}
|
|
} |