SVGPoint
Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
Warning: SVGPoint
is deprecated.
Use DOMPoint
or DOMPointReadOnly
instead.
An SVGPoint
represents a 2D or 3D point in the SVG coordinate system.
Syntax
js
createSVGPoint()
Value
The returned value is an SVGPoint
object.
Example
js
// Create an SVGPoint in the user coordinate system
let s = document.getElementById("SVG-ElementID").createSVGPoint();
// Then, set the x and y values of the returned SVGPoint object
// (which is the variable `s`)
s.y = 10;
s.x = 10;
Browser compatibility
BCD tables only load in the browser