Derive Debug for Bivector

This commit is contained in:
Hanno Braun 2025-01-20 19:23:30 +01:00
parent c1b0b5b3be
commit a27be72de8

View File

@ -1,6 +1,6 @@
use super::Vector;
#[derive(Clone, Copy)]
#[derive(Clone, Copy, Debug)]
pub struct Bivector<const D: usize> {
pub a: Vector<D>,
pub b: Vector<D>,