>>>>> "Manuel" == Manuel Metz <[EMAIL PROTECTED]> writes:

    Manuel> John Hunter wrote:
    >>>>>>> "Manuel" == Manuel Metz <[EMAIL PROTECTED]> writes:
    >>
    Manuel> Hi, I just submitted a patch to sourceforge and also
    Manuel> attached it to this email:
    >>
    Manuel> The applied patch modifies the files axes.py and
    Manuel> collections.py.
    >>
    Manuel> I added a class StaredRegularPolyCollection() to
    Manuel> collections.py to create star-like regular Polygons.
    >>  This looks very useful -- thanks for the patch.  To questions:
    >> 
    >> What does the name "StaredRegularPolygon" mean?  I am having
    >> trouble figuring out the Stared part.

    Manuel> Argh - okay - this is a mistranslation from german to
    Manuel> english - sorry. I wanted to say "starlike". So probably
    Manuel> StarlikeRegularPolygon is a better name...

OK, I see.  Perhaps we should just call it a StarPolygonCollection
http://en.wikipedia.org/wiki/Star_polygon

Also, in your patch, unless I am missing something, it looks like you
could simply do something like

        scale = 0.5/math.sqrt(math.pi)  
        r = scale*ones(self.numsides*2)

rather than

+        r = 1.0/math.sqrt(math.pi)  # unit area
+        r = asarray( [r]*(self.numsides*2) ) 
+        for i in xrange(1,len(r),2):
+            r[i] *= 0.5

Ie, do everything in numerix, rather than in python.

When you get all of this incorporated, if you could send one patch
against svn that includes all of the changes I'll check it in (if
noone else has any corrections or comments).

Thanks again,
JDH

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Matplotlib-devel mailing list
Matplotlib-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-devel

Reply via email to