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

glm::polar documentation question #985

Closed
dorodnic opened this issue Dec 27, 2019 · 0 comments
Closed

glm::polar documentation question #985

dorodnic opened this issue Dec 27, 2019 · 0 comments

Comments

@dorodnic
Copy link

Hi,

I'm a bit confused, the documentation on glm::polar states:

Convert Euclidean to Polar coordinates, x is the xz distance, y, the latitude and z the longitude.

The implementation at polar_coordinates.inl:15-18 is:

return vec<3, T, Q>(
    asin(tmp.y),	                        // latitude
    atan(tmp.x, tmp.z),              // longitude
    xz_dist);                               // xz distance

(so, x being latitude, y - longitude and z the xz distance)

Looks like a documentation bug, or perhaps I'm missing something.

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

No branches or pull requests

2 participants