Skip to content

Commit e34debe

Browse files
authored
Merge pull request #141 from Rustfahrtagentur/pat/review_model
Pat/review model
2 parents 0d263c6 + c21552d commit e34debe

File tree

29 files changed

+51
-51
lines changed

29 files changed

+51
-51
lines changed

builtin/algorithm/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// SPDX-License-Identifier: AGPL-3.0-or-later
33

44
use microcad_core::BooleanOp;
5-
use microcad_lang::{modeltree::*, resolve::*, src_ref::*, syntax::*, value::*};
5+
use microcad_lang::{model_tree::*, resolve::*, src_ref::*, syntax::*, value::*};
66

77
/// Creates a node containing a difference algorithm
88
fn difference() -> Symbol {

builtin/geo2d/circle.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// SPDX-License-Identifier: AGPL-3.0-or-later
33

44
use microcad_core::*;
5-
use microcad_lang::{eval::*, modeltree::*, rc::*, src_ref::*, syntax::*, ty::*};
5+
use microcad_lang::{eval::*, model_tree::*, rc::*, src_ref::*, syntax::*, ty::*};
66

77
/// Builtin definition for a 2D circle
88
#[derive(Debug)]

builtin/geo2d/rect.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// SPDX-License-Identifier: AGPL-3.0-or-later
33

44
use microcad_core::*;
5-
use microcad_lang::{eval::*, modeltree::*, rc::*, src_ref::*, syntax::*, ty::*};
5+
use microcad_lang::{eval::*, model_tree::*, rc::*, src_ref::*, syntax::*, ty::*};
66

77
#[derive(Debug)]
88
pub struct Rect {

builtin/geo3d/cube.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// SPDX-License-Identifier: AGPL-3.0-or-later
33

44
use microcad_core::*;
5-
use microcad_lang::{eval::*, modeltree::*, rc::*, src_ref::*, syntax::*, ty::Type};
5+
use microcad_lang::{eval::*, model_tree::*, rc::*, src_ref::*, syntax::*, ty::Type};
66

77
/// The builtin cube primitive, defined by its size in the x, y, and z dimensions.
88
#[derive(Debug)]

builtin/geo3d/cylinder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// SPDX-License-Identifier: AGPL-3.0-or-later
33

44
use microcad_core::*;
5-
use microcad_lang::{eval::*, modeltree::*, rc::*, src_ref::*, syntax::*, ty::Type};
5+
use microcad_lang::{eval::*, model_tree::*, rc::*, src_ref::*, syntax::*, ty::Type};
66
/// The built-in cylinder primitive, defined by an bottom radius, top radius and height.
77
/// The cylinder is oriented along the z-axis.
88
#[derive(Debug)]

builtin/geo3d/sphere.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// SPDX-License-Identifier: AGPL-3.0-or-later
33

44
use microcad_core::*;
5-
use microcad_lang::{eval::*, modeltree::*, rc::*, src_ref::*, syntax::*, ty::Type};
5+
use microcad_lang::{eval::*, model_tree::*, rc::*, src_ref::*, syntax::*, ty::Type};
66

77
/// The builtin sphere primitive, defined by its radius.
88
#[derive(Debug)]

builtin/transform/rotate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// SPDX-License-Identifier: AGPL-3.0-or-later
33

44
use microcad_core::*;
5-
use microcad_lang::{eval::*, modeltree::*, src_ref::*, syntax::*, ty::*};
5+
use microcad_lang::{eval::*, model_tree::*, src_ref::*, syntax::*, ty::*};
66

77
/// Builtin definition for a 2D circle
88
#[derive(Debug)]

builtin/transform/translate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// SPDX-License-Identifier: AGPL-3.0-or-later
33

44
use microcad_core::*;
5-
use microcad_lang::{eval::*, modeltree::*, src_ref::*, syntax::*, ty::*};
5+
use microcad_lang::{eval::*, model_tree::*, src_ref::*, syntax::*, ty::*};
66

77
/// Builtin definition for a 2D circle
88
#[derive(Debug)]

lang/builtin/attributes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
//! Built-in metadata.
55
6-
use crate::{diag::*, eval::*, modeltree::*, syntax::*, ty::*, value::*};
6+
use crate::{diag::*, eval::*, model_tree::*, syntax::*, ty::*, value::*};
77

88
/// Create built-in tag [`MetadataItem`].
99
pub fn tag(id: &Identifier) -> EvalResult<Option<MetadataItem>> {

lang/eval/attribute.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright © 2025 The µcad authors <info@ucad.xyz>
22
// SPDX-License-Identifier: AGPL-3.0-or-later
33

4-
use crate::{eval::*, modeltree::*, syntax::*};
4+
use crate::{eval::*, model_tree::*, syntax::*};
55

66
use thiserror::Error;
77

0 commit comments

Comments
 (0)