Files
2026-07-13 13:05:14 +08:00

11 lines
312 B
Python

from __future__ import annotations
import rerun as rr
def test_log_point2d_basic() -> None:
"""Basic test: logging a point shouldn't raise an exception."""
points = rr.Points2D([(0, 0), (2, 2), (2, 2.5), (2.5, 2), (3, 4)], radii=0.5)
rr.init("rerun_example_test_log")
rr.log("points", points)