PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwline_calculate_circ_tree()

static CIRC_NODE* lwline_calculate_circ_tree ( const LWLINE lwline)
static

Definition at line 878 of file lwgeodetic_tree.c.

References circ_tree_new(), circ_node::geom_type, lwgeom_get_type(), and LWLINE::points.

Referenced by lwgeom_calculate_circ_tree().

879 {
880  CIRC_NODE* node;
881  node = circ_tree_new(lwline->points);
882  node->geom_type = lwgeom_get_type((LWGEOM*)lwline);
883  return node;
884 }
Note that p1 and p2 are pointers into an independent POINTARRAY, do not free them.
uint32_t lwgeom_get_type(const LWGEOM *geom)
Return LWTYPE number.
Definition: lwgeom.c:878
CIRC_NODE * circ_tree_new(const POINTARRAY *pa)
Build a tree of nodes from a point array, one node per edge.
POINTARRAY * points
Definition: liblwgeom.h:422
Here is the call graph for this function:
Here is the caller graph for this function: