Skip to content

Arc3DUtil

implementation of Arc3DUtil

  • create a 3d arc

Arc3DUtil

Canonical path: Utils.Geometry.Arc3DUtil.Arc3DUtil

implementation of Arc3DUtil

create staticmethod

create(
    x_center: float,
    y_center: float,
    radius: float,
    angle_start: float = 0.0,
    angle_end: float = 360.0,
) -> Arc3D | None

create a 3d arc

Parameters:

  • x_center (float) –

    x coord center

  • y_center (float) –

    y coord center

  • radius (float) –

    radius

  • angle_start (float, default: 0.0 ) –

    start angle

  • angle_end (float, default: 360.0 ) –

    end angle

Returns:

  • Arc3D | None

    returns created arc or None if start and end angle are equal

Placeholder