mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-08 03:48:27 +00:00
Make field public
This commit is contained in:
parent
58dcdb2193
commit
df92f84bcb
@ -7,7 +7,8 @@ use crate::Color;
|
|||||||
/// # A triangle mesh
|
/// # A triangle mesh
|
||||||
#[derive(Clone, Debug, Default)]
|
#[derive(Clone, Debug, Default)]
|
||||||
pub struct TriMesh {
|
pub struct TriMesh {
|
||||||
triangles: Vec<MeshTriangle>,
|
/// # The triangles in the mesh
|
||||||
|
pub triangles: Vec<MeshTriangle>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl TriMesh {
|
impl TriMesh {
|
||||||
|
Loading…
Reference in New Issue
Block a user