[svg-developers] Re: SVG#, examples and interactivity

2005-02-06 Thread scasquiov
Thanks for the reply. I will probably need to use the transform functions but not just yet. Meanwhile, rendering was taking to long so I made a little digging :) ended up making a minor change with a performance gain of at least 500% in rendering my test SVG :) It would be great

[svg-developers] Re: SVG#, examples and interactivity

2005-02-06 Thread scasquiov
Hi, You need to reference the following dlls: SharpVectorBindings.dll SharpVectorCss.dll SharpVectorDom.dll SharpVectorObjectModel.dll SharpVectorRenderingEngine.dll SharpVectorScripting.dll SharpVectorXml.dll SharpZipLib.dll

[svg-developers] Re: SVG#, examples and interactivity

2005-02-06 Thread scasquiov
There's a conditional compilation constant named TEST in SVG#'s source code, I think if you build the project without it you won't need to reference nunit.framework.dll, otherwise you will. Regards, /FC thank for your reply. But are you sure I need to include nunit.framework.dll in my

RE: [svg-developers] Square as basic shape

2005-02-06 Thread Doug Schepers
Hi, Jerry- Jerrold Maddox wrote: | | NIce work on the regular polygons. They would be especially | useful for me in to use in patterns and as a way to do | tessellations and tiling. Yes, I can see how regular polygons, in combination with clipPath, could make some very cool tesslations.

Re: [svg-developers] Drag and Drop for groups

2005-02-06 Thread Burkhard Stollenwerk
Hello Doug, it looks pretty fine. But I have two problems. 1.)Not any group should be moved. 2.)I take the svg document by using PHP callback function. then SVG Document is undefined. The Onload function wouldn´t called. Any solution about this? Burkhard Stollenwerk - Original Message

RE: [svg-developers] Drag and Drop for groups

2005-02-06 Thread Doug Schepers
Hi, Burkhard- I don't understand your questions. Perhaps you misunderstood the intent of my sample. It's a very basic example of how to do drag-and-drop with groups. I made a point of commenting the code, so that anyone who wants to figure out how to adapt it to their own purposes can very

Re: [svg-developers] Drag and Drop for groups

2005-02-06 Thread Burkhard Stollenwerk
for example: script file: function ClickObj(evt) { } function MoveObj(evt) { } function OutClickObj(evt) { } getURL(stallp.php,callback_get_tiere); function callback_get_svg(urlRequestStatus) { new_node=cb_parse(urlRequestStatus); child=svgdoc.getElementById(map)

[svg-developers] callback PHP and javascript

2005-02-06 Thread Burkhard Stollenwerk
Hello, I ´ll drag and drop g objects. But how could I can take the javascript functions from the javascript code by using the PHP created. for example: script file: function ClickObj(evt) { } function MoveObj(evt) { } function OutClickObj(evt) { }

Re: [svg-developers] Drag and Drop for groups

2005-02-06 Thread Burkhard Stollenwerk
Thanks Doug, I ´ll try it again. But I think the problem is the callback codeloading . What do you think? Burkhard - Original Message - From: Doug Schepers [EMAIL PROTECTED] To: svg-developers@yahoogroups.com Sent: Sunday, February 06, 2005 8:26 PM Subject: RE: [svg-developers] Drag and