We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rotate_y::rotate_y(shared_ptr<hittable> p, double angle) : ptr(p) { auto radians = degrees_to_radians(angle); sin_theta = sin(radians); cos_theta = cos(radians); hasbox = ptr->bounding_box(0, 1, bbox); ...
where
hasbox = ptr->bounding_box(0, 1, bbox);
the 0 and 1 need to be determined at runtime
The text was updated successfully, but these errors were encountered:
Oif.
Sorry, something went wrong.
box_compare has similar problems
rotate_y requires removing hasbox and just solving for the bounding-box of the base ptr lazily.
rotate_y
hasbox
box_compare will require passing the time0|1 parameters down
box_compare
time0|1
See comments in #770. The current bounding box implementation has design problems. Deferring to v4.0.0.
See #799
hollasch
trevordblack
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
where
the 0 and 1 need to be determined at runtime
The text was updated successfully, but these errors were encountered: