diff --git a/src/graphics.rs b/src/graphics.rs index 343105f4..5000036a 100644 --- a/src/graphics.rs +++ b/src/graphics.rs @@ -57,12 +57,6 @@ fn perspective_rh(fov_x_slope: f32, fov_y_slope: f32, z_near: f32, z_far: f32) - ) } impl GraphicsCamera{ - pub fn new(screen_size:glam::UVec2,fov:glam::Vec2)->Self{ - Self{ - screen_size, - fov, - } - } pub fn proj(&self)->glam::Mat4{ perspective_rh(self.fov.x, self.fov.y, 0.5, 2000.0) } diff --git a/src/primitives.rs b/src/primitives.rs index 53b6d0d0..40f2bdfd 100644 --- a/src/primitives.rs +++ b/src/primitives.rs @@ -189,18 +189,6 @@ impl std::default::Default for FaceDescription{ } } } -impl FaceDescription{ - pub fn new(texture:u32,transform:glam::Affine2,color:Color4)->Self{ - Self{texture:Some(texture),transform,color} - } - pub fn from_texture(texture:u32)->Self{ - Self{ - texture:Some(texture), - transform:glam::Affine2::IDENTITY, - color:Color4::ONE, - } - } -} //TODO: it's probably better to use a shared vertex buffer between all primitives and use indexed rendering instead of generating a unique vertex buffer for each primitive. //implementation: put all roblox primitives into one model.groups <- this won't work but I forget why pub fn generate_partial_unit_cube(face_descriptions:CubeFaceDescription)->crate::model::IndexedModel{