haXe API Documentation
Back | Index
extern class js.html.svg.PathElement
extends Element
Available in js
The SVGPathElement interface corresponds to the <path> element.

Documentation for this class was provided by MDN.
var animatedNormalizedPathSegList(default,null) : PathSegList
var animatedPathSegList(default,null) : PathSegList
var normalizedPathSegList(default,null) : PathSegList
var pathLength(default,null) : AnimatedNumber
Corresponds to attribute pathLength on the given <path> element.
var pathSegList(default,null) : PathSegList
function createSVGPathSegArcAbs(x : Float, y : Float, r1 : Float, r2 : Float, angle : Float, largeArcFlag : Bool, sweepFlag : Bool) : PathSegArcAbs
function createSVGPathSegArcRel(x : Float, y : Float, r1 : Float, r2 : Float, angle : Float, largeArcFlag : Bool, sweepFlag : Bool) : PathSegArcRel
function createSVGPathSegClosePath() : PathSegClosePath
function createSVGPathSegCurvetoCubicAbs(x : Float, y : Float, x1 : Float, y1 : Float, x2 : Float, y2 : Float) : PathSegCurvetoCubicAbs
function createSVGPathSegCurvetoCubicRel(x : Float, y : Float, x1 : Float, y1 : Float, x2 : Float, y2 : Float) : PathSegCurvetoCubicRel
function createSVGPathSegCurvetoCubicSmoothAbs(x : Float, y : Float, x2 : Float, y2 : Float) : PathSegCurvetoCubicSmoothAbs
function createSVGPathSegCurvetoCubicSmoothRel(x : Float, y : Float, x2 : Float, y2 : Float) : PathSegCurvetoCubicSmoothRel
function createSVGPathSegCurvetoQuadraticAbs(x : Float, y : Float, x1 : Float, y1 : Float) : PathSegCurvetoQuadraticAbs
function createSVGPathSegCurvetoQuadraticRel(x : Float, y : Float, x1 : Float, y1 : Float) : PathSegCurvetoQuadraticRel
function createSVGPathSegCurvetoQuadraticSmoothAbs(x : Float, y : Float) : PathSegCurvetoQuadraticSmoothAbs
function createSVGPathSegCurvetoQuadraticSmoothRel(x : Float, y : Float) : PathSegCurvetoQuadraticSmoothRel
function createSVGPathSegLinetoAbs(x : Float, y : Float) : PathSegLinetoAbs
function createSVGPathSegLinetoHorizontalAbs(x : Float) : PathSegLinetoHorizontalAbs
function createSVGPathSegLinetoHorizontalRel(x : Float) : PathSegLinetoHorizontalRel
function createSVGPathSegLinetoRel(x : Float, y : Float) : PathSegLinetoRel
function createSVGPathSegLinetoVerticalAbs(y : Float) : PathSegLinetoVerticalAbs
function createSVGPathSegLinetoVerticalRel(y : Float) : PathSegLinetoVerticalRel
function createSVGPathSegMovetoAbs(x : Float, y : Float) : PathSegMovetoAbs
function createSVGPathSegMovetoRel(x : Float, y : Float) : PathSegMovetoRel
function getPathSegAtLength(distance : Float) : Int
function getPointAtLength(distance : Float) : Point
function getTotalLength() : Float
Back | Index