summaryrefslogtreecommitdiffstats
path: root/src/node.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-01-13 09:12:24 +0000
committerDavid Robillard <d@drobilla.net>2013-01-13 09:12:24 +0000
commit847f2800b7417a7f603dae5193b1da01df716df3 (patch)
treea541f5b8ed134b56873109b03e6c63cffd509c4b /src/node.c
parent87f207c9cf4f27ff8841764a202ad9f79419dcb4 (diff)
downloadganv-847f2800b7417a7f603dae5193b1da01df716df3.tar.gz
ganv-847f2800b7417a7f603dae5193b1da01df716df3.tar.bz2
ganv-847f2800b7417a7f603dae5193b1da01df716df3.zip
Better dot rendering and auto-arrange for graphs with circles.
git-svn-id: http://svn.drobilla.net/lad/trunk/ganv@4955 a436a847-0d15-0410-975c-d299462d15a1
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)
{