BruceSherwood / vpython-wx

VPython based on wxPython
Other
70 stars 38 forks source link

thick curve bug #63

Closed BruceSherwood closed 10 years ago

BruceSherwood commented 10 years ago

There is a problem with the thick version of the curve object:

y = 1 # if y is 0 and radius is nonzero, nothing is displayed c = curve(pos=[(0,y,0)], radius=0.2) c.append(pos=(0,y,0)) c.append(pos=(1,y,0))

Evidently the thick version of the curve object needs to discard duplicate initial points.

BruceSherwood commented 10 years ago

Fixed by commit of 2014 June 28 to eliminate initial duplicate points of a curve (curve.cpp).