Example #1
0
def convex_hull(pts):
    """
    Computes the convex hull enclosing `pts`.

    >>> pts = [[0, 0], [0, 1], [1, 1], [1, 0]]
    >>> segments = convex_hull(pts)

    .. plot::

        import triangle
        import triangle.plot
        import matplotlib.pyplot as plt
        import numpy as np
        pts = np.array([[0, 0], [0, 1], [1, 1], [1, 0]])
        segments = triangle.convex_hull(pts)
        triangle.plot.plot(plt.axes(), vertices=pts, segments=segments)
        plt.show()

    """
    pts = np.array(pts, dtype='double')
    opts = 'Qzc'

    _in = core.TriangulateIO()
    _in.pointlist = pts.flatten()
    _in.pointmarkerlist = np.zeros(pts.shape[0], dtype='int32')

    _out = core.TriangulateIO()

    core.triang(opts, _in, _out)

    return np.array(_out.segmentlist).reshape((-1, 2))
Example #2
0
def triangulate(tri, opts=''):
    '''
    Perform triangulation on the input data `tri`. `tri` must be a dictionary
    that contains the following keys:

        * `vertices` - 2-D array that stores the xy position of each vertex
        * `segments` - optional 2-D array that stores segments. Segments are edges whose presence in the triangulation is enforced (although each segment may be subdivided into smaller edges). Each segment is specified by listing the indices of its two endpoints.
        * `holes` - optional 2-D array that stores holes. Holes are specified by identifying a point inside each hole. After the triangulation is formed, Triangle creates holes by eating triangles, spreading out from each hole point until its progress is blocked by PSLG segments; you must be careful to enclose each hole in segments, or your whole triangulation might be eaten away. If the two triangles abutting a segment are eaten, the segment itself is also eaten. Do not place a hole directly on a segment; if you do, Triangle will choose one side of the segment arbitrarily.
        * `regions` - optional 2-D array that stores region attributes and areas.

    The second (optional) arguments lists the options that should be passed to triangle.

        * `p` - Triangulates a Planar Straight Line Graph.
        * `r` - Refines a previously generated mesh.
        * `q` - Quality mesh generation with no angles smaller than 20 degrees. An alternate minimum angle may be specified after the `q`.
        * `a` - Imposes a maximum triangle area constraint. A fixed area constraint (that applies to every triangle) may be specified after the `a`, or varying areas may be read from the input dictionary.
        * `c` - Encloses the convex hull with segments.
        * `D` - Conforming Delaunay: use this switch if you want all triangles in the mesh to be Delaunay, and not just constrained Delaunay; or if you want to ensure that all Voronoi vertices lie within the triangulation.
        * `X` - Suppresses exact arithmetic.
        * `S` - Specifies the maximum number of added Steiner points.
        * `i` - Uses the incremental algorithm for Delaunay triangulation, rather than the divide-and-conquer algorithm.
        * `F` - Uses Steven Fortune's sweepline algorithm for Delaunay triangulation, rather than the divide-and-conquer algorithm.
        * `l` - Uses only vertical cuts in the divide-and-conquer algorithm. By default, Triangle uses alternating vertical and horizontal cuts, which usually improve the speed except with vertex sets that are small or short and wide. This switch is primarily of theoretical interest.
        * `s` - Specifies that segments should be forced into the triangulation by recursively splitting them at their midpoints, rather than by generating a constrained Delaunay triangulation. Segment splitting is true to Ruppert's original algorithm, but can create needlessly small triangles. This switch is primarily of theoretical interest.
        * `C` - Check the consistency of the final mesh. Uses exact arithmetic for checking, even if the -X switch is used. Useful if you suspect Triangle is buggy.
    '''

    fields = (
        ('pointlist', 'vertices', 'double', 2),
        ('segmentlist', 'segments', 'int32', 2),
        ('holelist', 'holes', 'double', 2),
        ('regionlist', 'regions', 'double', 4),
        ('trianglelist', 'triangles', 'int32', 3),
        ('trianglearealist', 'triangle_max_area', 'double', 1),
        ('pointmarkerlist', 'vertex_markers', 'int32', 1),
        ('segmentmarkerlist', 'segment_markers', 'int32', 1),
    )

    if ('vertices' not in tri) or (len(tri['vertices']) < 3):
        raise ValueError('Input must have at least three input vertices.')

    a = core.TriangulateIO()
    for n0, n1, t, _ in fields:
        if n1 not in tri:
            continue
        value = np.array(tri[n1], dtype=t).flatten()
        setattr(a, n0, value)

    r = {}

    b = core.TriangulateIO()
    core.triang('Qz' + opts, a, b)
    for n0, n1, _, d in fields:
        try:
            value = np.array(getattr(b, n0))
        except ValueError:
            continue
        r[n1] = value.reshape((-1, d))

    return r
