in reply to Combine line segments to form a single line
Apparently I misunderstood the question, plz ignore this post!
Never mind! =)
like this?
DB<100> @AoA = ( [11,29, 10,25], [15,35, 11,29], [15,15, 11,21], [10,25, 11,21] ) DB<101> @flat = map { @$_ } @AoA => (11, 29, 10, 25, 15, 35, 11, 29, 15, 15, 11, 21, 10, 25, 11, 21)
Cheers Rolf
( addicted to the Perl Programming Language)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Combine line segments to form a single line
by LanX (Saint) on Jan 12, 2014 at 22:19 UTC | |
by bangor (Monk) on Jan 13, 2014 at 13:58 UTC | |
by LanX (Saint) on Jan 13, 2014 at 14:51 UTC |