5个版本
0.1.4 | 2024年4月25日 |
---|---|
0.1.3 | 2024年4月25日 |
0.1.2 | 2024年4月19日 |
0.1.1 | 2024年4月19日 |
0.1.0 | 2024年4月19日 |
#160 in 渲染
每月73次下载
38KB
149 行
bevy_curvo
bevy_curvo
是一个辅助库,用于在 Curvo 环境中直接渲染使用 Bevy 模型化的曲线和曲面。
您可以在网上尝试演示。 https://mattatz.github.io/bevy_curvo/
用法
// Create a set of points to interpolate
let points = vec![
Point3::new(-1.0, -1.0, 0.),
Point3::new(1.0, -1.0, 0.),
Point3::new(1.0, 1.0, 0.),
Point3::new(-1.0, 1.0, 0.),
];
// Create a NURBS curve that interpolates the given points with degree 3
let interpolated = NurbsCurve3D::<f64>::try_interpolate(&points, 3, None, None).unwrap();
// Create a NURBS surface by extruding the curve along the z-axis
let extrusion = NurbsSurface::extrude(&interpolated, Vector3::z() * 3.0);
// Create a SurfaceTessellation from the NURBS surface
let tess = extrusion.tessellate(Some(AdaptiveTessellationOptions {
norm_tolerance: 1e-2 * 2.5,
..Default::default()
}));
// Create a bevy friendly data from the tessellation
let surface_mesh = NurbsSurfaceMesh::from(tess);
commands.spawn(PbrBundle {
// Here you can use the mesh to render the surface
mesh: surface_mesh,
material: materials.add(StandardMaterial {
..default()
}),
..default()
});
// or you can build a mesh for the surface
let tri: Mesh = surface_mesh.build_surface_triangle_list(Some(RenderAssetUsages::default()));
运行示例
cargo run --example scene --features=examples
或使用 cargo-make
cargo make example
在浏览器中运行示例
使用 cargo-make,将使用 wasm-bindgen-cli生成wasm文件,并通过http服务器提供Web应用程序。
cargo make serve
兼容性
bevy | bevy_curvo |
---|---|
0.13 | 0.1 |
依赖项
~37–76MB
~1.5M SLoC