Example #3
0
def delaunay(pts):
    """
    Computes the delaunay triangulation of points `pts`.

    >>> pts = [[0, 0], [0, 1], [0.5, 0.5], [1, 1], [1, 0]]
    >>> tri = delaunay(pts)

    .. plot..

        import triangle
        import triangle.plot
        import matplotlib.pyplot as plt
        import numpy as np
        pts = np.array([[0, 0], [0, 1], [.5, .5], [1, 1], [1, 0]])
        tri = triangle.delaunay(pts)
        triangle.plot.plot(plt.axes(), vertices=pts, triangles=tri)
        plt.show()

    """

    pts = np.array(pts, dtype='double')
    opts = 'Qz'

    _in = core.TriangulateIO()
    _in.pointlist = pts.flatten()
    _in.pointmarkerlist = np.zeros(pts.shape[0], dtype='int32')

    _out = core.TriangulateIO()

    core.triang(opts, _in, _out)

    return np.array(_out.trianglelist).reshape((-1, 3))
Example #4
0
def delaunay(pts):
    """
    Computes the delaunay triangulation of points `pts`.

    >>> pts = [[0, 0], [0, 1], [0.5, 0.5], [1, 1], [1, 0]]
    >>> tri = delaunay(pts)

    .. plot..

        import triangle
        import triangle.plot
        import matplotlib.pyplot as plt
        import numpy as np
        pts = np.array([[0, 0], [0, 1], [.5, .5], [1, 1], [1, 0]])
        tri = triangle.delaunay(pts)
        triangle.plot.plot(plt.axes(), vertices=pts, triangles=tri)
        plt.show()

    """

    pts = np.array(pts, dtype='double')
    opts = 'Qz'

    _in = core.TriangulateIO()
    _in.pointlist = pts.flatten()
    _in.pointmarkerlist = np.zeros(pts.shape[0], dtype='int32')

    _out = core.TriangulateIO()

    core.triang(opts, _in, _out)

    return np.array(_out.trianglelist).reshape((-1, 3))
Example #5
0
def convex_hull(pts):
    """
    Computes the convex hull enclosing `pts`.

    >>> pts = [[0, 0], [0, 1], [1, 1], [1, 0]]
    >>> segments = convex_hull(pts)

    .. plot::

        import triangle
        import triangle.plot
        import matplotlib.pyplot as plt
        import numpy as np
        pts = np.array([[0, 0], [0, 1], [1, 1], [1, 0]])
        segments = triangle.convex_hull(pts)
        triangle.plot.plot(plt.axes(), vertices=pts, segments=segments)
        plt.show()

    """
    pts = np.array(pts, dtype='double')
    opts = 'Qzc'

    _in = core.TriangulateIO()
    _in.pointlist = pts.flatten()
    _in.pointmarkerlist = np.zeros(pts.shape[0], dtype='int32')

    _out = core.TriangulateIO()

    core.triang(opts, _in, _out)

    return np.array(_out.segmentlist).reshape((-1, 2))
