You are here: Start » AVL.NET » Function Reference » Point3DGrid » Point3DGrid Basics » AVL.GetPoint3DGridPoint_Interpolated

AVL.GetPoint3DGridPoint_Interpolated

Returns an interpolated single point of a point 3D grid.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void GetPoint3DGridPoint_Interpolated
(
	AvlNet.Point3DGrid inPoint3DGrid,
	float inOffsetX,
	float inOffsetY,
	float inStepX,
	float inStepY,
	float inX,
	float inY,
	int inInterpolationRadius,
	out AvlNet.Point3D outPoint
)

Parameters

Name Type Range Default Description
inPoint3DGridAvlNet.Point3DGridInput point 3D grid.
inOffsetXfloatDefines offset of the input grid along X axis.
inOffsetYfloatDefines offset of the input grid along Y axis.
inStepXfloat<0.01f, INF>1.0fDefines step of the input grid along X axis. Default value: 1.0f.
inStepYfloat<0.01f, INF>1.0fDefines step of the input grid along Y axis. Default value: 1.0f.
inXfloatX coordinate of the input point.
inYfloatY coordinate of the input point.
inInterpolationRadiusint<0, 65535>1Radius of vicinity taking into account to interpolate not existing point. Default value: 1.
outPointAvlNet.Point3DOutput point.

Errors

List of possible exceptions:

Error type Description
DomainError Incorrect input coordinates in GetPoint3DGridPoint_Interpolated.

See also