geom.edge.start.index

Syntax

i = geom.edge.start.index(e)

Index of the first polygon attached to an edge. This is used to iterate through all polygons attached to an edge with the geom.edge.start.poly, geom.poly.next.poly and geom.poly.next.index functions.

Returns:i - polygon index
Arguments:e - edge pointer

Get local index i of edge e within the first polygon attached to the edge. This can be used to iterate through all polygons attached to an edge using the geom.edge.start.poly, geom.poly.next.poly and geom.poly.next.index functions.

Returns:i - edge index
Arguments:e - edge pointer

Usage Example

The following example illustrates how geom.edge.start.index can be used to iterate through all polygons connected to an edge.

    ; Test edge to poly loop
    global test25 = 0
    local edge_pnt = geom.edge.find(setpnt,1)
    local poly_pnt = geom.edge.start.poly(edge_pnt)
    local edge_ind = geom.edge.start.index(edge_pnt)
    loop while poly_pnt # null
        test25 = test25 + 1
        local next_pnt = geom.poly.next.poly(poly_pnt,edge_ind)
        edge_ind = geom.poly.next.index(poly_pnt,edge_ind)
        poly_pnt = next_pnt