From 264a7dedd42e27cd9e604037640cf0594b2ec46b Mon Sep 17 00:00:00 2001 From: Laurenz Date: Fri, 19 Mar 2021 17:57:31 +0100 Subject: =?UTF-8?q?Scheduled=20maintenance=20=F0=9F=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - New naming scheme - TextNode instead of NodeText - CallExpr instead of ExprCall - ... - Less glob imports - Removes Value::Args variant - Removes prelude - Renames Layouted to Fragment - Moves font into env - Moves shaping into layout - Moves frame into separate module --- src/geom/angle.rs | 2 -- src/geom/mod.rs | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) (limited to 'src/geom') diff --git a/src/geom/angle.rs b/src/geom/angle.rs index 2392efa5..a0e2877a 100644 --- a/src/geom/angle.rs +++ b/src/geom/angle.rs @@ -1,5 +1,3 @@ -use std::f64::consts::PI; - use super::*; /// An angle. diff --git a/src/geom/mod.rs b/src/geom/mod.rs index e601cb1f..5d906834 100644 --- a/src/geom/mod.rs +++ b/src/geom/mod.rs @@ -26,6 +26,7 @@ pub use sides::*; pub use size::*; pub use spec::*; +use std::f64::consts::PI; use std::fmt::{self, Debug, Display, Formatter}; use std::iter::Sum; use std::ops::*; -- cgit v1.2.3