vertex_data_of_lines#
- Modeler3D.vertex_data_of_lines(text_filter: str | None = None) dict#
Generate a dictionary of line vertex data for all lines contained within the design.
- Parameters:
- text_filter
str,optional Text string for filtering. The default is
None. When a text string is specified, line data is generated only if this text string is contained within the line name.
- text_filter
- Returns:
dictDictionary of the line name with a list of vertex positions in either 2D or 3D.
Examples
>>> from ansys.aedt.core.modeler.cad.primitives import GeometryModeler >>> obj = GeometryModeler() >>> obj.vertex_data_of_lines(text_filter=1)