CesiumGS / cesium-native

Apache License 2.0
402 stars 205 forks source link

Non-const `AccessorView` #839

Closed lilleyse closed 4 months ago

lilleyse commented 4 months ago

It would be convenient if AccessorView had a non-const [] operator so you could write values to the accessor.

kring commented 4 months ago

It's a separate class, AccessorWriter: https://github.com/CesiumGS/cesium-native/blob/main/CesiumGltf/include/CesiumGltf/AccessorWriter.h

lilleyse commented 4 months ago

Ah, thanks. I opened a PR to make it easier to construct an AccessorWriter if you already have an AccessorView: https://github.com/CesiumGS/cesium-native/pull/840