TranslatePoint3D_Toward


Translates a point in 3D towards another point in 3D by a specified distance.

Syntax

C++
C#
Python
 
def TranslatePoint3D_Toward(
	inPoint3D: Point3D,
	inTargetPoint: Point3D,
	inDistance: float,
	/,
	*,
	inInverse: bool = False
)
-> outPoint3D: Point3D

Parameters

Name Type Default Description
Input value inPoint3D Point3D
Input value inTargetPoint Point3D Defines the direction of the translation
Input value inDistance float The distance between inPoint3D and outPoint3D
Input value inInverse bool False Switches to the inverse operation
Output value outPoint3D Point3D