|
IVicinityPointsToCurvePull Method
|
Pulls points to a curve if closer than a given maximum.
Namespace:
Karamba.Geometry
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
SyntaxIEnumerable<Point3> Pull(
IEnumerable<Point3> points,
double limit_dist
)
Function Pull (
points As IEnumerable(Of Point3),
limit_dist As Double
) As IEnumerable(Of Point3)
IEnumerable<Point3>^ Pull(
IEnumerable<Point3>^ points,
double limit_dist
)
abstract Pull :
points : IEnumerable<Point3> *
limit_dist : float -> IEnumerable<Point3>
Parameters
- points
- Type: System.Collections.GenericIEnumerablePoint3
points to be pulled. - limit_dist
- Type: SystemDouble
limit distance for pulling.
Return Value
Type:
IEnumerablePoint3Ordered list points which lie on the curve.
See Also