1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
use crate::lcg;

/// Batch that should be logged.
/// Intentionally not using `rerun::Points3D` here already.
pub struct Point3DInput {
    pub positions: Vec<glam::Vec3>,
    pub colors: Vec<u32>,
    pub radii: Vec<f32>,
    pub label: String,
}

pub fn prepare_points3d(mut lcg_state: i64, num_points: usize) -> Point3DInput {
    re_tracing::profile_function!();

    Point3DInput {
        positions: (0..num_points)
            .map(|_| {
                glam::vec3(
                    lcg(&mut lcg_state) as f32,
                    lcg(&mut lcg_state) as f32,
                    lcg(&mut lcg_state) as f32,
                )
            })
            .collect(),
        colors: (0..num_points)
            .map(|_| lcg(&mut lcg_state) as u32)
            .collect(),
        radii: (0..num_points)
            .map(|_| lcg(&mut lcg_state) as f32)
            .collect(),
        label: "some label".to_owned(),
    }
}