svgen.attribute.viewbox
index
/home/vkottler/src/vkottler/workspace/svgen/svgen/attribute/viewbox.py

svgen - A module for the 'viewBox' attribute.

 
Classes
       
builtins.tuple(builtins.object)
ViewBoxData
svgen.attribute.Attribute(abc.ABC)
ViewBox

 
class ViewBox(svgen.attribute.Attribute)
    ViewBox(min_x: int, min_y: int, width: int, height: int) -> None
 
An interface for viewBox attributes.
 
 
Method resolution order:
ViewBox
svgen.attribute.Attribute
abc.ABC
builtins.object

Methods defined here:
__init__(self, min_x: int, min_y: int, width: int, height: int) -> None
Construct a new viewBox.
new_grid(self, rect: svgen.cartesian.rectangle.Rectangle = None, columns: int = None, rows: int = None) -> svgen.cartesian.rectangle.grid.RectangleGrid
Create a grid from this viewBox.
translate(self, dx: Union[svgen.cartesian.mutate.Translation, float], *args, **kwargs) -> None
Apply a translation to this viewBox.

Class methods defined here:
decode(key: str, value: str) -> 'ViewBox' from abc.ABCMeta
Create this attribute from a string.

Static methods defined here:
from_dict(data: Dict[str, Any]) -> 'ViewBox'
Create a viewBox from dictionary data.

Readonly properties defined here:
center
Get the center point for this viewBox.
dimensions
Get this viewBox's dimensions.
height
Get the height of this viewbox.
key
Get the string key for this attribute.
origin
Get this viewBox's origin.
value
Get the string value for this attribute.
width
Get the width of this viewbox.

Data and other attributes defined here:
__abstractmethods__ = frozenset()

Methods inherited from svgen.attribute.Attribute:
__eq__(self, other: object) -> bool
Determine if two attributes are the same.
encode(self, quote: str = '"', force: bool = False) -> str
Convert this attribute to a string.

Data descriptors inherited from svgen.attribute.Attribute:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

Data and other attributes inherited from svgen.attribute.Attribute:
__hash__ = None

 
class ViewBoxData(builtins.tuple)
    ViewBoxData(min_x: int, min_y: int, width: int, height: int)
 
Primitive data for a viewBox attribute.
 
 
Method resolution order:
ViewBoxData
builtins.tuple
builtins.object

Methods defined here:
__getnewargs__(self)
Return self as a plain tuple.  Used by copy and pickle.
__repr__(self)
Return a nicely formatted representation string
_asdict(self)
Return a new dict which maps field names to their values.
_replace(self, /, **kwds)
Return a new ViewBoxData object replacing specified fields with new values
translate(self, dx: int, dy: int) -> 'ViewBoxData'
Translate this viewBox.

Class methods defined here:
_make(iterable) from builtins.type
Make a new ViewBoxData object from a sequence or iterable

Static methods defined here:
__new__(_cls, min_x: int, min_y: int, width: int, height: int)
Create new instance of ViewBoxData(min_x, min_y, width, height)
from_dict(data: Dict[str, Any]) -> 'ViewBoxData'
Create viewBox data from a dictionary.

Readonly properties defined here:
center
Get the center point for this viewBox.
origin
Get the origin for this viewBox.

Data descriptors defined here:
min_x
Alias for field number 0
min_y
Alias for field number 1
width
Alias for field number 2
height
Alias for field number 3

Data and other attributes defined here:
__annotations__ = {'height': <class 'int'>, 'min_x': <class 'int'>, 'min_y': <class 'int'>, 'width': <class 'int'>}
__match_args__ = ('min_x', 'min_y', 'width', 'height')
__orig_bases__ = (<function NamedTuple>,)
_field_defaults = {}
_fields = ('min_x', 'min_y', 'width', 'height')

Methods inherited from builtins.tuple:
__add__(self, value, /)
Return self+value.
__contains__(self, key, /)
Return bool(key in self).
__eq__(self, value, /)
Return self==value.
__ge__(self, value, /)
Return self>=value.
__getattribute__(self, name, /)
Return getattr(self, name).
__getitem__(self, key, /)
Return self[key].
__gt__(self, value, /)
Return self>value.
__hash__(self, /)
Return hash(self).
__iter__(self, /)
Implement iter(self).
__le__(self, value, /)
Return self<=value.
__len__(self, /)
Return len(self).
__lt__(self, value, /)
Return self<value.
__mul__(self, value, /)
Return self*value.
__ne__(self, value, /)
Return self!=value.
__rmul__(self, value, /)
Return value*self.
count(self, value, /)
Return number of occurrences of value.
index(self, value, start=0, stop=9223372036854775807, /)
Return first index of value.
 
Raises ValueError if the value is not present.

Class methods inherited from builtins.tuple:
__class_getitem__(...) from builtins.type
See PEP 585

 
Data
        GenericStrDict = typing.Dict[str, typing.Any]
Type = typing.Type
Union = typing.Union