find_point_on_plane#

static GeometryOperators.find_point_on_plane(pointlists: list, direction: int = 0) float#

Find a point on a plane.

Parameters:
pointlistsList

List of points.

directionint, optional

The default is 0.

Returns:
List

Examples

>>> from ansys.aedt.core.modeler.geometry_operators import GeometryOperators
>>> obj = GeometryOperators()
>>> obj.find_point_on_plane(pointlists=[[0, 0, 0], [10, 0, 0], [0, 10, 0]])