package js.html.svg
Available on js
SVGTransform
is the interface for one of the component transformations within anSVGTransformList
; thus, anSVGTransform
object corresponds to a single component (e.g.,scale(…)
ormatrix(…)
) within atransform
attribute.Documentation SVGTransform by Mozilla Contributors, licensed under CC-BY-SA 2.5.
See:
read only angle:Float
read only matrix:Matrix
read only type:Int
setMatrix (matrix:Matrix):Void
Throws:
null |
DOMError |
---|
setRotate (angle:Float, cx:Float, cy:Float):Void
Throws:
null |
DOMError |
---|
setScale (sx:Float, sy:Float):Void
Throws:
null |
DOMError |
---|
setSkewX (angle:Float):Void
Throws:
null |
DOMError |
---|
setSkewY (angle:Float):Void
Throws:
null |
DOMError |
---|
setTranslate (tx:Float, ty:Float):Void
Throws:
null |
DOMError |
---|
static inline read only SVG_TRANSFORM_MATRIX:Int = 1
static inline read only SVG_TRANSFORM_ROTATE:Int = 4
static inline read only SVG_TRANSFORM_SCALE:Int = 3
static inline read only SVG_TRANSFORM_SKEWX:Int = 5
static inline read only SVG_TRANSFORM_SKEWY:Int = 6
static inline read only SVG_TRANSFORM_TRANSLATE:Int = 2
static inline read only SVG_TRANSFORM_UNKNOWN:Int = 0
© 2005–2018 Haxe Foundation
Licensed under a MIT license.
https://api.haxe.org/js/html/svg/Transform.html