8 lines
106 B
Rust
8 lines
106 B
Rust
|
use crate::vec;
|
||
|
|
||
|
#[derive(Clone, Debug, Copy)]
|
||
|
pub struct Quaternion {
|
||
|
_coordinates: vec::Vector4d
|
||
|
|
||
|
}
|