this is the onDraw method for my View sub-class

drawCross() is a simple method that draws a cross.

shouldn't this code result in overlapping crosses.

trying to understand the translate method.


        drawCross( canvas, 200, 400 );  // no transformations
        
        Matrix m = new Matrix();

        m.setTranslate( 200, 400 );
        
        canvas.setMatrix(m);
        
        drawCross( canvas, 0, 0 );

in my case - the 2nd cross is being drawn about 100 px above 
the first. same x.

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to