summaryrefslogtreecommitdiff
path: root/library/src/visualize
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-12-08 19:46:06 +0100
committerLaurenz <laurmaedje@gmail.com>2022-12-08 19:46:06 +0100
commit495b525694aa5901385f3acad043b4a9f3ebb911 (patch)
tree36be972fb666b61309b7538335de1a7313c46c8f /library/src/visualize
parente6857f810e8868d95ebe78753568016b6dea12ca (diff)
Naming consistency
Diffstat (limited to 'library/src/visualize')
-rw-r--r--library/src/visualize/line.rs4
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)]