find_point_on_plane#
- static GeometryOperators.find_point_on_plane(pointlists: list, direction: int = 0) float#
Find a point on a plane.
- Parameters:
- pointlists
List List of points.
- direction
int,optional The default is
0.
- pointlists
- 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]])