From 4168f05087a7ab656bb027ad7334acd6bcb63d11 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 25 Mar 2013 00:32:29 +0000 Subject: Minor documentation improvements. git-svn-id: http://svn.drobilla.net/lad/trunk/ganv@5099 a436a847-0d15-0410-975c-d299462d15a1 --- ganv/node.h | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'ganv/node.h') diff --git a/ganv/node.h b/ganv/node.h index 47e27b1..dd51cc2 100644 --- a/ganv/node.h +++ b/ganv/node.h @@ -80,14 +80,26 @@ struct _GanvNodeClass { GType ganv_node_get_type(void); +/** + * ganv_node_can_tail: + * Return value: True iff node can act as the tail of an edge. + */ gboolean -ganv_node_can_tail(const GanvNode* self); +ganv_node_can_tail(const GanvNode* node); +/** + * ganv_node_can_head: + * Return value: True iff node can act as the head of an edge. + */ gboolean -ganv_node_can_head(const GanvNode* self); +ganv_node_can_head(const GanvNode* node); +/** + * ganv_node_is_within: + * Return value: True iff node is entirely within the given rectangle. + */ gboolean -ganv_node_is_within(const GanvNode* self, +ganv_node_is_within(const GanvNode* node, double x1, double y1, double x2, -- cgit v1.2.1