MCPcopy Create free account
hub / github.com/AngusJohnson/Clipper2 / PolyTreeToPathsD

Method PolyTreeToPathsD

CSharp/Clipper2Lib/Clipper.cs:782–793  ·  view source on GitHub ↗
(PolyTreeD polyTree)

Source from the content-addressed store, hash-verified

780 }
781
782 [MethodImpl(MethodImplOptions.AggressiveInlining)]
783 public static PathsD PolyTreeToPathsD(PolyTreeD polyTree)
784 {
785 PathsD result = new PathsD();
786 foreach (PolyPathD polyPathBase in polyTree)
787 {
788 PolyPathD p = (PolyPathD)polyPathBase;
789 AddPolyNodeToPathsD(p, result);
790 }
791
792 return result;
793 }
794
795
796 [MethodImpl(MethodImplOptions.AggressiveInlining)]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected