ropeypopey opened this issue on Aug 31, 2006 · 36 posts
Fazzel posted Sat, 02 September 2006 at 11:41 PM
As written, this doesn't seen to work for me:
k = Max(k * (Diam - k, 0) # avoid negative numbers ;-)
I finally figured out you are missing an inner closing brace:
k = Max(k * (Diam - k), 0) # avoid negative numbers ;-)
____________^
(I assume just a typo in your post, because I guess the script worked on your computer)