//! 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/points2d_simple.rs`.
//! Log some very simple points.
pub fn main(_args: &[String]) -> Result<(), Box<dyn std::error::Error>> {
let rec = rerun::RecordingStreamBuilder::new("rerun_example_points2d").spawn()?;
rec.log("points", &rerun::Points2D::new([(0.0, 0.0), (1.0, 1.0)]))?;
// TODO(#5521): log VisualBounds2D
Ok(())
}