I decided on the Apache-2.0 license and have stamped all the files to now point to that license.
14 lines
232 B
Rust
14 lines
232 B
Rust
// SPDX-License-Identifier: Apache-2.0
|
|
// Sealed with Magistamp.
|
|
|
|
use sigils::quaternion::{Quaternion};
|
|
|
|
|
|
pub fn main()
|
|
{
|
|
let quat: Quaternion<f64>;
|
|
|
|
quat = Quaternion::<f64>::default();
|
|
println!("Quaternion: {}", quat);
|
|
}
|