用SurfaceView制作简单的android游戏 : 重力小球(完)--------添加其他类型的障碍物以及胜利画面
摘要:
三角形障碍物BarricadeTriangle.java (顶点座标计算原理如上图)View Code //三角形障碍物,参数为中心点x和y, 内切圆半径rpublic class BarricadeTriangle extends Barricade { public BarricadeTriangle(float x, float y, float r, BConf conf) { super(3, conf); for (int i = 0; i < 3; i++) { _pt[i].x = x + (float) (Math.co... 阅读全文
posted @ 2012-09-14 23:41 tomboy 阅读(650) 评论(0) 推荐(0) 编辑