pptk icon indicating copy to clipboard operation
pptk copied to clipboard

API to plot in real time?

Open soulslicer opened this issue 6 years ago • 1 comments

Is there an API to plot a set of points in real time? Basically I guess I don't want to kill the viewer, but rather add a new set of points and swap the buffer

soulslicer avatar Jan 14 '20 22:01 soulslicer

You can invoke load() method instead.

Example:

points = [[1, 1, 1], [1, 1, 2]]
v = pptk.viewer(points)
points.append([1, 1, 3])
v.load(points)

Merevoli-DatLuu avatar Jan 16 '21 08:01 Merevoli-DatLuu