Bullseye#
- class data_morph.shapes.circles.bullseye.Bullseye(dataset: Dataset)[source]#
Bases:
Rings
Class representing a bullseye shape comprising two concentric circles.
This shape is generated using the panda dataset.#
See also
Circle
The individual rings are represented as circles.
- distance(x: Number, y: Number) float #
Calculate the minimum absolute distance between any of this shape’s circles’ edges 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 minimum absolute distance between any of this shape’s circles’ edges and the point (x, y).
- Return type:
- classmethod get_name() str #
Get the name of the shape.
- Returns:
The name of the shape.
- Return type:
- name: str | None = None#
The display name for the shape, if the lowercased class name is not desired.
- plot(ax: Axes | None = None) Axes #
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: