Home
last modified time | relevance | path

Searched refs:getMinX (Results 1 – 10 of 10) sorted by relevance

/external/replicaisland/src/com/replica/replicaisland/
DAABoxCollisionVolume.java50 public final float getMinX() { in getMinX() method in AABoxCollisionVolume
112 minX = Math.max(getMinX(), other.getMinX()); in growBy()
117 minX = other.getMinX(); in growBy()
DCollisionVolume.java64 value = getMinX(); in getMinXPosition()
72 final float minX = getMinX(); in getMaxXPosition()
102 protected abstract float getMinX(); in getMinX() method in CollisionVolume
DSphereCollisionVolume.java49 public float getMinX() { in getMinX() method in SphereCollisionVolume
138 minX = Math.min(getMinX(), other.getMinX()); in growBy()
143 minX = other.getMinX(); in growBy()
DGameObjectCollisionSystem.java238 boundingVolume.getMaxX() - boundingVolume.getMinX(), in drawDebugVolumes()
250 volume.getMaxX() - volume.getMinX(), in drawDebugVolumes()
263 volume.getMaxX() - volume.getMinX(), in drawDebugVolumes()
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
DRectRegion.java74 return intersects(region.getMinX(), region.getMaxX(), region.getMinY(), region.getMaxY()); in intersects()
142 public Number getMinX() { in getMinX() method in RectRegion
DXYPlot.java1084 return calculatedMinX != null ? calculatedMinX : getDefaultBounds().getMinX(); in getCalculatedMinX()
/external/pdfium/xfa/src/fxbarcode/pdf417/
DBC_PDF417BoundingBox.h30 int32_t getMinX();
DBC_PDF417BoundingBox.cpp136 int32_t CBC_BoundingBox::getMinX() { in getMinX() function in CBC_BoundingBox
DBC_PDF417ScanningDecoder.cpp134 image, boundingBox->getMinX(), boundingBox->getMaxX(), leftToRight, in decode()
553 return leftToRight ? detectionResult->getBoundingBox()->getMinX() in getStartColumn()
/external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/
DIOSInput.java669 locX = (int)(loc.getX() * app.displayScaleFactor - bounds.getMinX()); in toTouchEvents()