Skip to content

Commit

Permalink
Update module name
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Jun 6, 2023
1 parent 1b79f95 commit b94ed8a
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion crates/fj-interop/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@

pub mod ext;
pub mod mesh;
pub mod processed_shape;
pub mod model;
File renamed without changes.
2 changes: 1 addition & 1 deletion crates/fj-viewer/src/camera.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! Viewer camera module
use std::f64::consts::FRAC_PI_2;

use fj_interop::{mesh::Mesh, processed_shape::Model};
use fj_interop::{mesh::Mesh, model::Model};
use fj_math::{Aabb, Point, Scalar, Transform, Vector};

use crate::screen::NormalizedScreenPosition;
Expand Down
2 changes: 1 addition & 1 deletion crates/fj-viewer/src/viewer.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use fj_interop::processed_shape::Model;
use fj_interop::model::Model;
use fj_math::Aabb;
use tracing::warn;

Expand Down
2 changes: 1 addition & 1 deletion crates/fj-window/src/display.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use fj_interop::{mesh::Mesh, processed_shape::Model};
use fj_interop::{mesh::Mesh, model::Model};
use fj_math::{Aabb, Point};
use fj_viewer::{
InputEvent, NormalizedScreenPosition, RendererInitError, Screen,
Expand Down

0 comments on commit b94ed8a

Please sign in to comment.