+ 2
The cx and cy in svg tag means what?
Svg tag
5 Respostas
+ 2
You use cx and cy to set center's coordinates of circular objects like ellipse and circle in svg...
+ 2
The coordinates of the center of the circle. If they are omitted, the circle's center is set to (0,0)
+ 1
hi kayla
+ 1
The CX is used to set the position of a circle or ellipse horizontally in SVG (that is where you want your circle or ellipse to be placed on the page from left to right)
Likewise the CY is used to set the position of a circle or ellipse vertically in SVG (that is where you want your circle or ellipse to be placed on the page from top to bottom of the page)
The "r" however determines the radius of a circle (that is how big or Small you want your drawn circle to be)
hope this helps...
+ 1
cx = circle x;
cy = circle y;
x axis is from left of screen to right, or left to right
y axis is from top to bottom, bottom to top
x is horizontal
y is vertical
x = longitude;
y = latitude;