Update module name

This commit is contained in:
Hanno Braun 2024-06-21 20:19:59 +02:00
parent 7d48d20a57
commit a6612aa55e
3 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ use crate::{
}; };
use super::{ use super::{
circle::approx_circle, path::approx_line, Approx, ApproxPoint, Tolerance, circle::approx_circle, line::approx_line, Approx, ApproxPoint, Tolerance,
}; };
impl Approx for (&Handle<Curve>, &Handle<Surface>, CurveBoundary<Point<1>>) { impl Approx for (&Handle<Curve>, &Handle<Surface>, CurveBoundary<Point<1>>) {

View File

@ -11,7 +11,7 @@ pub mod tolerance;
pub mod vertex; pub mod vertex;
mod circle; mod circle;
mod path; mod line;
use std::{ use std::{
cmp::Ordering, cmp::Ordering,