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

A module for interfacing with points.

 
Classes
       
builtins.object
PointManager
builtins.tuple(builtins.object)
Point
PointAttrs

 
class Point(builtins.tuple)
    Point(x: float = 0.0, y: float = 0.0, center: bool = False, idx: int = -1)
 
A definition of a point in a Cartesian coordinate system.
 
 
Method resolution order:
Point
builtins.tuple
builtins.object

Methods defined here:
__eq__(self, other: object) -> bool
Determine if two points are the same.
__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 Point object replacing specified fields with new values
distance(self, point: 'Point') -> float
Compute the distance from this point to another.
to_center(self) -> 'Point'
Convert an existing point to one that is definitely a 'center' type.
translate(self, move: Union[svgen.cartesian.mutate.Translation, float], *args) -> 'Point'
Move a point by a given translation.
with_index(self, idx: int) -> 'Point'
Get a new point with the specified index, from an existing point.

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

Static methods defined here:
__new__(_cls, x: float = 0.0, y: float = 0.0, center: bool = False, idx: int = -1)
Create new instance of Point(x, y, center, idx)

Readonly properties defined here:
attrs
Get the 'x' and 'y' attributes for this point.
x_attr
Get the 'x' attribute for this point.
y_attr
Get the 'y' attribute for this point.

Data descriptors defined here:
x
Alias for field number 0
y
Alias for field number 1
center
Alias for field number 2
idx
Alias for field number 3

Data and other attributes defined here:
__annotations__ = {'center': <class 'bool'>, 'idx': <class 'int'>, 'x': <class 'float'>, 'y': <class 'float'>}
__match_args__ = ('x', 'y', 'center', 'idx')
__orig_bases__ = (<function NamedTuple>,)
_field_defaults = {'center': False, 'idx': -1, 'x': 0.0, 'y': 0.0}
_fields = ('x', 'y', 'center', 'idx')

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 PointAttrs(builtins.tuple)
    PointAttrs(x: svgen.attribute.SimpleAttribute, y: svgen.attribute.SimpleAttribute)
 
A grouping for 'x' and 'y' attributes.
 
 
Method resolution order:
PointAttrs
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 PointAttrs object replacing specified fields with new values

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

Static methods defined here:
__new__(_cls, x: svgen.attribute.SimpleAttribute, y: svgen.attribute.SimpleAttribute)
Create new instance of PointAttrs(x, y)

Readonly properties defined here:
x_val
Get the 'x' coordinate for these attributes.
y_val
Get the 'y' coordinate for these attributes.

Data descriptors defined here:
x
Alias for field number 0
y
Alias for field number 1

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

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

 
class PointManager(builtins.object)
    PointManager(points: Dict[str, svgen.cartesian.point.Point] = None) -&gt; None
 
A class for managing points.
 
  Methods defined here:
__init__(self, points: Dict[str, svgen.cartesian.point.Point] = None) -> None
Initialize this point manager.
add_point(self, name: str, point: Union[svgen.cartesian.point.Point, float], *args) -> svgen.cartesian.point.Point
Add a named point to this manager.
get_point(self, name: str) -> svgen.cartesian.point.Point
Access a point object.
translate(self, move: Union[svgen.cartesian.mutate.Translation, float], *args) -> None
Translate all entities in the plane by some amount.

Data descriptors defined here:
__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.
sqrt(x, /)
Return the square root of x.
to_center(point: svgen.cartesian.point.Point) -> svgen.cartesian.point.Point
Convert an existing point to one that is definitely a 'center' type.

 
Data
        DEFAULT = Point(x=0.0, y=0.0, center=False, idx=-1)
DEFAULT_CENTER = Point(x=0.0, y=0.0, center=True, idx=-1)
Dict = typing.Dict
NamedPoints = typing.Dict[str, svgen.cartesian.point.Point]
Union = typing.Union