|
ModelElementStraightLinepointsOnAxis Method
|
creates point at given maximum distance along the axis.
Namespace:
Karamba.Elements
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic virtual List<Point3> pointsOnAxis(
List<Node> nodes,
double max_dist,
double min_dist
)
Public Overridable Function pointsOnAxis (
nodes As List(Of Node),
max_dist As Double,
min_dist As Double
) As List(Of Point3)
public:
virtual List<Point3>^ pointsOnAxis(
List<Node^>^ nodes,
double max_dist,
double min_dist
)
abstract pointsOnAxis :
nodes : List<Node> *
max_dist : float *
min_dist : float -> List<Point3>
override pointsOnAxis :
nodes : List<Node> *
max_dist : float *
min_dist : float -> List<Point3>
Parameters
- nodes
- Type: System.Collections.GenericListNode
nodes in the model. - max_dist
- Type: SystemDouble
maximum distance between points. - min_dist
- Type: SystemDouble
minimum distance between points.
Return Value
Type:
ListPoint3list of created points.
See Also