4个版本

0.0.4 2023年1月3日
0.0.3 2023年1月3日
0.0.2 2023年1月3日
0.0.1 2023年1月2日

#756 in 图形API

GPL-3.0 许可证

25KB
860 代码行

WGSL-TYPES

Crates.io

支持

  • vec2

  • vec3

  • vec4

使用bytes-kman进行序列化和反序列化

示例

use bytes_kman::prelude::*;
use wgsl_types::prelude::*;


fn main(){
    let a = vec3::<f32>(1.0, 1.0, 0.0);
    
    // this is the bytes!
    let mut bytes = a.to_bytes();
    // if you want to create a vec3 from bytes you need to have the bytes in reverse
    bytes.reverse();
    // the bytes will be consumed
    let b = <vec3::<f32>>::from_bytes(&mut bytes).unwrap();
}

依赖项

~1.5MB
~37K SLoC