HomeSort by relevance Sort by last modified time
    Searched full:pointx (Results 1 - 17 of 17) sorted by null

  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
RadialSelectorView.java 195 public int getDegreesFromCoords(float pointX, float pointY, boolean forceLegal,
203 (pointX - mXCenter)*(pointX - mXCenter));
257 boolean rightSide = (pointX > mXCenter);
298 int pointX = mXCenter + (int) (mLineLength * Math.sin(mSelectionRadians));
303 canvas.drawCircle(pointX, pointY, mSelectionRadius, mPaint);
308 canvas.drawCircle(pointX, pointY, (mSelectionRadius * 2 / 7), mPaint);
314 pointX = mXCenter + (int) (lineLength * Math.sin(mSelectionRadians));
321 canvas.drawLine(mXCenter, mYCenter, pointX, pointY, mPaint);
RadialPickerLayout.java 484 * @param pointX The x coordinate.
493 private int getDegreesFromCoords(float pointX, float pointY, boolean forceLegal,
498 pointX, pointY, forceLegal, isInnerCircle);
501 pointX, pointY, forceLegal, isInnerCircle);
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/
com.badlogic.gdx.physics.box2d.Body.cpp 173 JNIEXPORT void JNICALL Java_com_badlogic_gdx_physics_box2d_Body_jniApplyForce(JNIEnv* env, jobject object, jlong addr, jfloat forceX, jfloat forceY, jfloat pointX, jfloat pointY, jboolean wake) {
179 body->ApplyForce(b2Vec2(forceX, forceY), b2Vec2(pointX, pointY), wake);
206 JNIEXPORT void JNICALL Java_com_badlogic_gdx_physics_box2d_Body_jniApplyLinearImpulse(JNIEnv* env, jobject object, jlong addr, jfloat impulseX, jfloat impulseY, jfloat pointX, jfloat pointY, jboolean wake) {
212 body->ApplyLinearImpulse( b2Vec2( impulseX, impulseY ), b2Vec2( pointX, pointY ), wake);
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
Plane.java 166 public void set (float pointX, float pointY, float pointZ, float norX, float norY, float norZ) {
168 d = -(pointX * norX + pointY * norY + pointZ * norZ);
Intersector.java 103 public static int pointLineSide (float linePoint1X, float linePoint1Y, float linePoint2X, float linePoint2Y, float pointX,
106 .signum((linePoint2X - linePoint1X) * (pointY - linePoint1Y) - (linePoint2Y - linePoint1Y) * (pointX - linePoint1X));
213 public static float distanceLinePoint (float startX, float startY, float endX, float endY, float pointX, float pointY) {
215 return Math.abs((pointX - startX) * (endY - startY) - (pointY - startY) * (endX - startX)) / normalLength;
219 public static float distanceSegmentPoint (float startX, float startY, float endX, float endY, float pointX, float pointY) {
220 return nearestSegmentPoint(startX, startY, endX, endY, pointX, pointY, v2tmp).dst(pointX, pointY);
239 public static Vector2 nearestSegmentPoint (float startX, float startY, float endX, float endY, float pointX, float pointY,
245 float t = ((pointX - startX) * (endX - startX) + (pointY - startY) * (endY - startY)) / length2;
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
MoreKeysPanel.java 56 * @param pointX x coordinate of this {@link MoreKeysPanel}
63 public void showMoreKeysPanel(View parentView, Controller controller, int pointX,
MoreKeysKeyboardView.java 123 final int pointX, final int pointY, final KeyboardActionListener listener) {
129 final int x = pointX - getDefaultCoordX() - container.getPaddingLeft() - getPaddingLeft();
MainKeyboardView.java 634 final int pointX = (mConfigShowMoreKeysKeyboardAtTouchedPoint && !keyPreviewEnabled)
643 moreKeysKeyboardView.showMoreKeysPanel(this, this, pointX, pointY, mKeyboardActionListener);
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/src/com/badlogic/gdx/physics/box2d/
Body.java 305 * @param pointX the world position of the point of application on x.
308 public void applyForce (float forceX, float forceY, float pointX, float pointY, boolean wake) {
309 jniApplyForce(addr, forceX, forceY, pointX, pointY, wake);
312 private native void jniApplyForce (long addr, float forceX, float forceY, float pointX, float pointY, boolean wake); /*
314 body->ApplyForce(b2Vec2(forceX, forceY), b2Vec2(pointX, pointY), wake);
361 * @param pointX the world position of the point of application on the x-axis.
364 public void applyLinearImpulse (float impulseX, float impulseY, float pointX, float pointY, boolean wake) {
365 jniApplyLinearImpulse(addr, impulseX, impulseY, pointX, pointY, wake);
368 private native void jniApplyLinearImpulse (long addr, float impulseX, float impulseY, float pointX, float pointY, boolean wake); /*
370 body->ApplyLinearImpulse( b2Vec2( impulseX, impulseY ), b2Vec2( pointX, pointY ), wake)
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/
Body.java 152 * @param pointX the world position of the point of application on x.
154 public void applyForce (float forceX, float forceY, float pointX, float pointY, boolean wake) {
156 tmp2.set(pointX, pointY);
196 * @param pointX the world position of the point of application on the x-axis.
198 public void applyLinearImpulse (float impulseX, float impulseY, float pointX, float pointY, boolean wake) {
200 tmp2.set(pointX, pointY);
  /external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
Utils.cpp 139 cv::Point2i pointX = list_points2d[1];
143 drawArrow(image, origin, pointX, red, 9, 2);
  /packages/apps/Gallery/src/com/android/camera/
ImageViewTouchBase.java 347 protected void zoomToPoint(float scale, float pointX, float pointY) {
351 panBy(cx - pointX, cy - pointY);
  /system/core/libpixelflinger/
trap.cpp 38 static void pointx(void *con, const GGLcoord* c, GGLcoord r);
122 c->procs.pointx = pointx_validate;
142 c->procs.pointx = aa_nice_pointx;
144 c->procs.pointx = aa_pointx;
147 c->procs.pointx = pointx;
149 c->procs.pointx(con, v, rad);
152 void pointx(void *con, const GGLcoord* v, GGLcoord rad) function in namespace:android
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
SuggestionStripView.java 320 final int pointX = stripWidth / 2;
322 moreKeysPanel.showMoreKeysPanel(this, mMoreSuggestionsController, pointX, pointY,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dwrite.h     [all...]
  /system/core/libpixelflinger/include/pixelflinger/
pixelflinger.h 206 void (*pointx)(void *con, const GGLcoord* v, GGLcoord r); member in struct:__anon74776
  /frameworks/native/opengl/libagl/
primitives.cpp 520 c->rasterizer.procs.pointx(c, v->window.v, c->point.size);
    [all...]

Completed in 595 milliseconds