Remove unused code

This commit is contained in:
Hanno Braun 2025-03-18 20:56:03 +01:00
parent 40cfb0eb33
commit 01d8b125bc
2 changed files with 0 additions and 20 deletions

View File

@ -10,7 +10,6 @@ mod object;
mod operations;
mod render;
mod topology;
mod view;
fn main() -> anyhow::Result<()> {
let model = model::model();

View File

@ -1,19 +0,0 @@
use crate::{
geometry::TriMesh,
object::{HandleAny, Object},
};
#[derive(Clone)]
pub struct OperationView {
operation: HandleAny,
}
impl Object for OperationView {
fn tri_mesh(&self) -> TriMesh {
self.operation.tri_mesh()
}
fn children(&self) -> Vec<HandleAny> {
self.operation.children()
}
}