- All Known Implementing Classes:
SVGOMAnimatedRect.AnimSVGRect
,SVGOMAnimatedRect.BaseSVGRect
,SVGOMRect
public interface SVGRect
Represents rectangular geometry.
Rectangles are defined as consisting of a (x,y) coordinate pair identifying a minimum X value, a minimum Y value, and a width and height, which are usually constrained to be non-negative.
-
Method Summary
Modifier and TypeMethodDescriptionfloat
The height.float
getWidth()
The width.float
getX()
The minimum X value.float
getY()
The minimum Y value.void
setHeight
(float height) Sets the height of the rectangle.void
setWidth
(float width) Sets the width of the rectangle.void
setX
(float x) Sets the minimum X value.void
setY
(float y) Sets the minimum Y value.
-
Method Details
-
getX
float getX()The minimum X value.- Returns:
- the minimum X value in user units.
-
setX
Sets the minimum X value.- Parameters:
x
- the minimum X value in user units.- Throws:
DOMException
- NO_MODIFICATION_ALLOWED_ERR if the rectangle corresponds to a read only attribute or when the object itself is read only.
-
getY
float getY()The minimum Y value.- Returns:
- the minimum Y value in user units.
-
setY
Sets the minimum Y value.- Parameters:
y
- the minimum Y value in user units.- Throws:
DOMException
- NO_MODIFICATION_ALLOWED_ERR if the rectangle corresponds to a read only attribute or when the object itself is read only.
-
getWidth
float getWidth()The width.- Returns:
- the width in user units.
-
setWidth
Sets the width of the rectangle.- Parameters:
width
- the width in user units.- Throws:
DOMException
- NO_MODIFICATION_ALLOWED_ERR if the rectangle corresponds to a read only attribute or when the object itself is read only.
-
getHeight
float getHeight()The height.- Returns:
- the height in user units.
-
setHeight
Sets the height of the rectangle.- Parameters:
height
- the height in user units.- Throws:
DOMException
- NO_MODIFICATION_ALLOWED_ERR if the rectangle corresponds to a read only attribute or when the object itself is read only.
-