When using Ruckig's Python bindings, direct element-wise assignment to array attributes is not supported, requiring verbose workarounds.
This example has no effect:
input.target_position[0] = 0.5
Users must reassign the entire array:
input.target_position = [0.5, 0, 0]
It seems to be an issue related to nanobind.
When using Ruckig's Python bindings, direct element-wise assignment to array attributes is not supported, requiring verbose workarounds.
This example has no effect:
Users must reassign the entire array:
It seems to be an issue related to nanobind.