ferrum_cloud 0.1.0

Pure Rust implementation of Point Cloud Library (PCL).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Core data structures and traits for point cloud processing
//!
//! This module contains the fundamental building blocks of the FerrumCloud library,
//! including point types, point cloud containers, and views.

pub mod cloud;
pub mod metadata;
pub mod point;
pub mod view;

// Re-export commonly used types
pub use cloud::PointCloud;
pub use metadata::Metadata;
pub use point::{Point, PointXYZ, PointXYZRGB, PointXYZRGBNormal};
pub use view::PointCloudView;