svgen.cartesian.circle
index
/home/vkottler/src/vkottler/workspace/svgen/svgen/cartesian/circle.py

svgen - A module for interacting with circular entities.

 
Classes
       
builtins.tuple(builtins.object)
Circle
CircleAttrs

 
class Circle(builtins.tuple)
    Circle(radius: float, center: svgen.cartesian.point.Point = Point(x=0.0, y=0.0, center=True, idx=-1))
 
A radius and center describing a circle.
 
 
Method resolution order:
Circle
builtins.tuple
builtins.object

Methods defined here:
__eq__(self, other: object) -> bool
Determine if this circle is equivalent to another.
__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 Circle object replacing specified fields with new values
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.

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

Static methods defined here:
__new__(_cls, radius: float, center: svgen.cartesian.point.Point = Point(x=0.0, y=0.0, center=True, idx=-1))
Create new instance of Circle(radius, center)

Readonly properties defined here:
attrs
Get the 'radius' and 'center' attributes for this circle.
center_attrs
Get the 'center' attributes for this circle.
radius_attr
Get the 'radius' attribute for this circle.

Data descriptors defined here:
radius
Alias for field number 0
center
Alias for field number 1

Data and other attributes defined here:
__annotations__ = {'center': <class 'svgen.cartesian.point.Point'>, 'radius': <class 'float'>}
__match_args__ = ('radius', 'center')
__orig_bases__ = (<function NamedTuple>,)
_field_defaults = {'center': Point(x=0.0, y=0.0, center=True, idx=-1)}
_fields = ('radius', 'center')

Methods inherited from builtins.tuple:
__add__(self, value, /)
Return self+value.
__contains__(self, key, /)
Return bool(key in self).
__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

 
class CircleAttrs(builtins.tuple)
    CircleAttrs(radius: svgen.attribute.SimpleAttribute, center: svgen.cartesian.point.PointAttrs)
 
A grouping for 'width' and 'center' attributes for a cicle.
 
 
Method resolution order:
CircleAttrs
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 CircleAttrs object replacing specified fields with new values

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

Static methods defined here:
__new__(_cls, radius: svgen.attribute.SimpleAttribute, center: svgen.cartesian.point.PointAttrs)
Create new instance of CircleAttrs(radius, center)

Readonly properties defined here:
radius_val
Get the 'radius' value for this circle.

Data descriptors defined here:
radius
Alias for field number 0
center
Alias for field number 1

Data and other attributes defined here:
__annotations__ = {'center': <class 'svgen.cartesian.point.PointAttrs'>, 'radius': <class 'svgen.attribute.SimpleAttribute'>}
__match_args__ = ('radius', 'center')
__orig_bases__ = (<function NamedTuple>,)
_field_defaults = {}
_fields = ('radius', 'center')

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

 
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
        DEFAULT_CENTER = Point(x=0.0, y=0.0, center=True, idx=-1)
UNITY = 1.0