svgen.element.rect
index
/home/vkottler/src/vkottler/workspace/svgen/svgen/element/rect.py

svgen - A module for the 'rect' element.

 
Classes
       
svgen.element.Element(builtins.object)
Rect

 
class Rect(svgen.element.Element)
    Rect(rect: svgen.cartesian.rectangle.Rectangle, rx: float = 0.0, ry: float = 0.0, attrs: Union[Dict[str, Union[str, int, float, bool]], List[svgen.attribute.Attribute], svgen.attribute.Attribute] = None, **extra) -> None
 
A class for rect elements.
 
 
Method resolution order:
Rect
svgen.element.Element
builtins.object

Methods defined here:
__eq__(self, other: object) -> bool
Determine if this rectangle is equivalent to another.
__init__(self, rect: svgen.cartesian.rectangle.Rectangle, rx: float = 0.0, ry: float = 0.0, attrs: Union[Dict[str, Union[str, int, float, bool]], List[svgen.attribute.Attribute], svgen.attribute.Attribute] = None, **extra) -> None
Construct a new rect element.
corner(self, corner: svgen.cartesian.rectangle.corner.RectangleCorner) -> svgen.cartesian.point.Point
Get a specific corner of a rectangle.
grid(self, columns: int, rows: int) -> svgen.cartesian.rectangle.grid.RectangleGrid
Create a grid from this rectangle.
scale(self, width_scale: float = 1.0, height_scale: float = 1.0) -> 'Rect'
Scale this rectangle's width and height.
scale_whole(self, scalar: float = 1.0) -> 'Rect'
Scale width and height of this rectangle equally.
to_square(self, scale: float = 1.0) -> 'Rect'
Convert this rectangle to a square.
translate(self, move: svgen.cartesian.mutate.Translation) -> 'Rect'
Move this rectangle by a given translation.

Static methods defined here:
centered(box: Union[svgen.attribute.viewbox.ViewBox, svgen.cartesian.rectangle.Rectangle], width_scale: float = 1.0, height_scale: float = 1.0, color: Union[str, svgen.color.hsl.Hsl, svgen.color.rgb.Rgb, ForwardRef('Color')] = None, prop: str = 'fill', square: bool = False, **kwargs) -> 'Rect'
From a viewBox, created a centered-and-scaled rectangle.
create(width: float, height: float, point: svgen.cartesian.point.Point = Point(x=0.0, y=0.0, center=False, idx=-1), **kwargs) -> 'Rect'
Create a rectangle element.

Readonly properties defined here:
bottom_left
Get the bottom left corner point.
bottom_right
Get the bottom right corner point.
height
Get the height of this rectangle element.
square
Determine if this rectangle is square.
top_left
Get the top left corner point.
top_right
Get the top right corner point.
width
Get the width of this rectangle element.

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

 
Functions
       
isclose(a, b, *, rel_tol=1e-09, abs_tol=0.0)
Determine whether two floating point numbers are close in value.
 
  rel_tol
    maximum difference for being considered "close", relative to the
    magnitude of the input values
  abs_tol
    maximum difference for being considered "close", regardless of the
    magnitude of the input values
 
Return True if a is close in value to b, and False otherwise.
 
For the values to be considered close, the difference between them
must be smaller than at least one of the tolerances.
 
-inf, inf and NaN behave similarly to the IEEE 754 Standard.  That
is, NaN is not close to anything, even itself.  inf and -inf are
only close to themselves.

 
Data
        Colorlike = typing.Union[str, svgen.color.hsl.Hsl, svgen.color.rgb.Rgb, ForwardRef('Color')]
DEFAULT = Point(x=0.0, y=0.0, center=False, idx=-1)
PossibleAttributes = typing.Union[typing.Dict[str, typing.Union[str, ....attribute.Attribute], svgen.attribute.Attribute]
UNITY = 1.0
Union = typing.Union