| |
- svgen.element.Element(builtins.object)
-
- Circle
class Circle(svgen.element.Element) |
|
Circle(circle: svgen.cartesian.circle.Circle, attrs: Union[Dict[str, Union[str, int, float, bool]], List[svgen.attribute.Attribute], svgen.attribute.Attribute] = None, **extra) -> None
A class for circle elements. |
|
- Method resolution order:
- Circle
- svgen.element.Element
- builtins.object
Methods defined here:
- __eq__(self, other: object) -> bool
- Determine if this circle is equivalent to another.
- __init__(self, circle: svgen.cartesian.circle.Circle, attrs: Union[Dict[str, Union[str, int, float, bool]], List[svgen.attribute.Attribute], svgen.attribute.Attribute] = None, **extra) -> None
- Construct a new circle element.
- scale(self, scale: float = 1.0) -> 'Circle'
- Scale this circle's radius.
- translate(self, move: svgen.cartesian.mutate.Translation) -> 'Circle'
- Move this circle by a given translation.
Static methods defined here:
- centered(box: Union[svgen.attribute.viewbox.ViewBox, svgen.cartesian.rectangle.Rectangle], radius_scale: float = 1.0, color: Union[str, svgen.color.hsl.Hsl, svgen.color.rgb.Rgb, ForwardRef('Color')] = None, prop: str = 'fill', **kwargs) -> 'Circle'
- From a viewBox, create a circle that is centered with an appropriately
scaled radius.
- create(center: svgen.cartesian.point.Point, radius: float, color: Union[str, svgen.color.hsl.Hsl, svgen.color.rgb.Rgb, ForwardRef('Color')] = None, prop: str = 'fill', **kwargs) -> 'Circle'
- Create a circle from a point and radius.
Readonly properties defined here:
- center
- Get this circle's center.
- radius
- Get this circle's radius.
Data and other attributes defined here:
- __hash__ = None
Methods inherited from svgen.element.Element:
- __getitem__(self, tag: str) -> str
- Get an attibute as a string.
- __setitem__(self, tag: str, value: Union[str, int, float, bool]) -> None
- Allow adding attributes dict-set style.
- add_attribute(self, attr: svgen.attribute.Attribute, strict: bool = True) -> 'Element'
- Add an attribute to this element.
- add_class(self, *data: str) -> None
- Add a class string.
- closing(self, indent: int = 0) -> str
- Create a string to close this element.
- encode(self, output: <class 'TextIO'>, quote: str = '"', indent: int = 0, newlines: bool = True) -> None
- Encode this element to a string stream.
- encode_str(self, quote: str = '"', indent: int = 0, newlines: bool = True) -> str
- Encode this element to a string.
Readonly properties inherited from svgen.element.Element:
- style
- Get the style attribute for this element.
- xml
- Get this element as an xml element.
Data descriptors inherited from svgen.element.Element:
- __dict__
- dictionary for instance variables
- __weakref__
- list of weak references to the object
| |