//! 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_strips3d_segments_simple.rs`.
//! Log a simple set of line segments.
pub fn main(_args: &[String]) -> Result<(), Box<dyn std::error::Error>> {
let rec = rerun::RecordingStreamBuilder::new("rerun_example_line_segments3d").spawn()?;
let points = [
[0., 0., 0.],
[0., 0., 1.],
[1., 0., 0.],
[1., 0., 1.],
[1., 1., 0.],
[1., 1., 1.],
[0., 1., 0.],
[0., 1., 1.],
];
rec.log("segments", &rerun::LineStrips3D::new(points.chunks(2)))?;
Ok(())
}