Source code for abaqus.Sketcher.ConstrainedSketchConstraint.ParallelConstraint
from .ConstrainedSketchConstraint import ConstrainedSketchConstraint
from ..ConstrainedSketchGeometry.ConstrainedSketchGeometry import ConstrainedSketchGeometry
[docs]class ParallelConstraint(ConstrainedSketchConstraint):
def __init__(self, entity1: ConstrainedSketchGeometry, entity2: ConstrainedSketchGeometry):
"""This method creates a parallel constraint. This constraint applies to lines and
constrains them to be parallel.
Notes
-----
This function can be accessed by:
.. code-block:: python
mdb.models[name].sketches[name].ParallelConstraint
Parameters
----------
entity1
A ConstrainedSketchGeometry object specifying the first line.
entity2
A ConstrainedSketchGeometry object specifying the second line.
Returns
-------
A ConstrainedSketchConstraint object.
"""
pass