本文整理汇总了Java中processing.core.PApplet.createGraphics方法的典型用法代码示例。如果您正苦于以下问题:Java PApplet.createGraphics方法的具体用法?Java PApplet.createGraphics怎么用?Java PApplet.createGraphics使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类processing.core.PApplet
的用法示例。
在下文中一共展示了PApplet.createGraphics方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createCheckerBoard
import processing.core.PApplet; //导入方法依赖的package包/类
static public PGraphics2D createCheckerBoard(PApplet papplet, int dimx, int dimy, int size, int colA, int colB){
int num_x = (int) dimx/size;
int num_y = (int) dimy/size;
int off_x = (dimx - size * num_x) / 2;
int off_y = (dimy - size * num_y) / 2;
PGraphics2D pg = (PGraphics2D) papplet.createGraphics(dimx, dimy, PConstants.P2D);
pg.smooth(0);
pg.beginDraw();
pg.blendMode(PConstants.REPLACE);
pg.textureSampling(2);
pg.noStroke();
pg.fill(200);
for(int y = -1; y < num_y+1; y++){
for(int x = -1; x < num_x+1; x++){
int px = off_x + x * size;
int py = off_y + y * size;
int col = (x ^ y) & 1;
if(col == 1){
pg.fill(colA);
} else {
pg.fill(colB);
}
pg.rect(px, py, size, size);
}
}
pg.endDraw();
return pg;
}