wgpu-3dgs-core 0.7.0

A 3D Gaussian splatting library written in Rust using wgpu.
Documentation
#![doc = include_str!("../README.md")]

mod buffer;
mod compute_bundle;
mod error;
mod gaussian;
mod gaussian_config;
pub mod shader;
mod source_format;

pub use buffer::*;
pub use compute_bundle::*;
pub use error::*;
pub use gaussian::*;
pub use gaussian_config::*;
pub use source_format::*;

pub use glam;
pub use wesl;
pub use wgpu;