Emil Ernerfeldt
Emil Ernerfeldt
One symptom of this is that every `EncodedImage` has an option to add it to a 3D space view:
This is very similar to: * https://github.com/emilk/ehttp/issues/4
Maybe something for @kpreid
We have a similar need in Python
I tried approaching this similar to the current code with: ```C #define RERUN_SDK_HEADER_VERSION "@RERUN_VERSION@" #define RERUN_SDK_HEADER_VERSION_MAJOR @RERUN_VERSION_MAJOR@ #define RERUN_SDK_HEADER_VERSION_MINOR @RERUN_VERSION_MINOR@ #define RERUN_SDK_HEADER_VERSION_PATCH @RERUN_VERSION_PATCH@ ``` With a this in `CMakeLists.txt`: ```cmake...
We can follow the lead of * https://github.com/rerun-io/rerun/pull/7104
You are right that a separate `trait` makes most sense. I tried this [in a real world example](https://github.com/rerun-io/rerun/pull/5754), and it works great: ```rs pub trait UnsignedAbs { /// An unsigned...
From the changelog it looks like we just need to set the `allow_empty_texture` flag: https://github.com/gltf-rs/gltf/blob/main/CHANGELOG.md EDIT: nope, the validation still runs and fail the load.
Adding to this: you can use `rr.log_transform3d` to log extrinsics and `rr.log_pinhole` to log intrinsics. See for instance the objectron example: https://github.com/rerun-io/rerun/blob/0.7.0/examples/python/objectron/main.py#L126-L156 Run it and double-click the camera frustum to...