Skip to content
New issue

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

Transformation print method does not print Point #7

Closed
jeromecube44 opened this issue Jun 20, 2020 · 1 comment
Closed

Transformation print method does not print Point #7

jeromecube44 opened this issue Jun 20, 2020 · 1 comment

Comments

@jeromecube44
Copy link

Line 256, the erroneous extra j parameter in p(i,j) causes Point p to print as {0, 0, 0} when printing a Transformation. Removing it resolves the issue:

Replace line 256
strm << ((i == 3)? 1 : obj.p(i,j));
with
strm << ((i == 3)? 1 : obj.p(i));

@tomstewart89
Copy link
Owner

Hey @jeromecube44, Thanks for the info and sorry about the incredibly slow reply! I've been giving this library long overdue attention recently and I'm pretty sure this issue has been fixed in v2.0. If you have any other trouble with this or anything else in v2.0 feel free to open a fresh issue!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants