diff options
Diffstat (limited to 'library/src/visualize')
| -rw-r--r-- | library/src/visualize/line.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/src/visualize/line.rs b/library/src/visualize/line.rs index 0875fafc..ef6ce2c3 100644 --- a/library/src/visualize/line.rs +++ b/library/src/visualize/line.rs @@ -4,9 +4,9 @@ use crate::prelude::*; #[derive(Debug, Hash)] pub struct LineNode { /// Where the line starts. - origin: Axes<Rel<Length>>, + pub origin: Axes<Rel<Length>>, /// The offset from the `origin` where the line ends. - delta: Axes<Rel<Length>>, + pub delta: Axes<Rel<Length>>, } #[node(Layout, Inline)] |
