Makman2 / CE3D

A terminal 3D engine
GNU General Public License v3.0
4 stars 0 forks source link

Simplify boost built-in matrix and vector types with CE3D matrix and vector types. #132

Closed Makman2 closed 10 years ago

Makman2 commented 10 years ago

Replace the following types with:

boost::numeric::ublas::vector -> CE3D::Vector boost::numeric::ublas::unit_vector -> CE3D::UnitVector boost::numeric::ublas::zero_vector -> CE3D::ZeroVector

boost::numeric::ublas::matrix -> CE3D::Matrix boost::numeric::ublas::identity_matrix -> CE3D::IdentityMatrix boost::numeric::ublas::zero_matrix -> CE3D::ZeroMatrix

Makman2 commented 10 years ago

Issue solved in commit f27081ab8af3238ff72180d541c30408fee0ac5e from issue #123.