5 lines
131 B
Rust
5 lines
131 B
Rust
|
pub struct Body {
|
||
|
position: glam::I64Vec3,//2^32 = 1 u
|
||
|
velocity: glam::I64Vec3,//2^32 = 1 u/s
|
||
|
time: i64,//nanoseconds x xxxxD!
|
||
|
}
|