Example #6
0
def triangulate(tri, opts=''):
    '''
    Perform triangulation on the input data `tri`. `tri` must be a dictionary
    that contains the following keys:

        * `vertices` - 2-D array that stores the xy position of each vertex
        * `segments` - optional 2-D array that stores segments. Segments are edges whose presence in the triangulation is enforced (although each segment may be subdivided into smaller edges). Each segment is specified by listing the indices of its two endpoints.
        * `holes` - optional 2-D array that stores holes. Holes are specified by identifying a point inside each hole. After the triangulation is formed, Triangle creates holes by eating triangles, spreading out from each hole point until its progress is blocked by PSLG segments; you must be careful to enclose each hole in segments, or your whole triangulation might be eaten away. If the two triangles abutting a segment are eaten, the segment itself is also eaten. Do not place a hole directly on a segment; if you do, Triangle will choose one side of the segment arbitrarily.
        * `regions` - optional 2-D array that stores region attributes and areas.

    The second (optional) arguments lists the options that should be passed to triangle.

        * `p` - Triangulates a Planar Straight Line Graph.
        * `r` - Refines a previously generated mesh.
        * `q` - Quality mesh generation with no angles smaller than 20 degrees. An alternate minimum angle may be specified after the `q`.
        * `a` - Imposes a maximum triangle area constraint. A fixed area constraint (that applies to every triangle) may be specified after the `a`, or varying areas may be read from the input dictionary.
        * `c` - Encloses the convex hull with segments.
        * `D` - Conforming Delaunay: use this switch if you want all triangles in the mesh to be Delaunay, and not just constrained Delaunay; or if you want to ensure that all Voronoi vertices lie within the triangulation.
        * `X` - Suppresses exact arithmetic.
        * `S` - Specifies the maximum number of added Steiner points.
        * `i` - Uses the incremental algorithm for Delaunay triangulation, rather than the divide-and-conquer algorithm.
        * `F` - Uses Steven Fortune's sweepline algorithm for Delaunay triangulation, rather than the divide-and-conquer algorithm.
        * `l` - Uses only vertical cuts in the divide-and-conquer algorithm. By default, Triangle uses alternating vertical and horizontal cuts, which usually improve the speed except with vertex sets that are small or short and wide. This switch is primarily of theoretical interest.
        * `s` - Specifies that segments should be forced into the triangulation by recursively splitting them at their midpoints, rather than by generating a constrained Delaunay triangulation. Segment splitting is true to Ruppert's original algorithm, but can create needlessly small triangles. This switch is primarily of theoretical interest.
        * `C` - Check the consistency of the final mesh. Uses exact arithmetic for checking, even if the -X switch is used. Useful if you suspect Triangle is buggy.
    '''

    fields = (
        ('pointlist', 'vertices', 'double', 2),
        ('segmentlist', 'segments', 'int32', 2),
        ('holelist', 'holes', 'double', 2),
        ('regionlist', 'regions', 'double', 4),
        ('trianglelist', 'triangles', 'int32', 3),
        ('trianglearealist', 'triangle_max_area', 'double', 1),
        ('pointmarkerlist', 'vertex_markers', 'int32', 1),
        ('segmentmarkerlist', 'segment_markers', 'int32', 1),
    )

    if ('vertices' not in tri) or (len(tri['vertices']) < 3):
        raise ValueError('Input must have at least three input vertices.')

    a = core.TriangulateIO()
    for n0, n1, t, _ in fields:
        if n1 not in tri:
            continue
        value = np.array(tri[n1], dtype=t).flatten()
        setattr(a, n0, value)

    r = {}

    b = core.TriangulateIO()
    core.triang('Qz' + opts, a, b)
    for n0, n1, _, d in fields:
        try:
            value = np.array(getattr(b, n0))
        except ValueError:
            continue
        r[n1] = value.reshape((-1, d))

    return r
Example #7
0
def voronoi(pts):
    """
    Computes the voronoi diagram `pts`.

    >>> pts = [[0, 0], [0, 1], [0.5, 0.5], [1, 1], [1, 0]]
    >>> points, edges, ray_origin, ray_direct = voronoi(pts)

    .. plot::

        import triangle
        import triangle.plot
        import matplotlib.pyplot as plt

        pts = [[0, 0], [0, 1], [0.5, 0.5], [1, 1], [1, 0]]
        import numpy as np
        pts = np.array(pts)

        vertices, edges, ray_origins, ray_directions = triangle.voronoi(pts)
        ax = plt.axes()
        triangle.plot.plot(ax, vertices=pts)
        lim = ax.axis()
        triangle.plot.plot(ax, vertices=vertices, edges=edges,
                           ray_origins=ray_origins, ray_directions=ray_directions)
        ax.axis(lim)

        plt.show()

    """
    pts = np.array(pts, dtype='double')
    opts = 'Qzv'

    _in = core.TriangulateIO()
    _in.pointlist = pts.flatten()
    _in.pointmarkerlist = np.zeros(pts.shape[0], dtype='int32')

    _out = core.TriangulateIO()
    _vorout = core.TriangulateIO()

    core.triang(opts, _in, _out, _vorout)

    p = np.array(_vorout.pointlist).reshape((-1,2))
    e = np.array(_vorout.edgelist).reshape((-1,2))
    n = np.array(_vorout.normlist).reshape((-1,2))
    fltr = (e[:,1]!=-1)
    edges = e[fltr]
    ray_origin = e[-fltr][:,0]
    ray_direct = n[-fltr]

    return p, edges, ray_origin, ray_direct
