canvas.drawLine(...the coordinates for the line... , renderLandscape);
(http://developer.android.com/reference/android/graphics/Canvas.html is where its from.)
and I want to make this line look like it was drawn with a colored pencil (if you played the game slice it on android I want it to look like those lines)
I would assume I could use something from here or using a bitmap that repeats its self to look like a pencil stroke
(http://developer.android.com/reference/android/graphics/Paint.html)
but I'm not entirely sure.
I already have everything else I want setup to make it look like a pencil
- Code: Select all
public static final Paint renderLandscape = new Paint();
renderLandscape.setStyle(Style.FILL_AND_STROKE);
renderLandscape.setStrokeJoin(Paint.Join.ROUND );
renderLandscape.setStrokeCap (Paint.Cap.ROUND);
renderLandscape.setColor(Color.rgb(255,171,72));
renderLandscape.setStrokeWidth(6);
I just don't know what to do this is not really my area please please help me.

