karansher / computer-graphics-ray-casting

Computer Graphics Assignment about Ray Casting
1 stars 0 forks source link

Use Eigen library to solve system of linear equations #2

Closed horacelynn closed 1 year ago

horacelynn commented 1 year ago

Are we allowed to include and use other functions in the Eigen library to solve system of linear equations?

cherylchen2 commented 1 year ago

Are you referring to including the Eigen library in the cpp files in src?

horacelynn commented 1 year ago

Yes, in order to use functions like this: https://eigen.tuxfamily.org/dox/group__TutorialLinearAlgebra.html

horacelynn commented 1 year ago

Updates: Those method are too slow for it to be worth it. Just solve it the good old Cramer’s rule.