use rerun::{archetypes::Arrows3D, RecordingStream};
#[derive(Debug, clap::Parser)]
#[clap(author, version, about)]
struct Args {
#[command(flatten)]
rerun: rerun::clap::RerunArgs,
}
fn run(rec: &RecordingStream, _args: &Args) -> anyhow::Result<()> {
rec.log(
"arrows3d",
&Arrows3D::from_vectors([[4.0, 5.0, 6.0], [40.0, 50.0, 60.0]])
.with_origins([[1.0, 2.0, 3.0], [10.0, 20.0, 30.0]])
.with_radii([0.1, 1.0])
.with_colors([0xAA0000CC, 0x00BB00DD])
.with_labels(["hello", "friend"])
.with_class_ids([126, 127]),
)
.map_err(Into::into)
}
fn main() -> anyhow::Result<()> {
re_log::setup_logging();
use clap::Parser as _;
let args = Args::parse();
let (rec, _serve_guard) = args.rerun.init("rerun_example_roundtrip_arrows3d")?;
run(&rec, &args)
}