[#2] Added Licensing.

I decided on the Apache-2.0 license and have stamped all the files to
now point to that license.
This commit is contained in:
2025-07-29 12:38:11 -04:00
parent 59b1e2eea1
commit 6cdd077577
30 changed files with 349 additions and 7 deletions

View File

@ -1,3 +1,6 @@
// SPDX-License-Identifier: Apache-2.0
// Sealed with Magistamp.
use std::{f32, f64};
use sigils::Constants;

View File

@ -1,2 +1,5 @@
// SPDX-License-Identifier: Apache-2.0
// Sealed with Magistamp.
mod constants;
mod vector;

View File

@ -1,3 +1,6 @@
// SPDX-License-Identifier: Apache-2.0
// Sealed with Magistamp.
use std::ops::{Add, Sub, Mul, Div, Rem};
use std::ops::{AddAssign, SubAssign, MulAssign, DivAssign, RemAssign};
use sigils::vector::*;