Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: RFC: A Tk module to simplify drawing - Tk::Draw

by liverpole (Monsignor)
on Dec 09, 2009 at 17:42 UTC ( [id://811981]=note: print w/replies, xml ) Need Help??


in reply to RFC: A Tk module to simplify drawing - Tk::Draw

Thanks for all your comments.

I have requested the namespace Tk::Canvas::Draw, which I agree seems like the best choice.

zentara:  Certainly bezier lines would be a good addition; I'll plan to include them soon.  As far as saving data for later, you could do that very easily with use Storable, so I didn't explicitly provide the capability.  And when you say:

    "...an eraser function for the lines"

You do realize, don't you, that the IDs of all lines/shapes drawn are passed to the results subroutine?  Thus, deleting those shapes is as easy as:

my $o_obj = new Tk::Draw($c1, \&done_drawing, $h_opts); sub done_drawing { my ($o_obj, $a_points, $a_ids) = @_; map { $o_obj->canvas->delete($_) } @a_ids; }

But perhaps I'll simplify that further, and provide a delete_shapes method to the object.

hangon:  Thanks for confirming the name (Tk::Canvas::Draw) that I was considering as an alternative for the module.

As for your two specific suggestions, plugins and "snapping points to a shape", if you wouldn't mind providing me with more details, or even some example code, I'd be more than happy to consider both of them.


s''(q.S:$/9=(T1';s;(..)(..);$..=substr+crypt($1,$2),2,3;eg;print$..$/

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://811981]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (6)
As of 2024-04-19 07:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found