mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-05 10:28:27 +00:00
Update name of module
This commit is contained in:
parent
2145bc8562
commit
ee0e50b5c7
@ -11,7 +11,7 @@ use winit::{
|
||||
use crate::{
|
||||
geometry::{HandleAny, Shape},
|
||||
render::Renderer,
|
||||
ui::OperationView,
|
||||
view::OperationView,
|
||||
};
|
||||
|
||||
pub fn run(shape: Shape) -> anyhow::Result<()> {
|
||||
|
@ -6,7 +6,7 @@ mod geometry;
|
||||
mod math;
|
||||
mod model;
|
||||
mod render;
|
||||
mod ui;
|
||||
mod view;
|
||||
|
||||
fn main() -> anyhow::Result<()> {
|
||||
let mut shape = geometry::Shape::default();
|
||||
|
@ -3,7 +3,7 @@ use std::sync::Arc;
|
||||
use anyhow::anyhow;
|
||||
use winit::window::Window;
|
||||
|
||||
use crate::ui::OperationView;
|
||||
use crate::view::OperationView;
|
||||
|
||||
use super::{geometry::Geometry, pipelines::Pipelines, text::TextRenderer};
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
use std::fmt::Write;
|
||||
|
||||
use crate::ui::OperationView;
|
||||
use crate::view::OperationView;
|
||||
|
||||
pub struct TextRenderer {
|
||||
text_atlas: glyphon::TextAtlas,
|
||||
|
Loading…
Reference in New Issue
Block a user