parallel_coeff#

static GeometryOperators.parallel_coeff(a1: list, a2: list, b1: list, b2: list) float#

ADD DESCRIPTION.

Parameters:
a1List

List of [x, y, z] coordinates for the first point of the first segment.

a2List

List of [x, y, z] coordinates for the second point of the first segment.

b1List

List of [x, y, z] coordinates for the first point of the second segment.

b2List

List of [x, y, z] coordinates for the second point of the second segment.

Returns:
float

_vdot of 4 vertices of 2 segments.

Examples

>>> from ansys.aedt.core.modeler.geometry_operators import GeometryOperators
>>> obj = GeometryOperators()
>>> obj.parallel_coeff(a1=["Box1"], a2=["Box1"], b1=["Box1"], b2=["Box1"])