I'm planning on letting a user draw the shape of a number (1 to 9) in the shape of a 7-segment display. What is the best way to detect what number was drawn?
I know how to do all the touch-tracking and UIGestureRecogniser stuff - I'm looking for a good logic of doing it.
So far, I've got: When a touch moves from 1 half of a segment to the other, highlight that seg. Once touches are finished, check what segs have been highlighted and decide what number drawn.
Ways I've thought of improving it: Draw a shape of the finger's path on screen. If the line intersects the middle of a seg, highlight that seg.
Anyone got any tips or better ways of doing this? I'm open to any suggestion - even if it means scrapping all my code and starting from scratch.