chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:05:14 +08:00
commit 2a547be7fe
7904 changed files with 1000926 additions and 0 deletions
@@ -0,0 +1,12 @@
import math
import rerun as rr
with rr.RecordingStream(
"rerun_example_getting_started", recording_id="run-1", send_properties=False
) as rec:
rec.save("run-1.rrd")
for t in range(10):
rec.set_time("step", sequence=t)
rec.log("/arm/shoulder", rr.Scalars(math.sin(t * 0.5)))
rec.log("/arm/elbow", rr.Scalars(math.cos(t * 0.5)))