Source code for abaqus.Sketcher.ConstrainedSketchDimension.VerticalDimension
from abaqusConstants import *
from .ConstrainedSketchDimension import ConstrainedSketchDimension
from ..ConstrainedSketchVertex.ConstrainedSketchVertex import ConstrainedSketchVertex
[docs]class VerticalDimension(ConstrainedSketchDimension):
def __init__(self, vertex1: ConstrainedSketchVertex, vertex2: ConstrainedSketchVertex,
textPoint: tuple[float], value: float = None, reference: Boolean = OFF):
"""This method constructs a ConstrainedSketchDimension between two vertices. A vertical
dimension controls the vertical distance along the *Y*-axis between two vertices.
Notes
-----
This function can be accessed by:
.. code-block:: python
mdb.models[name].sketches[name].VerticalDimension
Parameters
----------
vertex1
A ConstrainedSketchVertex object specifying the first endpoint.
vertex2
A ConstrainedSketchVertex object specifying the second endpoint.
textPoint
A pair of Floats specifying the location of the dimension text.
value
A Float specifying the angle between the two lines.
reference
A Boolean specifying whether the created dimension enforces the above value or if it
simply measures the angle between two lines.
Returns
-------
A ConstrainedSketchDimension object (None if the dimension cannot be created).
"""
pass