本文整理匯總了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;
}