summaryrefslogtreecommitdiffstats
path: root/src/node.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/node.c')
-rw-r--r--src/node.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/node.c b/src/node.c
index 2a44d64..cea0974 100644
--- a/src/node.c
+++ b/src/node.c
@@ -745,6 +745,18 @@ ganv_node_get_label(const GanvNode* node)
return node->impl->label ? node->impl->label->impl->text : NULL;
}
+double
+ganv_node_get_border_width(const GanvNode* node)
+{
+ return node->impl->border_width;
+}
+
+double
+ganv_node_get_dash_length(const GanvNode* node)
+{
+ return node->impl->dash_length;
+}
+
GanvNode*
ganv_node_get_partner(const GanvNode* node)
{