1
2
3
4
5
6
7
8
9
10
11
12
13
//! DO NOT EDIT! This file was autogenerated by `docs/snippets/build.rs`. The original is in `/home/runner/work/rerun/rerun/docs/snippets/all/archetypes/line_strips2d_segments_simple.rs`.
//! Log a couple 2D line segments using 2D line strips.

pub fn main(_args: &[String]) -> Result<(), Box<dyn std::error::Error>> {
    let rec = rerun::RecordingStreamBuilder::new("rerun_example_line_segments2d").spawn()?;

    let points = [[0., 0.], [2., 1.], [4., -1.], [6., 0.]];
    rec.log("segments", &rerun::LineStrips2D::new(points.chunks(2)))?;

    // TODO(#5521): log VisualBounds2D

    Ok(())
}