You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I used triangle to make a triangulation of a rectangle (here, a square), using just the four corner points:
## make boundary of sheet
xyRectangle = np.array(((-1,-1), (-1,1), (1,1), (1,-1)))
## make triangulation
xy0 = xyRectangle
A = dict(vertices=xy0)
B = tr.triangulate(A, 'qa0.0003')
tr.compare(plt, A, B)
plt.show()
When I use only the q or a flags, it runs perfectly. However, when I try calculating the convex hull as well, using the c flag, it just crashes my Jupyter notebook kernel.
Is there some bug somewhere, or am I not using the flag correctly?
The text was updated successfully, but these errors were encountered:
I used triangle to make a triangulation of a rectangle (here, a square), using just the four corner points:
When I use only the
q
ora
flags, it runs perfectly. However, when I try calculating the convex hull as well, using thec
flag, it just crashes my Jupyter notebook kernel.Is there some bug somewhere, or am I not using the flag correctly?
The text was updated successfully, but these errors were encountered: