Package org.apache.batik.anim.dom
Class SVGPathSupport
- java.lang.Object
-
- org.apache.batik.anim.dom.SVGPathSupport
-
public class SVGPathSupport extends java.lang.Object
The class provides support for the SVGPath interface.- Version:
- $Id: SVGPathSupport.java 1808001 2017-09-11 09:51:29Z ssteiner $
-
-
Constructor Summary
Constructors Constructor Description SVGPathSupport()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static int
getPathSegAtLength(SVGOMPathElement path, float x)
To implementSVGPathElement.getPathSegAtLength(float)
.static org.w3c.dom.svg.SVGPoint
getPointAtLength(SVGOMPathElement path, float distance)
To implementSVGPathElement.getPointAtLength(float)
.static float
getTotalLength(SVGOMPathElement path)
To implementSVGPathElement.getTotalLength()
.
-
-
-
Method Detail
-
getTotalLength
public static float getTotalLength(SVGOMPathElement path)
To implementSVGPathElement.getTotalLength()
.
-
getPathSegAtLength
public static int getPathSegAtLength(SVGOMPathElement path, float x)
To implementSVGPathElement.getPathSegAtLength(float)
.
-
getPointAtLength
public static org.w3c.dom.svg.SVGPoint getPointAtLength(SVGOMPathElement path, float distance)
To implementSVGPathElement.getPointAtLength(float)
.
-
-