GetPoint3DGridPoint_Interpolated


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

Syntax

C++
C#
Python
 
def GetPoint3DGridPoint_Interpolated(
	inPoint3DGrid: Point3DGrid,
	inX: float,
	inY: float,
	/,
	*,
	inOffsetX: float = 0,
	inOffsetY: float = 0,
	inStepX: float = 1.0,
	inStepY: float = 1.0,
	inInterpolationRadius: int = 1
)
-> outPoint: Point3D

Parameters

Name Type Range Default Description
Input value inPoint3DGrid Point3DGrid Input point 3D grid
Input value inOffsetX float 0 Defines offset of the input grid along X axis
Input value inOffsetY float 0 Defines offset of the input grid along Y axis
Input value inStepX float 0.01 - 1.0 Defines step of the input grid along X axis
Input value inStepY float 0.01 - 1.0 Defines step of the input grid along Y axis
Input value inX float X coordinate of the input point
Input value inY float Y coordinate of the input point
Input value inInterpolationRadius int 0 - 65535 1 Radius of vicinity taking into account to interpolate not existing point
Output value outPoint Point3D Output point