Derive Copy for Bivector

This commit is contained in:
Hanno Braun 2024-12-17 20:48:37 +01:00
parent f675fd3db6
commit d3ead3ea99

View File

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