summaryrefslogtreecommitdiff
path: root/physics/src/algebra/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'physics/src/algebra/mod.rs')
-rw-r--r--physics/src/algebra/mod.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/physics/src/algebra/mod.rs b/physics/src/algebra/mod.rs
new file mode 100644
index 0000000..47efba8
--- /dev/null
+++ b/physics/src/algebra/mod.rs
@@ -0,0 +1,9 @@
+use nalgebra::{Point as PointBase, SVector};
+
+pub const N: usize = 2;
+pub type Scalar = f64;
+
+pub type Vector = SVector<Scalar, N>;
+pub type Point = PointBase<Scalar, N>;
+
+pub mod subspace;