todo: drop affine

This commit is contained in:
Quaternions 2024-08-28 10:14:49 -07:00
parent 002d3d9eac
commit 67ac4cf7ff

View File

@ -1,6 +1,9 @@
use std::ops::Add;
use fixed_wide_traits::wide::WideDot;
//TODO: replace this with 4x3 matrix
// mat4x3.wide_dot(vec3.extend(1))
pub struct Affine<M,T>{
pub matrix:M,
pub offset:T,