Skip to content

signed_distance_polygon

signed_distance_polygon(P, V)

Signed distance from a set of points to a given polygon

Parameters:

Name Type Description Default
P numpy double array

Matrix of query point coordinates

required
V numpy double array

Matrix of polyline vertex positions in order

required

Returns:

Name Type Description
S numpy double array

Vector of signed distances from each query point to the polyline

Notes

This is lifted from https://www.shadertoy.com/view/wdBXRW

Examples:

TODO

Source code in src/gpytoolbox/signed_distance_polygon.py
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
def signed_distance_polygon(P,V):
    """Signed distance from a set of points to a given polygon

    Parameters
    ----------
    P : numpy double array
        Matrix of query point coordinates
    V : numpy double array
        Matrix of polyline vertex positions in order

    Returns
    -------
    S : numpy double array  
        Vector of signed distances from each query point to the polyline

    Notes
    -----
    This is lifted from https://www.shadertoy.com/view/wdBXRW

    Examples
    --------
    TODO
    """
    n = V.shape[0]
    # vectorized dot product
    d = np.sum( (P - np.tile(V[0,:],(P.shape[0],1)))*(P - np.tile(V[0,:],(P.shape[0],1))) ,axis=1)
    s = 1.0
    for i in range(0,n):
        if i==0:
            j = n-1
        else:
            j = i-1
        e = V[j,:] - V[i,:]
        w = (P - np.tile(V[i,:],(P.shape[0],1)))
        dotwe = np.sum( w*np.tile(e,(P.shape[0],1)) ,axis=1)
        dotee = np.tile((e[0]**2) + (e[1]**2),(P.shape[0]))
        b = w - np.tile(e,(P.shape[0],1))*np.tile(np.array([np.clip( dotwe/dotee ,0.0,1.0)]).T,(1,2))
        d = np.minimum(d,np.sum( b*b ,axis=1))    
        cond = np.array([ P[:,1]>=V[i,1], P[:,1]<=V[j,1], (e[0]*w[:,1])>(e[1]*w[:,0]) ])
        all_true = cond.all(axis=0)
        all_false = (~cond).all(axis=0)
        change_sign = all_true + all_false
        s = ((-np.ones((P.shape[0])))**(change_sign))*s
    return s*np.sqrt(d)