rename code -> gcode

master
Sameer Puri 5 years ago
parent f768c4f450
commit 0e46c40f65

@ -1,5 +1,5 @@
#[macro_use] #[macro_use]
use crate::code::*; use crate::gcode::*;
//// Direction of the machine spindle //// Direction of the machine spindle
#[derive(Clone, PartialEq, Eq)] #[derive(Clone, PartialEq, Eq)]

@ -16,11 +16,11 @@ use lyon_geom::{euclid, math};
use svgdom::{AttributeId, AttributeValue, ElementId, ElementType, PathSegment}; use svgdom::{AttributeId, AttributeValue, ElementId, ElementType, PathSegment};
#[macro_use] #[macro_use]
mod code; mod gcode;
mod machine; mod machine;
mod turtle; mod turtle;
use code::*; use gcode::*;
use machine::*; use machine::*;
use turtle::*; use turtle::*;

@ -1,5 +1,5 @@
/// TODO: Documentation /// TODO: Documentation
use crate::code::*; use crate::gcode::*;
use crate::machine::Machine; use crate::machine::Machine;
use lyon_geom::euclid::{default::Transform2D, Angle}; use lyon_geom::euclid::{default::Transform2D, Angle};
use lyon_geom::math::{point, vector, F64Point}; use lyon_geom::math::{point, vector, F64Point};

Loading…
Cancel
Save