> Thanks Underflow, that's pretty much exactly what I did actually...
> except I was using lines instead of points and therefore needed a lot
> more iterations to get a decent circle. Good Idea! The only mistake
> you made was not putting the circle on top of the other points 🙂 (My
> data is very crowded)
Sounds like you may already have a solution, but if not, use trig
functions to sample as many points on the circle as you feel that you
need. 100 points will probably be good for a circle of radius of
diameter 30 pixels.
You asked how many points you can plot in a LV XY plot. The answer is
that the hard limit at the moment is 2 billion. Practically, you can't
plot that many because you will run out of memory first. With unlimited
memory, I'd guess you could plot 500 million byte sized integers without
a problem. Other datatypes take more memory and thus would run into the
memory limit sooner. People routinely plot millions of points coming
from DAQ cards.
Greg McKaskle