Point3d.Interpolate Method

Point3dInterpolate Method

Interpolate between two points.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Syntax
public void Interpolate(
	Point3d pA,
	Point3d pB,
	double t
)
Public Sub Interpolate ( 
	pA As Point3d,
	pB As Point3d,
	t As Double
)

Parameters

pA
Type: Rhino.GeometryPoint3d
First point.
pB
Type: Rhino.GeometryPoint3d
Second point.
t
Type: SystemDouble
Interpolation parameter. If t=0 then this point is set to pA. If t=1 then this point is set to pB. Values of t in between 0.0 and 1.0 result in points between pA and pB.
Version Information

Rhino for Mac

Supported in: 5.4

Rhino for Windows

Supported in: 6.8
See Also