mirror of
https://github.com/hannobraun/Fornjot
synced 2025-09-12 04:08:15 +00:00
Remove unused code
This commit is contained in:
parent
40cfb0eb33
commit
01d8b125bc
@ -10,7 +10,6 @@ mod object;
|
|||||||
mod operations;
|
mod operations;
|
||||||
mod render;
|
mod render;
|
||||||
mod topology;
|
mod topology;
|
||||||
mod view;
|
|
||||||
|
|
||||||
fn main() -> anyhow::Result<()> {
|
fn main() -> anyhow::Result<()> {
|
||||||
let model = model::model();
|
let model = model::model();
|
||||||
|
@ -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()
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user