Subject: | New Feature |
I do not know if you are taking wishlists still or not. Here is a
function we have found useful in the graphics lab where I work:
Clear( void );
You use it to reset everything back to its initial value. It is useful
in such things as GD::Polygon where it would remove all points and reset
the polygon's original state. It could also be used in the other GD.pm
areas to do the same thing. Presently I do the following:
while( $poly->length > -1 ){ $poly->deletePt(0); }
Which does pretty much the same thing. So this is a convinence routine
really but it does come in handy. It makes it so you can easily reuse
your originally created polygon.
Just a wishlist item. But I will say pretty please if you wish. :-)