Example #8
0
def voronoi(pts):
    """
    Computes the voronoi diagram `pts`.

    >>> pts = [[0, 0], [0, 1], [0.5, 0.5], [1, 1], [1, 0]]
    >>> points, edges, ray_origin, ray_direct = voronoi(pts)

    .. plot::

        import triangle
        import triangle.plot
        import matplotlib.pyplot as plt

        pts = [[0, 0], [0, 1], [0.5, 0.5], [1, 1], [1, 0]]
        import numpy as np
        pts = np.array(pts)

        vertices, edges, ray_origins, ray_directions = triangle.voronoi(pts)
        ax = plt.axes()
        triangle.plot.plot(ax, vertices=pts)
        lim = ax.axis()
        triangle.plot.plot(ax, vertices=vertices, edges=edges,
                           ray_origins=ray_origins, ray_directions=ray_directions)
        ax.axis(lim)

        plt.show()

    """
    pts = np.array(pts, dtype='double')
    opts = 'Qzv'

    _in = core.TriangulateIO()
    _in.pointlist = pts.flatten()
    _in.pointmarkerlist = np.zeros(pts.shape[0], dtype='int32')

    _out = core.TriangulateIO()
    _vorout = core.TriangulateIO()

    core.triang(opts, _in, _out, _vorout)

    p = np.array(_vorout.pointlist).reshape((-1, 2))
    e = np.array(_vorout.edgelist).reshape((-1, 2))
    n = np.array(_vorout.normlist).reshape((-1, 2))
    fltr = (e[:, 1] != -1)
    edges = e[fltr]
    ray_origin = e[-fltr][:, 0]
    ray_direct = n[-fltr]

    return p, edges, ray_origin, ray_direct
def voronoi(pts):
    """
    Computes the voronoi diagram `pts`.

    >>> pts = [[0, 0], [0, 1], [0.5, 0.5], [1, 1], [1, 0]]
    >>> points, edges, ray_origin, ray_direct = voronoi(pts)
    >>> points.tolist()
    [[0.0, 0.5], [1.0, 0.5], [0.5, 0.0], [0.5, 1.0]]
    >>> edges.tolist()
    [[0, 2], [0, 3], [1, 2], [1, 3]]
    >>> ray_origin.tolist()
    [0, 1, 2, 3]
    >>> ray_direct.tolist()
    [[-1.0, 0.0], [1.0, 0.0], [0.0, -1.0], [0.0, 1.0]]

    .. plot:: plot/api_voronoi.py

    """
    opts = 'Qzv'

    _in = {'pointlist': pts}
    _out, _vorout = triang(_in, opts)

    p = _vorout['pointlist']
    e = _vorout['edgelist']
    n = _vorout['normlist']
    fltr = (e[:, 1] != -1)
    edges = e[fltr]
    ray_origin = e[~fltr][:, 0]
    ray_direct = n[~fltr]

    return p, edges, ray_origin, ray_direct
