本文整理汇总了Java中processing.core.PApplet.ceil方法的典型用法代码示例。如果您正苦于以下问题:Java PApplet.ceil方法的具体用法?Java PApplet.ceil怎么用?Java PApplet.ceil使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类processing.core.PApplet
的用法示例。
在下文中一共展示了PApplet.ceil方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: PointsLookup
import processing.core.PApplet; //导入方法依赖的package包/类
PointsLookup(float xmin, float ymin, float xmax, float ymax, int cellSize, float tolerance) {
_xmin = xmin;
_xmax = xmax;
_ymin = ymin;
_ymax = ymax;
_cs = cellSize;
_tol = tolerance;
_tol2 = tolerance * tolerance;
_data = new Vector<Vector<PVector>>();
float fw = xmax - xmin, fh = ymax - ymin;
_w = PApplet.ceil(fw / (float) _cs);
_h = PApplet.ceil(fh / (float) _cs); // grid of 10x10 pixels
int s = _w * _h;
for (int i = 0; i < s; i++)
_data.add(new Vector<PVector>());
_points = new Vector<PVector>();
}
示例2: testGrid
import processing.core.PApplet; //导入方法依赖的package包/类
boolean testGrid(PVector p, float minDist) {
int minX = PApplet.floor(PApplet.max(0, (p.x - minDist - _xmin) / _cellSize));
int maxX = PApplet.ceil(PApplet.min(_gridWidth - 1, (p.x + minDist - _xmin) / _cellSize));
int minY = PApplet.floor(PApplet.max(0, (p.y - minDist - _ymin) / _cellSize));
int maxY = PApplet.ceil(PApplet.min(_gridHeight - 1, (p.y + minDist - _ymin) / _cellSize));
for (int y = minY; y <= maxY; y++) {
for (int x = minX; x <= maxX; x++) {
Vector<PVector> cell = _grid.get(y * _gridWidth + x);
for (PVector t : cell)
if (PApplet.dist(p.x, p.y, t.x, t.y) <= minDist)
return false;
}
}
return true;
}