dimforge / nalgebra

Linear algebra library for Rust.
https://nalgebra.org
Apache License 2.0
3.91k stars 466 forks source link

Implement operator overloading for Perspective3 and Orthographic3 #392

Open sebcrozet opened 5 years ago

sebcrozet commented 5 years ago

Those are the only transformation structs for which multiplications, divisions and SubsetOf are not implemented.

sebcrozet commented 5 years ago

Since #398, the user can convert a ref to a Perspective3 and Orthographic3 into a ref to a Projective3. This conversion allows the user to benefit from all the Projective3 operator overloads.

I am unsure we still want to add explicitly operator overloading to Perspective3 and Orthographic3 since, after, they are just part of the Projective3 family. I'm lowing the priority of this to low.