(points, point_)
| 111 | |
| 112 | # Function: Remove Point |
| 113 | def remove_point(points, point_): |
| 114 | mask = np.logical_or(points[:,0] != point_[0], points[:,1] != point_[1]) |
| 115 | mask = [item for item in mask] |
| 116 | coords = points[mask] |
| 117 | return coords |
| 118 | |
| 119 | ############################################################################ |
| 120 |