The SVGGeometryElement interface represents SVG elements whose is defined by geometry with an equivalent path, and which can filled and stroked. This includes paths and the basic shapes.
The SVGGeometryElement interface represents SVG elements whose is defined by geometry with an equivalent path, and which can filled and stroked. This includes paths and the basic shapes.
(get-point-at-length this & args)
Method.
The SVGGeometryElement.getPointAtLength() method returns the at a given distance along the path.
DOMPoint someElement.getPointAtLength(float distance);
See also: https://developer.mozilla.org/en-US/docs/Web/API/SVGGeometryElement/getPointAtLength
Method. The SVGGeometryElement.getPointAtLength() method returns the at a given distance along the path. `DOMPoint someElement.getPointAtLength(float distance);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SVGGeometryElement/getPointAtLength`
(get-total-length this)
Method.
The SVGGeometryElement.getTotalLength() method returns the user computed value for the total length of the path in user units.
float someElement.getTotalLength();
See also: https://developer.mozilla.org/en-US/docs/Web/API/SVGGeometryElement/getTotalLength
Method. The SVGGeometryElement.getTotalLength() method returns the user computed value for the total length of the path in user units. `float someElement.getTotalLength();` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SVGGeometryElement/getTotalLength`
(is-point-in-fill this & args)
Method.
The SVGGeometryElement.isPointInFill() method determines whether
given point is within the fill shape of an element. Normal hit
rules apply; the value of the pointer-events
property on the
determines whether a point is considered to be within the fill.
point argument is interpreted as a point in the local coordiante
of the element.
boolean someElement.isPointInFill(DOMPointInit point);
See also: https://developer.mozilla.org/en-US/docs/Web/API/SVGGeometryElement/isPointInFill
Method. The SVGGeometryElement.isPointInFill() method determines whether given point is within the fill shape of an element. Normal hit rules apply; the value of the `pointer-events` property on the determines whether a point is considered to be within the fill. point argument is interpreted as a point in the local coordiante of the element. `boolean someElement.isPointInFill(DOMPointInit point);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SVGGeometryElement/isPointInFill`
(is-point-in-stroke this & args)
Method.
The SVGGeometryElement.isPointInStroke() method determines whether
given point is within the stroke shape of an element. Normal
testing rules apply; the value of the pointer-events
property
the element determines whether a point is considered to be within
stroke. The point argument is interpreted as a point in the local
system of the element.
boolean someElement.isPointInStroke(DOMPointInit point);
See also: https://developer.mozilla.org/en-US/docs/Web/API/SVGGeometryElement/isPointInStroke
Method. The SVGGeometryElement.isPointInStroke() method determines whether given point is within the stroke shape of an element. Normal testing rules apply; the value of the `pointer-events` property the element determines whether a point is considered to be within stroke. The point argument is interpreted as a point in the local system of the element. `boolean someElement.isPointInStroke(DOMPointInit point);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SVGGeometryElement/isPointInStroke`
(path-length this)
Property.
[Read Only]
The SVGGeometryElement.pathLength property reflects the pathLength and returns the total length of the path, in user units.
var pathLength = someElement.pathLength;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SVGGeometryElement/pathLength
Property. [Read Only] The SVGGeometryElement.pathLength property reflects the pathLength and returns the total length of the path, in user units. `var pathLength = someElement.pathLength;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SVGGeometryElement/pathLength`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close