Let's say I have a two-dimensional array like this:
[
[1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
[1, 1, 0, 0, 0, 0, 0, 0, 1, 1],
[1, 0, 0, 0, 1, 1, 0, 0, 0, 1],
[1, 0, 0, 1, 1, 1, 1, 0, 0, 1],
[1, 0, 0, 1, 1, 1, 1, 0, 0, 1],
[1, 0, 0, 0, 1, 1, 0, 0, 0, 1],
[1, 1, 0, 0, 0, 0, 0, 0, 1, 1],
[1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
];
(It's just an example, the real one is much more larger and complex).
Now, I have to draw a vector outline around the "1" blocks, and fill it with a colour, by using Actionscript. What kind of algorithm I could use?
Note: For performance reasons, I can't just draw a square on every "1". I should use for each group, lineTo/moveTo methods.
P.S.: Sorry if seems a dumb question, but I'm not a so skilled programmer :)