11 lines
312 B
Python
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)
|