Source code for abaqus.Sketcher.ConstrainedSketchGeometry.ConstructionCircleByCenterPerimeter
from .ConstrainedSketchGeometry import ConstrainedSketchGeometry
[docs]class ConstructionCircleByCenterPerimeter(ConstrainedSketchGeometry):
def __init__(self, center: tuple[float], point1: tuple[float]):
"""This method constructs a construction circle using a center point and a point on the
perimeter. The circle is added to the geometry repository of the ConstrainedSketch
object.
Notes
-----
This function can be accessed by:
.. code-block:: python
mdb.models[name].sketches[name].ConstructionCircleByCenterPerimeter
Parameters
----------
center
A pair of Floats specifying the center point of the construction circle.
point1
A pair of Floats specifying a point on the perimeter of the construction circle.
Returns
-------
A ConstrainedSketchGeometry object (None if the circle cannot be created).
"""
pass