Source code for abaqus.Sketcher.ConstrainedSketchGeometry.ConstructionLine

from .ConstrainedSketchGeometry import ConstrainedSketchGeometry


[docs]class ConstructionLine(ConstrainedSketchGeometry): def __init__(self, point1: tuple[float], point2: tuple[float]): """This method creates an oblique construction line that runs between two given points. Notes ----- This function can be accessed by: .. code-block:: python mdb.models[name].sketches[name].ConstructionLine Parameters ---------- point1 A pair of Floats specifying the first endpoint. point2 A pair of Floats specifying the second endpoint. Returns ------- A ConstrainedSketchGeometry object (None if the line cannot be created). """ pass