Re: Writing a simple vector graphics editor - how to implement?

2011-10-06 Thread Nick
Thanks a lot for the advices! Will do it that way ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Writing a simple vector graphics editor - how to implement?

2011-10-05 Thread Nick
Hello! I have a task to write a simple vector graphics editor, which has a window, a sheet (which can be bigger than the window), and some objects (triangles, rectangles) to be placed on this sheet (and then, edited, e.g. rotated, stretched) by their borders. I am a beginner in this kind of

Re: Writing a simple vector graphics editor - how to implement?

2011-10-05 Thread Wim Lewis
On 5 Oct 2011, at 12:39 PM, Nick wrote: I have a task to write a simple vector graphics editor, which has a window, a sheet (which can be bigger than the window), and some objects [...] I need an advice how would experienced developers implement this basic functionality. [] What I

Re: Writing a simple vector graphics editor - how to implement?

2011-10-05 Thread Jens Alfke
On Oct 5, 2011, at 12:39 PM, Nick wrote: I have a task to write a simple vector graphics editor, which has a window, a sheet (which can be bigger than the window), and some objects (triangles, rectangles) to be placed on this sheet (and then, edited, e.g. rotated, stretched) by their

Re: Writing a simple vector graphics editor - how to implement?

2011-10-05 Thread Richard Somers
On Oct 5, 2011, at 1:39 PM, Nick wrote: I have a task to write a simple vector graphics editor, which has a window, a sheet (which can be bigger than the window), and some objects (triangles, rectangles) to be placed on this sheet (and then, edited, e.g. rotated, stretched) by their

Re: Writing a simple vector graphics editor - how to implement?

2011-10-05 Thread Conrad Shultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 10/5/11 12:39 PM, Nick wrote: I am a beginner in this kind of programs (usually I ended up with placing few buttons/standard Cocoa controls and implemented rather low level logic of the application). I need an advice how would experienced