mosure / bevy_gaussian_splatting

bevy gaussian splatting render pipeline plugin
https://mosure.github.io/bevy_gaussian_splatting?gaussian_count=1000
MIT License
134 stars 9 forks source link

support streamed codecs #30

Open github-actions[bot] opened 10 months ago

github-actions[bot] commented 10 months ago

https://github.com/mosure/bevy_gaussian_splatting/blob/424e124835b70e9655f672eef1de9fb7785636ef/src/io/codec.rs#L2


// TODO: support streamed codecs
pub trait GaussianCloudCodec {
    fn encode(&self) -> Vec<u8>;
    fn decode(data: &[u8]) -> Self;
}