Re: [svg-developers] Re: SVG chart project

2008-12-30 Thread Jake Beard
On Wed, 31 Dec 2008 00:11:25 - Frank Bruder redu...@yahoo.de wrote: --- In svg-developers@yahoogroups.com, dakabbe daka...@... wrote: 1. I want to convert these charts in jpg/png without using batik (because I havent java on my server) ... is there any other command-line tool

Re: [svg-developers] google map into svg

2008-11-18 Thread Jake Beard
Lively Kernel does this: http://research.sun.com/projects/lively/index.xhtml Under More Complex Sample Widgets. (note that to get it to work in FF3, you need to go to use firebug to adjust the height on the main svg tag from 100% to 2000px, or however tall you want the main canvas area to be,

Re: [svg-developers] Re: google map into svg

2008-11-18 Thread Jake Beard
On Tue, Nov 18, 2008 at 5:34 PM, Robert Longson [EMAIL PROTECTED] wrote: --- In svg-developers@yahoogroups.com, Jake Beard [EMAIL PROTECTED] wrote: Lively Kernel does this: http://research.sun.com/projects/lively/index.xhtml Under More Complex Sample Widgets. (note that to get it to work

Re: [svg-developers] Re: other things you might not have the time for

2008-11-17 Thread Jake Beard
David, something that might be of interest to your project: http://www.stumbleupon.com/toolbar/#topic=Animationurl=http%25253A%25252F%25252Fwww.gskinner.com%25252Fblog%25252Fassets%25252FInteractiveElm.html A really beautiful example of animated tree budding, unfortunately implemented in flash.

Re: [svg-developers] svg online graphic editor designer

2008-11-05 Thread Jake Beard
Here's one: http://www.pilatinfo.org/english/svgdraw/index.htm There are several others in varying states of maturity, including one that comes with dojo: http://archive.dojotoolkit.org/nightly/dojotoolkit/dojox/sketch/tests/test_full.html Jake On Wed, Nov 5, 2008 at 4:51 PM, Ben [EMAIL

Re: [svg-developers] new SVG Editor

2008-11-03 Thread Jake Beard
Wow, very impressive! I like the pattern matching component that lets you transform paths into basic shapes. It also seems quite fast, certainly much faster than the other pure JavaScript-and-SVG editors I've seen. I'm looking forward to the live demo, Jake On Mon, Nov 3, 2008 at 7:15 PM, Tiago

Re: [svg-developers] Re: Things I'd program if I had the time

2008-10-27 Thread Jake Beard
One thing I've been curious about recently is whether Batik works on the Iced Tea JRE. This wouldn't affect the building of an applet viewer, but having the ability to bundle a JRE would be extremely important if one were to actually want to work on building a Batik-based SVG-viewer plugin. Jake

Re: [svg-developers] Things I'd program if I had the time

2008-10-26 Thread Jake Beard
+ An XHTML deploy script, which transforms XHTML documents to something even the Microsoft Internet Explorer can interpret correctly. There are two options. It can be transformed to correct HTML, or, if XML features like foreign namespaces are actually needed, to XHTML following the HTML

Re: [svg-developers] Preferred editing environments SVG et al

2008-10-10 Thread Jake Beard
, but it might be easier to just start from scratch. David - Original Message - From: Jake Beard To: svg-developers@yahoogroups.com Sent: Thursday, October 09, 2008 11:10 PM Subject: Re: [svg-developers] Preferred editing environments SVG et al FYI, I just tests Aptana with the embedded

Re: [svg-developers] Preferred editing environments SVG et al

2008-10-10 Thread Jake Beard
Sorry, forgot to link to GLIPS Graffiti: http://glipssvgeditor.sourceforge.net/ Jake On Fri, Oct 10, 2008 at 9:33 AM, Jake Beard [EMAIL PROTECTED] wrote: Here's another: http://www.pilatinfo.org/english/svgdraw/index.htm It's much harder to port C/C++ to JavaScript than it is to port Java

Re: [svg-developers] Preferred editing environments SVG et al

2008-10-09 Thread Jake Beard
A couple of comments: At the moment there is certainly no one-stop-shop IDE for SVG development. It may be conceptually useful, then, to separate development out into several tasks. This way, you can choose which tool is most appropriate for any given task. I would propose that SVG development

Re: [svg-developers] Preferred editing environments SVG et al

