Comment #8 on issue 834 by [email protected]: hasattr(Triangle(*p), "bisectors") hangs
http://code.google.com/p/sympy/issues/detail?id=834
I think removing "@property" for most attributes in Triangle, Polygon and other classes of polygon.py is a good idea. The basic reason is properties disguise themselves as simple attributes. But actually they needs not very primitive calculations. A method indicates that it might be an expensive operation, and developers using the class will consider caching the value rather than fetching it again and again.
-- You received this message because you are subscribed to the Google Groups "sympy-issues" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy-issues?hl=en.
