mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
14 lines
207 B
PHP
14 lines
207 B
PHP
<?php
|
|
|
|
/**
|
|
* Predict_Vector - General three-dimensional vector structure.
|
|
* Ported from sgp4sdp4.h.
|
|
*/
|
|
class Predict_Vector
|
|
{
|
|
public $x = 0;
|
|
public $y = 0;
|
|
public $z = 0;
|
|
public $w = 0;
|
|
}
|