diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-08-23 13:18:20 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-08-23 13:21:44 +0200 |
| commit | 0806af4aecc9414962b13894a2a3c4befd2ca3c8 (patch) | |
| tree | 0267109894f9cf4b74fe2663a2e29cf589d75b44 /src/geom/mod.rs | |
| parent | c0377de653ed7c0ae0e253724cbbb622125fbd3f (diff) | |
Kerned PDF output
Diffstat (limited to 'src/geom/mod.rs')
| -rw-r--r-- | src/geom/mod.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/geom/mod.rs b/src/geom/mod.rs index 6f48d7d9..11e082b8 100644 --- a/src/geom/mod.rs +++ b/src/geom/mod.rs @@ -5,6 +5,7 @@ mod macros; mod align; mod angle; mod dir; +mod em; mod fr; mod gen; mod length; @@ -19,6 +20,7 @@ mod spec; pub use align::*; pub use angle::*; pub use dir::*; +pub use em::*; pub use fr::*; pub use gen::*; pub use length::*; @@ -35,6 +37,9 @@ use std::fmt::{self, Debug, Display, Formatter}; use std::iter::Sum; use std::ops::*; +use decorum::N64; +use serde::{Deserialize, Serialize}; + /// Generic access to a structure's components. pub trait Get<Index> { /// The structure's component type. |