2008-10-09 Thread Jake Beard
FYI, I just tests Aptana with the embedded Gecko renderer on a compound XHTML-SVG document (.xhtml extension, so the Eclipse wouldn't get confused about the MIME type), and it totally worked. Nice little animated SVG prototype running right there in Eclipse :-) I'm quite pleased about this, as it

Re: [svg-developers] Re: Magic: SVG drag of Element using jquery svg is most simple

2008-10-09 Thread Jake Beard
On Thu, Oct 9, 2008 at 6:55 PM, Eugene Lazutkin [EMAIL PROTECTED] wrote: Regarding #1 --- both SVG and VML renderers are deemed production and fully supported. Silverlight is getting there and will be promoted to production in 1.3 unless some major bug will be discovered and not fixed in time

Re: [svg-developers] Magic: SVG drag of Element using jquery svg is most simple

2008-10-08 Thread Jake Beard
Cool. You might want to take a look at how dojox.gfx does it, for example, here: http://archive.dojotoolkit.org/nightly/dojotoolkit/dojox/gfx/demos/circles.html Important code: function makeCircleGrid(itemCount){ var minR = 10, maxR = surface_size.width / 3; for(var j = 0; j

Re: [svg-developers] Re: Magic: SVG drag of Element using jquery svg is most simple

2008-10-08 Thread Jake Beard
On Wed, Oct 8, 2008 at 9:02 PM, takpoli [EMAIL PROTECTED] wrote: Hi Jack, It looks cool. Questions: 1. Do you know what is the status of dojox.gfx? Could I use it for production yet? I use it in my research, and I expect it has so far done a very good job of satisfying my requirements.

[svg-developers] Is there a way to disable opera's default Ctrl+Click = zoom behaviour?

2008-10-05 Thread Jake Beard
It appears that the default UI behaviour for a Ctrl+left-click on an SVG image in opera is to zoom in a notch. I'd like to use Ctrl+left-click in my application, and so I'm wondering if there is a way to disable this default behaviour. I'd appreciate any guidance anyone can offer. Thanks, Jake

Re: [svg-developers] Re: efficient method for calculating min distance from point to curve

2008-09-12 Thread Jake Beard
in the community web site? - Original Message - From: Jake Beard To: svg-developers@yahoogroups.com svg-developers%40yahoogroups.com Sent: Thursday, September 11, 2008 3:55 PM Subject: Re: [svg-developers] Re: efficient method for calculating min distance from point to curve Samy, Thank you

Re: [svg-developers] Re: efficient method for calculating min distance from point to curve

2008-09-11 Thread Jake Beard
in JavaScript. The time depends on the number of points and the accuracy depends on the density of the points. There is no better way to estimate the time, but just by experimenting. Cheers, Samy --- In svg-developers@yahoogroups.com svg-developers%40yahoogroups.com, Jake Beard [EMAIL PROTECTED

[svg-developers] efficient method for calculating min distance from point to curve

2008-09-10 Thread Jake Beard
I have what I think must be a fairly common requirement: I need an efficient method for calculating the minimum distance from a point to a curve. It would be possible to solve this problem numerically in JavaScript, but I'm not confident that JavaScript would be efficient enough, and I'm wondering

[svg-developers] how to draw splines with an arbitrary number of control points

2008-09-01 Thread Jake Beard
Hello, I'm wondering if it's possible to draw splines that have an arbitrary number of control points in SVG? It seems this is not built into the SVG spec, and thus, to be achieved, one would need to express the n-ary spline in terms of quadratic and cubic splines. It seems like this is therefore

Re: [svg-developers] my academic project SV

2008-02-16 Thread Jake Beard
Very cool! Jake On Feb 16, 2008 5:20 AM, DamianZ [EMAIL PROTECTED] wrote: I invite you to visit my proyect and see the power of SVG. View this example http://www.wikidraw.com.ar/Vinculo?uri=http://en.wikipedia.org/wiki/SVG WikiDraw is a mind map or mental map of the content of wikipedia

Re: [svg-developers] [ANN] Lily, SVG visual programming language released

2008-01-27 Thread Jake Beard
Very intriguing! I will be sure to take a closer look at this in the future. Thanks. Jake On Jan 27, 2008 8:18 PM, bill.orcutt [EMAIL PROTECTED] wrote: Hi All- I'm happy to announce that the first beta release of Lily, an SVG/Javascript based visual programming environment for Mozilla,