Open davidbrochart opened 4 years ago
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.
When I set the vertices' dtype to int16
I get the same error. Maybe it is due to deserialization indeed.
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
.