refactor: made all fields of Vertex public

This commit is contained in:
antifallobst 2023-12-01 00:02:22 +01:00
parent 4e536d420d
commit 2a10757c54
Signed by: antifallobst
GPG Key ID: 2B4F402172791BAF
1 changed files with 3 additions and 3 deletions

View File

@ -2,9 +2,9 @@ use anyhow::Result;
use lithium_utils::{Vector2, Vector3}; use lithium_utils::{Vector2, Vector3};
pub struct Vertex { pub struct Vertex {
position: Vector3, pub position: Vector3,
uv: Vector2, pub uv: Vector2,
normal: Vector3, pub normal: Vector3,
} }
impl Vertex { impl Vertex {