Point3dInterpolate Method |
Interpolate between two points.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
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.
See Also