The pyedb.misc.utilities library# Summary# Functions compute_arc_points Get the points of the arc. Description# Module gathering utility functions for PyEDB modules. Module detail# utilities.compute_arc_points(p1, p2, h, n=6, tol=1e-12)# Get the points of the arc. Parameters: p1listArc starting point. p2listArc ending point. hfloatArc height. nintNumber of points to generate along the arc. tolfloatGeometric tolerance. Returns: list, listPoints generated along the arc.