From: Jeremy S. <rez...@ma...> - 2005-12-19 23:48:43
|
I'm working on a program that draws a continuous curve, and when the number of points on that curve exceeds 1024, a new curve is drawn at the end of the old curve. How many 1024-point curves can visual python manage before crashing? -Jeremy S. On Dec 19, 2005, at 2:01 PM, Bruce Sherwood wrote: > curve now always plots final point (so there isn't a gap at the end), > > The gap at the end of a curve only showed up with curves longer > than 1024 points. For such curves, Visual uses only every Nth point > to display the curve, up to a total of 1024 displayed points. The > bug was that the last of these selected points wasn't always the > last point in the full curve, creating a gap at the end of the > displayed object. > > Bruce Sherwood |