RhTopology Module
Functions and values
| Function or value |
Description
|
|
Sorts elements in place to be in a circular structure. For each line endpoint, it finds the next closest line start point. (Does not check other line endpoints that might be closer.) Line is used as an abstraction to hold start and end of arbitrary object.
|
Full Usage:
RhTopology.sortToLoopWithReversing getLine reverseInPlace xs
Parameters:
'T -> Line
reverseInPlace : int -> 'T -> unit
xs : ResizeArray<'T>
|
Sorts elements in place to be in a circular structure. For each line endpoint, it finds the next closest start point or endpoint. Line is used as an abstraction to hold start and end of arbitrary object. Reverses elements in place where required, using the reverseInPlace function that takes the index and the element as parameters.
|
Rhino.Scripting.Fsharp