Example #10
0
def triangulate(tri, opts=''):
    """
    Perform triangulation on the input data `tri`. `tri` must be a dictionary
    that contains the following keys:

    * `vertices` - 2-D array that stores the xy position of each vertex
    * `segments` - optional 2-D array that stores segments. Segments are edges whose presence in the triangulation is enforced (although each segment may be subdivided into smaller edges). Each segment is specified by listing the indices of its two endpoints.
    * `holes` - optional 2-D array that stores holes. Holes are specified by identifying a point inside each hole. After the triangulation is formed, Triangle creates holes by eating triangles, spreading out from each hole point until its progress is blocked by PSLG segments; you must be careful to enclose each hole in segments, or your whole triangulation might be eaten away. If the two triangles abutting a segment are eaten, the segment itself is also eaten. Do not place a hole directly on a segment; if you do, Triangle will choose one side of the segment arbitrarily.
    * `regions` - optional 2-D array that stores region attributes and areas.

    The second (optional) arguments lists the options that should be passed to triangle:

    * `p` - Triangulates a Planar Straight Line Graph.
    * `r` - Refines a previously generated mesh.
    * `q` - Quality mesh generation with no angles smaller than 20 degrees. An alternate minimum angle may be specified after the `q`.
    * `a` - Imposes a maximum triangle area constraint. A fixed area constraint (that applies to every triangle) may be specified after the `a`, or varying areas may be read from the input dictionary.
    * `c` - Encloses the convex hull with segments.
    * `D` - Conforming Delaunay: use this switch if you want all triangles in the mesh to be Delaunay, and not just constrained Delaunay; or if you want to ensure that all Voronoi vertices lie within the triangulation.
    * `X` - Suppresses exact arithmetic.
    * `S` - Specifies the maximum number of added Steiner points.
    * `i` - Uses the incremental algorithm for Delaunay triangulation, rather than the divide-and-conquer algorithm.
    * `F` - Uses Steven Fortune's sweepline algorithm for Delaunay triangulation, rather than the divide-and-conquer algorithm.
    * `l` - Uses only vertical cuts in the divide-and-conquer algorithm. By default, Triangle uses alternating vertical and horizontal cuts, which usually improve the speed except with vertex sets that are small or short and wide. This switch is primarily of theoretical interest.
    * `s` - Specifies that segments should be forced into the triangulation by recursively splitting them at their midpoints, rather than by generating a constrained Delaunay triangulation. Segment splitting is true to Ruppert's original algorithm, but can create needlessly small triangles. This switch is primarily of theoretical interest.
    * `C` - Check the consistency of the final mesh. Uses exact arithmetic for checking, even if the -X switch is used. Useful if you suspect Triangle is buggy.
    * `n` - Return neighbor list in dict key 'neighbors'
    
    >>> v = [[0, 0], [0, 1], [1, 1], [1, 0]]
    >>> t = triangulate({'vertices': v}, 'a0.2')
    >>> t['vertices'].tolist()
    [[0.0, 0.0], [0.0, 1.0], [1.0, 1.0], [1.0, 0.0], [0.5, 0.5], [0.0, 0.5], [0.5, 0.0], [1.0, 0.5], [0.5, 1.0]]
    >>> t['vertex_markers'].tolist()
    [[1], [1], [1], [1], [0], [1], [1], [1], [1]]
    >>> t['triangles'].tolist()
    [[7, 2, 4], [5, 0, 4], [4, 8, 1], [4, 1, 5], [4, 0, 6], [6, 3, 4], [4, 3, 7], [4, 2, 8]]

    .. plot:: plot/api_triangulate.py

    """
    opts = 'Qz{%s}' % opts

    tri = {translate_inv[_]: tri[_] for _ in tri}
    tri, _ = triang(tri, opts)
    tri = {translate_frw[_]: tri[_] for _ in tri}

    return tri
def convex_hull(pts):
    """
    Computes the convex hull enclosing `pts`.

    >>> pts = [[0, 0], [0, 1], [1, 1], [1, 0]]
    >>> segments = convex_hull(pts)
    >>> segments.tolist()
    [[3, 0], [2, 3], [1, 2], [0, 1]]

    .. plot:: plot/api_convex_hull.py

    """
    opts = 'Qzc'

    _in = {'pointlist': pts}
    _out, _vorout = triang(_in, opts)
    rslt = _out['segmentlist']

    return rslt
def delaunay(pts):
    """
    Computes the delaunay triangulation of points `pts`.

    >>> pts = [[0, 0], [0, 1], [0.5, 0.5], [1, 1], [1, 0]]
    >>> tri = delaunay(pts)
    >>> tri.tolist()
    [[1, 0, 2], [2, 4, 3], [4, 2, 0], [2, 3, 1]]

    .. plot:: plot/api_delaunay.py

    """
    opts = 'Qz'

    _in = {'pointlist': pts}
    _out, _vorout = triang(_in, opts)
    rslt = _out['trianglelist']

    return rslt