Re: [android-developers] finger paint

2013-02-04 Thread Dilip Kumar Chaudhary
can you please help me with some example On Fri, Feb 1, 2013 at 1:56 PM, TreKing treking...@gmail.com wrote: On Fri, Feb 1, 2013 at 2:02 AM, Dilip Kumar Chaudhary androiddili...@gmail.com wrote: what should I do to solve this problem. Use Google to find a line intersection algorithm.

Re: [android-developers] finger paint

2013-02-04 Thread skink
Dilip Kumar Chaudhary wrote: can you please help me with some example sure: http://www.google.com/m?q=line+intersection+algorithm pskink -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] finger paint

2013-02-04 Thread Dilip Kumar Chaudhary
I'm asking help with some example sir On Mon, Feb 4, 2013 at 2:20 PM, skink psk...@gmail.com wrote: Dilip Kumar Chaudhary wrote: can you please help me with some example sure: http://www.google.com/m?q=line+intersection+algorithm pskink -- -- You received this message because

Re: [android-developers] finger paint

2013-02-04 Thread skink
Dilip Kumar Chaudhary wrote: I'm asking help with some example sir did you bother to read the very first link? or you want me to read it, copy and paste the working code here? pskink -- -- You received this message because you are subscribed to the Google Groups Android Developers group.

Re: [android-developers] finger paint

2013-02-04 Thread Dilip Kumar Chaudhary
ok let me read once again Thanks On Mon, Feb 4, 2013 at 5:21 PM, skink psk...@gmail.com wrote: Dilip Kumar Chaudhary wrote: I'm asking help with some example sir did you bother to read the very first link? or you want me to read it, copy and paste the working code here? pskink --

Re: [android-developers] finger paint

2013-02-04 Thread Nobu Games
You will need to keep track of the drawn path segments in some data structure. When you add a new path segment you need to perform an intersection test between the new segment and the old ones. There are two problems with that: 1. The path data structure grows bigger and bigger the more you

[android-developers] finger paint

2013-02-01 Thread Dilip Kumar Chaudhary
I'm drawing line and want that when lines match together then generate error.I have done some coding and this code is able to draw lines on touch but problem is that how to determine when line match.what should I do to solve this problem.Thanks -- *Thanks Regards* Dilip Kumar Chaudhary My

Re: [android-developers] finger paint

2013-02-01 Thread TreKing
On Fri, Feb 1, 2013 at 2:02 AM, Dilip Kumar Chaudhary androiddili...@gmail.com wrote: what should I do to solve this problem. Use Google to find a line intersection algorithm. This has nothing to do with Android.