We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 version: 2.7.1
test code:
>>> import glm >>> data = [1000000.1234, 20000000.1234, 3000000.1234] >>> a = glm.dvec3(data) >>> b = glm.dvec3(*data) >>> a-b dvec3( 0.0016, -0.1234, -0.1234 ) >>> print(a.x, a.y, a.z) 1000000.125 20000000.0 3000000.0 >>> print(b.x, b.y, b.z) 1000000.1234 20000000.1234 3000000.1234
The text was updated successfully, but these errors were encountered:
No branches or pull requests
glm version: 2.7.1
test code:
>>> import glm
>>> data = [1000000.1234, 20000000.1234, 3000000.1234]
>>> a = glm.dvec3(data)
>>> b = glm.dvec3(*data)
>>> a-b
dvec3( 0.0016, -0.1234, -0.1234 )
>>> print(a.x, a.y, a.z)
1000000.125 20000000.0 3000000.0
>>> print(b.x, b.y, b.z)
1000000.1234 20000000.1234 3000000.1234
The text was updated successfully, but these errors were encountered: