处理 - 方法停止绘制圆圈

时间:2014-12-01 11:20:15

标签: processing draw

我们又遇到了问题。我们正在画一堆圈子。在其中一个drawingCountry方法的中间,它突然不再绘制圆圈了。同样在drawingCountry方法之后不再绘制圆圈,但它们仍然被调用。我们通过插入println(“test”)测试它。有谁知道为什么会这样?

我们的代码与此类似:

public void drawRussia(){
  canvas.ellipseMode(CORNER);
  canvas.ellipse(705*factorWidth, 149*factorHeight, 75, 75);
  canvas.ellipse(629.5*factorWidth, 161.5*factorHeight, 75, 75);
  canvas.ellipse(523*factorWidth, 164*factorHeight, 75, 75);
  canvas.ellipse(562*factorWidth, 244*factorHeight, 10, 10);
  canvas.ellipse(555*factorWidth, 253*factorHeight, 10, 10);
 //--------------------------stops drawing circles -------------------
  canvas.ellipse(720*factorWidth, 223*factorHeight, 15, 15);
  canvas.ellipse(673*factorWidth, 116*factorHeight, 50, 50);
  canvas.ellipse(777*factorWidth, 121*factorHeight, 75, 75);

}

在drawRussia()之后,有类似的方法(不绘制)。在一切运作良好之前。

是否存在某种缓冲或限制...

感谢您的帮助。

0 个答案:

没有答案