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 | |
|---|---|---|---|---|---|
![]() |
inSurface | Surface | Input surface | ||
![]() |
inPoint | Point2D | Coordinates of the input point in surface coordinate system | ||
![]() |
inInterpolationRadius | int | 0 - 65535 | Radius of vicinity being taken into account to interpolate not existing point | |
![]() |
outSurfaceRealPoint | Point3D | None | None | Output point in surface coordinate system | |
![]() |
outSurfaceGridPoint | Point2D | None | None | Output point in surface grid coordinate system |


