Searched refs:worldX (Results 1 – 4 of 4) sorted by relevance
/external/replicaisland/src/com/replica/replicaisland/ |
D | HotSpotSystem.java | 95 public int getHotSpot(float worldX, float worldY) { in getHotSpot() argument 100 final int xTile = getHitTileX(worldX); in getHotSpot() 119 public final int getHitTileX(float worldX) { in getHitTileX() argument 124 xTile = (int)Math.floor(((worldX) / worldPixelWidth) * mWorld.getWidth()); in getHitTileX() 143 float worldX = 0.0f; in getTileCenterWorldPositionX() local 147 worldX = (tileX * tileWidth) + (tileWidth / 2.0f); in getTileCenterWorldPositionX() 149 return worldX; in getTileCenterWorldPositionX()
|
D | CameraSystem.java | 188 public float snapFocalPointToWorldBoundsX(float worldX) { in snapFocalPointToWorldBoundsX() argument 189 float focalPositionX = worldX; in snapFocalPointToWorldBoundsX()
|
D | GameObjectFactory.java | 585 final float worldX = x * tileWidth; 587 GameObject object = spawn(type, worldX, worldY, false);
|
/external/opencv3/modules/videoio/src/ |
D | cap_openni2.cpp | 752 float worldX, worldY, worldZ; in retrievePointCloudMap() local 757 …er::convertDepthToWorld(depth, x, y, depthImg.at<unsigned short>(y, x), &worldX, &worldY, &worldZ); in retrievePointCloudMap() 763 …pointCloud_XYZ.at<cv::Point3f>(y, x) = cv::Point3f(worldX*0.001f, worldY*0.001f, worldZ*0.001f); /… in retrievePointCloudMap()
|