gausplat_renderer/scene/point/
points.rs

1
2
3
4
5
6
//! A collection of points.

pub use super::Point;

/// A list of [`Point`].
pub type Points = Vec<Point>;