summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGPathElement.java
diff options
context:
space:
mode:
authorkitfox2007-04-21 17:10:11 +0200
committerkitfox2007-04-21 17:10:11 +0200
commit2e4be0cb0267ca728b4a8cefa9a80d7e916ea07f (patch)
tree3da5c0a19d0308dfebad2377c1e521504c524486 /src/main/java/org/w3c/dom/svg/SVGPathElement.java
parentUpdating web (diff)
downloadsvg-salamander-core-2e4be0cb0267ca728b4a8cefa9a80d7e916ea07f.tar.gz
svg-salamander-core-2e4be0cb0267ca728b4a8cefa9a80d7e916ea07f.tar.xz
svg-salamander-core-2e4be0cb0267ca728b4a8cefa9a80d7e916ea07f.zip
Restructuring content.
git-svn-id: https://svn.java.net/svn/svgsalamander~svn/trunk/svg-core@30 7dc7fa77-23fb-e6ad-8e2e-c86bd48ed22b
Diffstat (limited to 'src/main/java/org/w3c/dom/svg/SVGPathElement.java')
-rw-r--r--src/main/java/org/w3c/dom/svg/SVGPathElement.java39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/main/java/org/w3c/dom/svg/SVGPathElement.java b/src/main/java/org/w3c/dom/svg/SVGPathElement.java
deleted file mode 100644
index b5522ca..0000000
--- a/src/main/java/org/w3c/dom/svg/SVGPathElement.java
+++ /dev/null
@@ -1,39 +0,0 @@
-
-package org.w3c.dom.svg;
-
-import org.w3c.dom.events.EventTarget;
-
-public interface SVGPathElement extends
- SVGElement,
- SVGTests,
- SVGLangSpace,
- SVGExternalResourcesRequired,
- SVGStylable,
- SVGTransformable,
- EventTarget,
- SVGAnimatedPathData {
- public SVGAnimatedNumber getPathLength( );
-
- public float getTotalLength ( );
- public SVGPoint getPointAtLength ( float distance );
- public int getPathSegAtLength ( float distance );
- public SVGPathSegClosePath createSVGPathSegClosePath ( );
- public SVGPathSegMovetoAbs createSVGPathSegMovetoAbs ( float x, float y );
- public SVGPathSegMovetoRel createSVGPathSegMovetoRel ( float x, float y );
- public SVGPathSegLinetoAbs createSVGPathSegLinetoAbs ( float x, float y );
- public SVGPathSegLinetoRel createSVGPathSegLinetoRel ( float x, float y );
- public SVGPathSegCurvetoCubicAbs createSVGPathSegCurvetoCubicAbs ( float x, float y, float x1, float y1, float x2, float y2 );
- public SVGPathSegCurvetoCubicRel createSVGPathSegCurvetoCubicRel ( float x, float y, float x1, float y1, float x2, float y2 );
- public SVGPathSegCurvetoQuadraticAbs createSVGPathSegCurvetoQuadraticAbs ( float x, float y, float x1, float y1 );
- public SVGPathSegCurvetoQuadraticRel createSVGPathSegCurvetoQuadraticRel ( float x, float y, float x1, float y1 );
- public SVGPathSegArcAbs createSVGPathSegArcAbs ( float x, float y, float r1, float r2, float angle, boolean largeArcFlag, boolean sweepFlag );
- public SVGPathSegArcRel createSVGPathSegArcRel ( float x, float y, float r1, float r2, float angle, boolean largeArcFlag, boolean sweepFlag );
- public SVGPathSegLinetoHorizontalAbs createSVGPathSegLinetoHorizontalAbs ( float x );
- public SVGPathSegLinetoHorizontalRel createSVGPathSegLinetoHorizontalRel ( float x );
- public SVGPathSegLinetoVerticalAbs createSVGPathSegLinetoVerticalAbs ( float y );
- public SVGPathSegLinetoVerticalRel createSVGPathSegLinetoVerticalRel ( float y );
- public SVGPathSegCurvetoCubicSmoothAbs createSVGPathSegCurvetoCubicSmoothAbs ( float x, float y, float x2, float y2 );
- public SVGPathSegCurvetoCubicSmoothRel createSVGPathSegCurvetoCubicSmoothRel ( float x, float y, float x2, float y2 );
- public SVGPathSegCurvetoQuadraticSmoothAbs createSVGPathSegCurvetoQuadraticSmoothAbs ( float x, float y );
- public SVGPathSegCurvetoQuadraticSmoothRel createSVGPathSegCurvetoQuadraticSmoothRel ( float x, float y );
-}