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
When I create triangle indices with a dtype='uint16', I get no output and this message in the browser console:
dtype='uint16'
WebGL warning: drawElementsInstanced: Indexed vertex fetch requires 71173184 vertices, but attribs only supply 1088.
I checked that the triangle indices have no value greater than 65535. The issue also appears with dtype=uint8, but it works fine with dtype=uint32.
dtype=uint8
dtype=uint32
The text was updated successfully, but these errors were encountered:
ThreeJS supports those types https://threejs.org/docs/index.html#api/en/core/bufferAttributeTypes/BufferAttributeTypes
So my first guess is that the deserialization (JS side) does not work properly in ipygany.
Sorry, something went wrong.
When I set the vertices' dtype to int16 I get the same error. Maybe it is due to deserialization indeed.
int16
No branches or pull requests
When I create triangle indices with a
dtype='uint16'
, I get no output and this message in the browser console:I checked that the triangle indices have no value greater than 65535.
The issue also appears with
dtype=uint8
, but it works fine withdtype=uint32
.The text was updated successfully, but these errors were encountered: