(int width, int height, int count, Random rand)
| 93 | } |
| 94 | |
| 95 | public static Path64 MakeRandomPath(int width, int height, int count, Random rand) |
| 96 | { |
| 97 | Path64 result = new (count); |
| 98 | for (int i = 0; i < count; ++i) |
| 99 | result.Add(MakeRandomPt(width, height, rand)); |
| 100 | return result; |
| 101 | } |
| 102 | } |
| 103 | } |