About 540 results
Open links in new tab
  1. LineStrip2D — Rerun

    LineStrip2D A line strip in 2D space. A line strip is a list of points connected by line segments. It can be used to draw approximations of smooth curves. The points will be connected in order, …

  2. LineStrips2D — Rerun

    """Log a couple 2D line segments using 2D line strips.""" import numpy as np import rerun as rr import rerun. blueprint as rrb rr.init("rerun_example_line_segments2d", spawn =True) rr.log( …

  3. lines.py - Rerun Python APIs

    rerun.log.lines deflog_line_strip(entity_path,positions,*,stroke_width=None,color=None,draw_order=None,ext=None,timeless=False,recording=None) …

  4. Migrating from 0.8 to 0.9 - Rerun

    Notes: log_line_segments used to take an array of shape (2 * num_segments, 2 or 3) (where points were connected in even-odd pairs). Instead this is now handled by a batch of LineStrips …

  5. Plotting - Rerun Python APIs

    Log a double-precision scalar that will be visualized as a timeseries plot. The current simulation time will be used for the time/X-axis, hence scalars cannot be timeless! See here for a larger …

  6. Components - Rerun Python APIs

    class LineStrip3D Bases: LineStrip3DExt Component: A line strip in 3D space. A line strip is a list of points connected by line segments. It can be used to draw approximations of smooth …

  7. LineStrips3D — Rerun

    #!/usr/bin/env python3 """Log a simple set of line segments.""" import numpy as np import rerun as rr rr.init("rerun_example_line_segments3d", spawn =True) rr.log( "segments", …

  8. Spatial Primitives - Rerun Python APIs

    defrerun.log_line_segments(entity_path,positions,*,stroke_width=None,color=None,ext=None,timeless=False) Log many 2D or 3D line segments. The points will be connected in even-odd pairs, like so:

  9. Rerun C++ SDK: rerun::components::LineStrip3D Struct Reference

    Detailed Description Component: A line strip in 3D space. A line strip is a list of points connected by line segments. It can be used to draw approximations of smooth curves. The points will be …

  10. lines.py - Rerun Python APIs

    deflog_line_segments(entity_path,positions,*,stroke_width=None,color=None,ext=None,timeless=False) Log many 2D or 3D line segments. The points will be connected in even-odd pairs, like so: