|
ShellSectionMarchingAlgorithmsMarchingAlgorithm Method
|
The method returns crossed section results from given input geometries stored into a
MarchingInfo.
Namespace:
Karamba.Results.ShellSection
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic static void MarchingAlgorithm(
MarchingInfo marchingInfo,
out List<PolyLine3> all_polylines,
out List<List<int>> all_crossed_faces
)
Public Shared Sub MarchingAlgorithm (
marchingInfo As MarchingInfo,
<OutAttribute> ByRef all_polylines As List(Of PolyLine3),
<OutAttribute> ByRef all_crossed_faces As List(Of List(Of Integer))
)
public:
static void MarchingAlgorithm(
MarchingInfo marchingInfo,
[OutAttribute] List<PolyLine3^>^% all_polylines,
[OutAttribute] List<List<int>^>^% all_crossed_faces
)
static member MarchingAlgorithm :
marchingInfo : MarchingInfo *
all_polylines : List<PolyLine3> byref *
all_crossed_faces : List<List<int>> byref -> unit
Parameters
- marchingInfo
- Type: Karamba.Results.ShellSectionMarchingInfo
Collection of all required geometrical input parameters. - all_polylines
- Type: System.Collections.GenericListPolyLine3
Polylines that result from the section. - all_crossed_faces
- Type: System.Collections.GenericListListInt32
Faces which are crossed by the poly-lines.
See Also