本文整理汇总了Java中processing.core.PApplet.map方法的典型用法代码示例。如果您正苦于以下问题:Java PApplet.map方法的具体用法?Java PApplet.map怎么用?Java PApplet.map使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类processing.core.PApplet
的用法示例。
在下文中一共展示了PApplet.map方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: render
import processing.core.PApplet; //导入方法依赖的package包/类
@Override
public void render(){
Public.p.imageMode(PConstants.CENTER);
Vec2 loc = Public.box2d.getBodyPixelCoord(body);
//We use the scale int to scale the ground image according to the size of the screen
float scale = PApplet.map(WINDOW_WIDTH+WINDOW_HEIGHT,800,2500,1,3);
scale+=100;
getGame().pushMatrix();
getGame().scale(scale, 1);
Renderer.render(texture, loc.x/scale,loc.y);
getGame().popMatrix();
}
示例2: color
import processing.core.PApplet; //导入方法依赖的package包/类
/********** UTILS *************/
private static Color color(double r, double g, double b) {
return new Color(PApplet.map((float) r, 0, 255, 0, 1), PApplet.map((float) g, 0, 255, 0, 1), PApplet.map(
(float) b, 0, 255, 0, 1));
}
示例3: render
import processing.core.PApplet; //导入方法依赖的package包/类
@Override
public void render(){
getGame().background(255);
if(t == PApplet.map(WINDOW_HEIGHT, 400, 900, 28, 46)*PApplet.round(getGame().frameRate) )exit();
t++;
}