SVG contains the following set of basic shape elements:
Mathematically, these shape elements are equivalent to a 'path' element that would construct the same shape. The basic shapes may be stroked, and filled. All of the properties available for 'path' elements also apply to the basic shapes.
The 'rect' element defines a rectangle which is axis-aligned with the current user coordinate system. Rounded rectangles can be achieved by setting appropriate values for attributes 'rx' and 'ry'.
Attribute definitions:
The x-axis coordinate of the side of the rectangle which has the smaller x-axis coordinate value in the current user coordinate system. The lacuna value is '0'.
Animatable: yes.
The y-axis coordinate of the side of the rectangle which has the smaller y-axis coordinate value in the current user coordinate system. The lacuna value is '0'.
Animatable: yes.
The width of the rectangle. A negative value is unsupported. A value of zero disables rendering of the element. The lacuna value is '0'.
Animatable: yes.
The height of the rectangle. A negative value is unsupported. A value of zero disables rendering of the element. The lacuna value is '0'.
Animatable: yes.
For rounded rectangles, the x-axis radius of the ellipse used to round off the corners of the rectangle. A negative value is unsupported. See the notes below about what happens if the attribute is not specified.
Animatable: yes.
For rounded rectangles, the y-axis radius of the ellipse used to round off the corners of the rectangle. A negative value is unsupported. See the notes below about what happens if the attribute is not specified.
Animatable: yes.
See attribute definition for description.
Animatable: yes.
See definition.
If a properly specified value is provided for 'rx' but not for 'ry', then the user agent must process the 'rect' element with the effective value for 'ry' as equal to 'rx'. If a properly specified value is provided for 'ry' but not for 'rx', then the user agent must process the 'rect' element with the effective value for 'rx' as equal to 'ry'. If neither 'rx' nor 'ry' has a properly specified value, then the user agent must process the 'rect' element as if no rounding had been specified, resulting in square corners. If 'rx' is greater than half of the width of the rectangle, then the user agent must process the 'rect' element with the effective value for 'rx' as half of the width of the rectangle. If 'ry' is greater than half of the height of the rectangle, then the user agent must process the 'rect' element with the effective value for 'ry' as half of the height of the rectangle.
A 'rect' element, taking its rounded corners into account, must be rendered in a way that produces the same result as if the following outline were specified instead (note: all coordinate and length values are first converted into user space coordinates according to Units):
In case the 'rx' and 'ry' attributes are not specified or set to a value of zero, the elliptical arc commands should be omitted.
Example 09_01 shows a rectangle with sharp corners. The 'rect' element is filled with yellow and stroked with navy.
Example 09_02 shows two rounded rectangles. The 'rx' specifies how to round the corners of the rectangles. Note that since no value has been specified for the 'ry' attribute, it will be assigned the same value as the 'rx' attribute.
The 'circle' element defines a circle based on a center point and a radius.
Within the current user coordinate system, stroking operations on a circle begin at the point (cx+r,cy) and then proceed through the points (cx,cy+r), (cx-r,cy), (cx,cy-r) and finally back to (cx+r,cy). For stroking operations, there is only one line segment which has its beginning joined to its end.
Attribute definitions:
The x-axis coordinate of the center of the circle. The lacuna value is '0'.
Animatable: yes.
The y-axis coordinate of the center of the circle. The lacuna value is '0'.
Animatable: yes.
The radius of the circle. A negative value is unsupported. A value of zero disables rendering of the element. The lacuna value is '0'.
Animatable: yes.
See attribute definition for description.
Animatable: yes.
See definition.
Example circle01 consists of a 'circle' element that is filled with red and stroked with blue.
The 'ellipse' element defines an ellipse which is axis-aligned with the current user coordinate system based on a center point and two radii.
Within the current user coordinate system, stroking operations on a ellipse begin at the point (cx+rx,cy) and then proceed through the points (cx,cy+ry), (cx-rx,cy), (cx,cy-ry) and finally back to (cx+rx,cy). For stroking operations, there is only one line segment which has its beginning joined to its end.
Attribute definitions:
The x-axis coordinate of the center of the ellipse. The lacuna value is '0'.
Animatable: yes.
The y-axis coordinate of the center of the ellipse. The lacuna value is '0'.
Animatable: yes.
The x-axis radius of the ellipse. A negative value is unsupported. A value of zero disables rendering of the element. The lacuna value is '0'.
Animatable: yes.
The y-axis radius of the ellipse. A negative value is unsupported. A value of zero disables rendering of the element. The lacuna value is '0'.
Animatable: yes.
See attribute definition for description.
Animatable: yes.
See definition.
Example 09_04 below specifies the coordinates of the two ellipses in the user coordinate system established by the 'viewBox' attribute on the 'svg' element and the 'transform' attribute on the 'g' and 'ellipse' elements. Both ellipses use the lacuna value of zero for the 'cx' and 'cy' attributes (the center of the ellipse). The second ellipse is rotated.
The 'line' element defines a line segment that starts at one point and ends at another.
Attribute definitions:
The x-axis coordinate of the start of the line. The lacuna value is '0'.
Animatable: yes.
The y-axis coordinate of the start of the line. The lacuna value is '0'.
Animatable: yes.
The x-axis coordinate of the end of the line. The lacuna value is '0'.
Animatable: yes.
The y-axis coordinate of the end of the line. The lacuna value is '0'.
Animatable: yes.
See attribute definition for description.
Animatable: yes.
See definition.
A 'line' element must be rendered in a way that produces the same result as if the following path were specified instead (note: all coordinate and length values are first converted into user space coordinates according to Units):
Because 'line' elements are single lines and thus are geometrically one-dimensional, they have no interior; thus, 'line' elements are never filled (see the 'fill' property).
Example 09_05 below specifies the coordinates of the five lines in the user coordinate system established by the 'viewBox' attribute on the 'svg' element. The lines have different thicknesses.
The 'polyline' element defines a set of connected straight line segments. Typically, 'polyline' elements define open shapes.
Attribute definitions:
The points that make up the polyline. All coordinate values are in the user coordinate system.
An empty attribute value (points="") disables rendering of the element. The lacuna value is the empty string.
Animatable: yes.
See attribute definition for description.
Animatable: yes.
See definition.
If an odd number of coordinates is provided, then the element is treated as if the attribute had not been specified.
A 'polyline' element must be rendered in a way that produces the same result as if the following path were specified instead:
Example 09_06 below specifies a polyline in the user coordinate system established by the 'viewBox' attribute on the 'svg' element.
The 'polygon' element defines a closed shape consisting of a set of connected straight line segments.
Attribute definitions:
The points that make up the polygon. All coordinate values are in the user coordinate system.
An empty attribute value (points="") disables rendering of the element. The lacuna value is the empty string.
Animatable: yes.
See attribute definition for description.
Animatable: yes.
See definition.
If an odd number of coordinates is provided in the 'points' attribute, then it is treated as an unsupported value.
A 'polygon' element must be rendered in a way that produces the same result as if the following path were specified instead:
Example 09_07 below specifies two polygons (a star and a hexagon) in the user coordinate system established by the 'viewBox' attribute on the 'svg' element.
The following is an EBNF grammar for <points-data> values on 'polyline' and 'polygon' elements [EBNF]:
points-data: wsp* coordinate-pairs? wsp* coordinate-pairs: coordinate-pair | coordinate-pair comma-wsp coordinate-pairs coordinate-pair: coordinate comma-wsp coordinate coordinate: number number: sign? integer-constant | sign? floating-point-constant comma-wsp: (wsp+ comma? wsp*) | (comma wsp*) comma: "," integer-constant: digit-sequence floating-point-constant: fractional-constant exponent? | digit-sequence exponent fractional-constant: digit-sequence? "." digit-sequence | digit-sequence "." exponent: ( "e" | "E" ) sign? digit-sequence sign: "+" | "-" digit-sequence: digit | digit digit-sequence digit: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" wsp: (#x20 | #x9 | #xD | #xA)+