ProjectPointOntoSurface


Returns an interpolated single point of a surface given its coordinates in surface coordinate system.

Syntax

C++
C#
Python
 
def ProjectPointOntoSurface(
	inSurface: Surface,
	inPoint: Point2D,
	inInterpolationRadius: int,
	/,
	*,
	outSurfaceRealPoint: Point3D | None = None,
	outSurfaceGridPoint: Point2D | None = None
)
-> None

Parameters

Name Type Range Default Description
Input value inSurface Surface Input surface
Input value inPoint Point2D Coordinates of the input point in surface coordinate system
Input value inInterpolationRadius int 0 - 65535 Radius of vicinity being taken into account to interpolate not existing point
Output value outSurfaceRealPoint Point3D | None None Output point in surface coordinate system
Output value outSurfaceGridPoint Point2D | None None Output point in surface grid coordinate system