本文整理匯總了Java中processing.core.PGraphics.resetMatrix方法的典型用法代碼示例。如果您正苦於以下問題:Java PGraphics.resetMatrix方法的具體用法?Java PGraphics.resetMatrix怎麽用?Java PGraphics.resetMatrix使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類processing.core.PGraphics
的用法示例。
在下文中一共展示了PGraphics.resetMatrix方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: prepareDraw
import processing.core.PGraphics; //導入方法依賴的package包/類
private void prepareDraw(PGraphics pg, float left, float top){
this.camwidth = pg.width;
this.camheight = pg.height;
if(this.positionmode.equals("MAP")){
PVector p = this.mapToCanvas(left, top);
left = p.x;
top = p.y;
}
if(this.drawmode == 3){
this.camleft = parent.floor(left - this.camwidth / 2);
this.camtop = parent.floor(top - this.camheight / 2);
}
else{
this.camleft = parent.floor(left);
this.camtop = parent.floor(top);
}
if(pg != parent.g) pg.beginDraw();
pg.pushMatrix();
pg.resetMatrix();
pg.pushStyle();
pg.imageMode(parent.CORNER);
switch(this.backgroundmode) {
case "COLOR":
pg.background(this.backgroundcolor);
break;
case "CLEAR":
if(pg != parent.g) pg.clear();
else pg.background(this.backgroundcolor);
break;
}
}
示例2: beginScreen2D
import processing.core.PGraphics; //導入方法依賴的package包/類
static public void beginScreen2D(PGraphics pg){
pg.pushStyle();
pg.hint(PConstants.DISABLE_DEPTH_TEST);
pg.pushMatrix();
pg.resetMatrix();
if(pg.isGL() && pg.is3D()){
PGraphicsOpenGL pgl = (PGraphicsOpenGL)pg;
pushed_lights = pgl.lights;
pgl.lights = false;
pgl.pushProjection();
pgl.ortho(0, pg.width, -pg.height, 0, -Float.MAX_VALUE, +Float.MAX_VALUE);
}
}
示例3: drawLayer
import processing.core.PGraphics; //導入方法依賴的package包/類
private void drawLayer(PGraphics pg, int m){
int tileoffsetx, tileoffsety, n, dif;
float x = 0, y = 0;
Layer l = this.layer[m];
switch(l.type){
case "layer":
map.drawTileLayer(pg, m);
break;
case "imagelayer":
pg.image(l.image, -this.camleft + l.offsetx, -this.camtop + l.offsety);
break;
case "objectgroup":
pg.fill(l.objcolor);pg.stroke(l.objcolor); pg.strokeWeight(1);
for(StringDict o: l.objects){
if(!o.hasKey("visible")){
pg.pushMatrix();
pg.resetMatrix();
pg.pushStyle();
pg.ellipseMode(parent.CORNER);
pg.translate(parent.parseFloat(o.get("x")) - l.offsetx - this.camleft, parent.parseFloat(o.get("y"))- l.offsety - this.camtop);
if(o.hasKey("rotation")) pg.rotate(parent.parseFloat(o.get("rotation")) * parent.PI / 180);
switch(o.get("object")){
case "rectangle":
pg.rect(0, 0, parent.parseFloat(o.get("width")), parent.parseFloat(o.get("height")));
break;
case "ellipse":
pg.ellipse(0, 0, parent.parseFloat(o.get("width")), parent.parseFloat(o.get("height")));
break;
case "tile":
if(o.hasKey("rotation")) pg.rotate(-parent.parseFloat(o.get("rotation")) * parent.PI / 180);
pg.translate(0, -this.tile[parent.parseInt(o.get("gid")) - 1].image.height);
if(o.hasKey("rotation")) pg.rotate(parent.parseFloat(o.get("rotation")) * parent.PI / 180);
pg.image(this.tile[parent.parseInt(o.get("gid")) - 1].image, this.tile[parent.parseInt(o.get("gid")) - 1].offsetx, this.tile[parent.parseInt(o.get("gid")) - 1].offsety, parent.parseFloat(o.get("width")), parent.parseFloat(o.get("height")));
break;
case "polygon":
case "polyline":
if(o.get("object").equals("polyline")) pg.noFill();
pg.beginShape();
for(String s: parent.split(o.get("points"), " ")){
float [] p = parent.parseFloat(parent.split(s, ","));
pg.vertex(p[0], p[1]);
}
if(o.get("object").equals("polyline")) pg.endShape(); else pg.endShape(parent.CLOSE);
break;
}
pg.popStyle();
pg.popMatrix();
}
}
break;
}
if(pg != parent.g && l.opacity < 1){//applyOpacity
pg.loadPixels();
int a = parent.parseInt(parent.map(l.opacity, 0, 1, 1, 255));
for (int p = 0; p < pg.pixels.length; p++) if(parent.alpha(pg.pixels[p]) > a) pg.pixels[p] = parent.color(parent.red(pg.pixels[p]), parent.green(pg.pixels[p]), parent.blue(pg.pixels[p]), a);
pg.updatePixels();
}
}
示例4: apply
import processing.core.PGraphics; //導入方法依賴的package包/類
@Override
public Object apply(WarpScriptStack stack) throws WarpScriptException {
List<Object> params = ProcessingUtil.parseParams(stack, 0);
PGraphics pg = (PGraphics) params.get(0);
pg.resetMatrix();
stack.push(pg);
return stack;
}