Circle#
- class data_morph.shapes.circles.Circle(dataset: Dataset, r: Number = None)[source]#
Bases:
Shape
Class representing a hollow circle.
- Parameters:
dataset (Dataset) – The starting dataset to morph into other shapes.
r (numbers.Number, optional) – The radius of the circle.
- distance(x: Number, y: Number) float [source]#
Calculate the absolute distance between this circle’s edge and a point (x, y).
- Parameters:
x (numbers.Number) – Coordinates of a point in 2D space.
y (numbers.Number) – Coordinates of a point in 2D space.
- Returns:
The absolute distance between this circle’s edge and the point (x, y).
- Return type:
- plot(ax: Axes = None) Axes [source]#
Plot the shape.
- Parameters:
ax (matplotlib.axes.Axes, optional) – An optional
Axes
object to plot on.- Returns:
The
Axes
object containing the plot.- Return type: