As Erik suggested you need three lines if the line follows the diagonal. But if you want to use two lines, each must cross one adjacent pair of sides only...
65667
Jonathan Chetwynd
j.chetwynd...
May 4, 2012 7:58 am
how to solve end point for Bézier given start point, control point & length? kind regards Jonathan Chetwynd jay@......
65668
Jonathan Chetwynd
j.chetwynd...
May 5, 2012 8:03 am
Given start point, control point(s) vector & length, how to solve end point for quadratic and cubic Bézier curves? Jonathan Chetwynd jay@......
65669
Arif Burhan
aburhan2000
May 12, 2012 3:52 pm
To see an example of a reflection in a puddle view: http://irony-maiden.com/SVG/Puddle.htm ( Best viewed in Mozilla Firefox or Seamonkey ) regards, ...
65671
Andrew Matseevsky
a_matseevsky
May 13, 2012 9:06 pm
________________________________ От: Jonathan Chetwynd <j.chetwynd@...> Кому: svg-developers@yahoogroups.com Отправлено:...
65672
royhoja
May 15, 2012 11:41 pm
Hi, I am trying to add current time to the svg file I have using Ecmascript. following is the code I have. Unfortunately its not working . can someone help me...
65673
Arif Burhan
aburhan2000
May 15, 2012 11:41 pm
I now have a Chrome / webkit compliant example of the puddle effect example below - see: Â Â Â Â Â Â Â Â http://irony-maiden.com/SVG/Cr-Puddle.htm [ Â Â all...
65674
David Dailey
ddailey@...
May 16, 2012 4:55 am
You've used document.write to try to insert SVG content. I think that will only work in HTML. For SVG, you'll have to use DOM methods to do that. There are a...
65675
Erik Dahlstrom
erida539
May 16, 2012 8:23 am
On Sun, 13 May 2012 01:54:18 +0200, Arif Burhan <aburhan2000@...> ... See e.g http://www.colorzilla.com/gradient-editor/ for something that will work...
65676
David Dailey
ddailey@...
May 16, 2012 9:57 am
I have put a video in an HTML5 document and have succeeded in having it clipped by an SVG clip-path (and also filtered) as follows: <style>video...
Dear All, I've tried to apply a drop-shadow filter, but encountered the following inheritance issue, see this small test case http://hroska.cz/other/filter.svg...
65679
Brian Birtles
brianskold
May 21, 2012 2:02 am
Hi Jan, ... This is according to the spec. Specifically, this part: "When applied to container elements such as ‘g’, the ‘filter’ property applies to...
65680
Jason
jtbarnabas
May 22, 2012 12:55 am
I have a project I'm working on. My goal is to display 18 images in a single HTML document in the same space. The first is just text and is put in using...
65681
svgdeveloper
May 22, 2012 12:55 am
Hello, I just joined your SVG group. I'm working on a web application which is based on SVG. I have a little problem concerning the rotate parameters of a text...
65682
yannick.bochatay@...
May 22, 2012 7:33 am
Hi, you'd better use the transform property of the SVG DOM elements. Here is a little function to get the angle properly :...
65683
th_w@...
th_w@ymail.com
May 22, 2012 8:25 am
... What exactly do you mean by this? You can create, modify, delete and insert nodes using the standard DOM methods. I'm not sure what's a good English...
65684
Andrew Shellshear
shellshear
May 27, 2012 4:15 am
Hello SVGers, The getBBox method (by design) doesn't take into account clipping. Is there a method that does, or failing that, has anyone written some...
65685
Robert Longson
longsonr
May 29, 2012 8:45 am
Andrew, You could get the bounding box of the clip path and then just work out the intersection of the two rectangles. See the answer here for more details ...
65686
Marty Sullivan
dark3251
May 29, 2012 2:37 pm
I'm not sure if it includes clip paths, but I've used the getCTM() method to return the SVGMatrix object associated with an animated element. I know it...
65687
David Dailey
ddailey@...
May 30, 2012 1:13 am
Hi Robert, Maybe I am not understanding, but consider two equivalent crescent shapes (or C's) that share a centroid but with one of them rotated 90 degrees....
65688
Robert Longson
longsonr
May 30, 2012 12:30 pm
... I know, but given SVG 1.1 gives no method to get the bounding box including clipping, my way gives you something that works in many simple cases. Best...
65689
svgdeveloper
May 31, 2012 12:52 am
Thanks a lot, Yannick! It works perfectly....
65690
Manfred Staudinger
staudinger_m...
May 31, 2012 10:57 am
Hi, Where to find the feature strings to test if the methods getScreenBBox(), getBBox(), getScreenCTM() are available? Looking also for scriptbased fallback...
65691
yannick.bochatay@...
May 31, 2012 11:49 am
Hi Manfred, getBBox and getScreenCTM are implemented in all modern browsers (IE>=9). Unfortunately there's no ideal workaround for getScreenBBox, as you can...
65692
Manfred Staudinger
staudinger_m...
May 31, 2012 10:34 pm
Hi Yannick, thanks for the fast answer: so the problem is reduced to getScreenBBox and I'll try your proposed getBoundingClientRect method. Do you know a ...
65693
Jason Barnabas
jtbarnabas
May 31, 2012 11:46 pm
From: "th_w@..." <th_w@...> ... Thank you. That is just the sort of thing I need. I understand the math and doing the JavaScript is no problem. ...
65694
yannick.bochatay@...
Jun 1, 2012 6:53 am
Hi Manfred, you only need to test if the method exists : var myElmt = document.getElementById('myElmt'); var box; if (myElmt.getScreenBBox) { box =...
65695
honyk
j.tosovsky
Jun 1, 2012 9:07 am
Dear All, I'd like to transform (rotate) my object with the filter applied to it, but I want to keep my filter without object's transformation. I ended up with...
65696
barkha
barkha_crazz...
Jun 1, 2012 2:06 pm
Dear All, I want to drag HTML Div Element from a list of Div elements & drop it as an image into the SVG element of SVG file that is embedded with the same...