You are here: Start » AVL.NET » Function Reference » Surface » Surface Basics » AVL.ProjectPointOntoSurface

AVL.ProjectPointOntoSurface

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

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void ProjectPointOntoSurface
(
	AvlNet.Surface inSurface,
	AvlNet.Point2D inPoint,
	int inInterpolationRadius,
	NullableValue<AvlNet.Point3D> outSurfaceRealPoint,
	NullableValue<AvlNet.Point2D> outSurfaceGridPoint
)

Parameters

Name Type Range Default Description
inSurfaceAvlNet.SurfaceInput surface.
inPointAvlNet.Point2DCoordinates of the input point in surface coordinate system.
inInterpolationRadiusint<0, 65535>0Radius of vicinity being taken into account to interpolate not existing point. Default value: 0.
outSurfaceRealPointAvlNet.NullableValue<AvlNet.Point3D>Output point in surface coordinate system. Can be null to skip this parameter calculation.
outSurfaceGridPointAvlNet.NullableValue<AvlNet.Point2D>Output point in surface grid coordinate system. Can be null to skip this parameter calculation.

Function Overrides

See also