-
Hi Marco! When I attempt to pass it a numpy array of 3D points, it doesn't draw anything on the renderer and when I query the
Any idea why I could be getting this behaviour? Do I have to do something to the points beforehand? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 10 replies
-
Hi Mr. J :) from vedo import *
test_points = np.array([
[-1.45738758, -1.81266949, 0.08192889],
[-1.38937994, 0.885967 , 0.08192889],
[-1.38861339, 0.88480673, 0.08192889],
[ 1.23244707, -1.9349347 , 0.08192889],
[ 1.32785031, 0.82507669, 0.08192889],
])
spl = ConvexHull(test_points).lw(1)
show(spl, axes=1) |
Beta Was this translation helpful? Give feedback.
-
you should use
No! |
Beta Was this translation helpful? Give feedback.
you should use
delaunay2D()
!No!
Line
generates the line in the same order you give the points it joins.