(PolyTreeD polyTree)
| 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)] |
nothing calls this directly
no outgoing calls
no test coverage detected