RE: [svg-developers] Thoughts on optimizing ASV rendering SVG with 5,000 elements

2006-02-22 Thread Peter Kalev
loper, SWF, LLC -Original Message- From: Sean [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 22, 2006 1:53 PM To: svg-developers@yahoogroups.com Subject: Re: [svg-developers] Thoughts on optimizing ASV rendering SVG with 5,000 elements I have a similar problem. I've developed a

Re: [svg-developers] Thoughts on optimizing ASV rendering SVG with 5,000 elements

2006-02-22 Thread Sean
I have a similar problem. I've developed an SVG front end for editing databases, IE only at this point. Drawback is that if the db is rather large, performance falls off fast. For instance, my svg when fully loaded is about 3.5 MB, which I don't think of as all that large. I make svg maps that

Re: [svg-developers] Thoughts on optimizing ASV rendering SVG with 5,000 elements

2006-02-22 Thread thomas . deweese
Hi, A single path with a thousand line segments (M x11,y11 L x12,y12 M x21, y21, L x22, y22, ...) will display/update in a small fraction of the time that a thousand line elements will (they will also take much less memory). Another trick is to replace the circle elements with a single pa

Re: [svg-developers] Thoughts on optimizing ASV rendering SVG with 5,000 elements

2006-02-22 Thread Sylvain Rouillard
Le Mercredi 22 Février 2006 17:25, run2bmi21 a écrit : > Hi, > > Does anyone have any hints on improving response times from ASV when > SVG file has about 5,000 elements? The elements are simple lines > (4,000) and circles (1,000). For every circle, there's a word or two > of associated text, pos

Re: [svg-developers] Thoughts on optimizing ASV rendering SVG with 5,000 elements

2006-02-22 Thread Holger Will
run2bmi21 schrieb: > Hi, > > Does anyone have any hints on improving response times from ASV when > SVG file has about 5,000 elements? The elements are simple lines > (4,000) and circles (1,000). For every circle, there's a word or two > of associated text, positioned just below the circle. > >