<a href="https://github.com/yeatsJJ"><img src="https://avatars.githubusercontent.com/u/4486929?" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [yeatsJJ](https://github.com/yeatsJJ)** _Monday Jul 29, 2013 at 00:10 GMT_ _Originally opened as https://github.com/processing/processing-android-archive/issues/48_ --- Processing Android curveVertex bug, the code is as follows: fill(#FFEC8B); beginShape(); curveVertex(0, 10); curveVertex(0, 10); curveVertex(100, 10); curveVertex(100, 30); curveVertex(0, 30); curveVertex(0, 30); endShape(); fill(#FFB6C1); beginShape(); curveVertex(0, 50); curveVertex(0, 50); curveVertex(100, 50); curveVertex(100, 80); curveVertex(0, 80); curveVertex(0, 80); endShape(); The result is the color of the first shape will be the color of the second. you can run it in android environment