HomeSort by relevance Sort by last modified time
    Searched full:point1 (Results 1 - 25 of 57) sorted by null

1 2 3

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutPointTest.java 27 LayoutPoint point1 = LayoutPoint.create(mCanvas, 1, 1); local
39 assertFalse(point1.equals(point2));
40 assertFalse(point1.equals(point3));
42 assertFalse(point1.equals(point2));
ControlPointTest.java 56 ControlPoint point1 = ControlPoint.create(mCanvas, 1, 1); local
68 assertFalse(point1.equals(point2));
69 assertFalse(point1.equals(point3));
71 assertFalse(point1.equals(point2));
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
btClipPolygon.h 46 const btVector3 & point1,
57 bt_vec_blend(clipped[clipped_count],point0,point1,blendfactor);
62 clipped[clipped_count] = point1;
125 const btVector3 & point1,
142 btScalar dist = bt_distance_point_plane(plane,point1);
145 point0,point1,
158 point1,point2,
gim_clip_polygon.h 53 const CLASS_POINT & point1,
64 VEC_BLEND(clipped[clipped_count],point0,point1,blendfactor);
69 VEC_COPY(clipped[clipped_count],point1);
133 const CLASS_POINT & point1,
149 GREAL dist = distance_func(plane,point1);
152 point0,point1,
165 point1,point2,
201 const CLASS_POINT & point1,
205 return PLANE_CLIP_TRIANGLE_GENERIC<CLASS_POINT,CLASS_PLANE>(plane,point0,point1,point2,clipped,DISTANCE_PLANE_3D_FUNC());
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
Plane.java 64 * cross product between (point1-point2)x(point2-point3)
66 * @param point1 The first point
69 public Plane (Vector3 point1, Vector3 point2, Vector3 point3) {
70 set(point1, point2, point3);
74 * The normal is calculated via a cross product between (point1-point2)x(point2-point3)
76 * @param point1
79 public void set (Vector3 point1, Vector3 point2, Vector3 point3) {
80 normal.set(point1).sub(point2).crs(point2.x-point3.x, point2.y-point3.y, point2.z-point3.z).nor();
81 d = -point1.dot(normal);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/shapebuilders/
FrustumShapeBuilder.java 114 * @param point1 Second segment's point
116 private static Vector3 middlePoint (Vector3 point0, Vector3 point1) {
117 tmpV0.set(point1).sub(point0).scl(0.5f);
123 * @param point1
126 private static Vector3 centerPoint (Vector3 point0, Vector3 point1, Vector3 point2) {
127 tmpV0.set(point1).sub(point0).scl(0.5f);
129 tmpV0.set(point2).sub(point1).scl(0.5f);
  /external/skia/src/utils/win/
SkDWriteGeometrySink.cpp 120 { beziers->point1.x, beziers->point1.y },
128 fPath->cubicTo(beziers->point1.x, beziers->point1.y,
  /external/vulkan-validation-layers/libs/glm/gtx/
gradient_paint.inl 36 detail::tvec2<T, P> const & Point1,
40 detail::tvec2<T, P> Dist = Point1 - Point0;
gradient_paint.hpp 68 detail::tvec2<T, P> const & Point1,
  /external/opencv3/modules/imgproc/src/opencl/
morph.cl 124 int point1 = mad24(l_y, LSIZE0, l_x);
125 int point2 = point1 + LSIZE0 * LSIZE1;
126 int tl_x = point1 % width, tl_y = point1 / width;
150 LDS_DAT[point1] = temp0;
  /external/opencv3/3rdparty/openexr/Imath/
ImathPlane.h 72 Plane3(const Vec3<T> &point1,
86 void set(const Vec3<T> &point1,
140 inline void Plane3<T>::set(const Vec3<T>& point1,
144 normal = (point2 - point1) % (point3 - point1);
146 distance = normal ^ point1;
ImathLineAlgo.h 52 // Vec3<T>& point1,
86 Vec3<T>& point1,
90 // Compute point1 and point2 such that point1 is on line1, point2
91 // is on line2 and the distance between point1 and point2 is minimal.
92 // This function returns true if point1 and point2 can be computed,
110 point1 = line1 (n1 / d);
  /external/pdfium/xfa/src/fxbarcode/qrcode/
BC_QRFinderPatternFinder.h 51 static FX_FLOAT Distance(CBC_ResultPoint* point1, CBC_ResultPoint* point2);
  /external/opencv/cvaux/src/
cvmorphcontours.cpp 553 CvPoint* point1; // array of first contour point local
570 point1 = (CvPoint* )malloc( Ni*sizeof(CvPoint) );
574 cvCvtSeqToArray( contour1, point1, CV_WHOLE_SEQ );
578 point1[Ni-1] = point1[0];
596 point_output.x = cvRound(point1[i].x + param*( point2[corr_point].x - point1[i].x ));
597 point_output.y = cvRound(point1[i].y + param*( point2[corr_point].y - point1[i].y ));
633 CvPoint* point1; // array of first contour poin local
    [all...]
cvepilines.cpp 76 CvPoint3D64d point1,
82 icvGetPieceLength3D(pointCorner,point1,&len1);
90 pointSym2->x = pointCorner.x + alpha*(point1.x - pointCorner.x);
91 pointSym2->y = pointCorner.y + alpha*(point1.y - pointCorner.y);
92 pointSym2->z = pointCorner.z + alpha*(point1.z - pointCorner.z);
210 CvPoint2D64d point1; local
222 point1.x = (1.0 - alpha) * quad1[0][0] + alpha * quad1[3][0];
223 point1.y = (1.0 - alpha) * quad1[0][1] + alpha * quad1[3][1];
235 icvComCoeffForLine( point1,
339 int icvComCoeffForLine( CvPoint2D64d point1,
2051 CvPoint2D64d point1,point2; local
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
cv_util.py 87 def SqDistance(point1, point2):
89 d = np.square(point1 - point2)
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/flame/
GradientPanel.java 287 int point1 = (int)(percent1 * gradientWidth); local
289 g.setPaint(new GradientPaint(point1, 0, color1, point2, 0, color2, false));
290 g.fillRect(point1, 0, point2 - point1, gradientHeight);
384 float point1 = i / (float)n * width; local
386 g.setPaint(new GradientPaint(point1, 0, color1, point2, 0, color2, false));
387 g.fillRect((int)point1, 0, (int)Math.ceil(point2 - point1), height);
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/particleeditor/
GradientPanel.java 290 int point1 = (int)(percent1 * gradientWidth); local
292 g.setPaint(new GradientPaint(point1, 0, color1, point2, 0, color2, false));
293 g.fillRect(point1, 0, point2 - point1, gradientHeight);
387 float point1 = i / (float)n * width; local
389 g.setPaint(new GradientPaint(point1, 0, color1, point2, 0, color2, false));
390 g.fillRect((int)point1, 0, (int)Math.ceil(point2 - point1), height);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/
World.java 344 * @param point1 the ray starting point
346 Vec2 point1 = new Vec2(); field in class:World
351 public void rayCast (final RayCastCallback callback, Vector2 point1, Vector2 point2) {
352 rayCast(callback, point1.x, point1.y, point2.x, point2.y);
362 }, this.point1.set(point1X, point1Y), this.point2.set(point2X, point2Y));
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GeometryMathUtils.java 167 public static float[] getVectorFromPoints(float[] point1, float[] point2) {
169 point2[0] - point1[0], point2[1] - point1[1]
174 public static float[] getUnitVectorFromPoints(float[] point1, float[] point2) {
176 point2[0] - point1[0], point2[1] - point1[1]
  /developers/build/prebuilts/gradle/XYZTouristAttractions/Shared/src/main/java/com/example/android/xyztouristattractions/common/
Utils.java 73 public static String formatDistanceBetween(LatLng point1, LatLng point2) {
74 if (point1 == null || point2 == null) {
79 double distance = Math.round(SphericalUtil.computeDistanceBetween(point1, point2));
  /developers/samples/android/wearable/wear/XYZTouristAttractions/Shared/src/main/java/com/example/android/xyztouristattractions/common/
Utils.java 73 public static String formatDistanceBetween(LatLng point1, LatLng point2) {
74 if (point1 == null || point2 == null) {
79 double distance = Math.round(SphericalUtil.computeDistanceBetween(point1, point2));
  /development/samples/browseable/XYZTouristAttractions/Shared/src/com.example.android.xyztouristattractions.common/
Utils.java 73 public static String formatDistanceBetween(LatLng point1, LatLng point2) {
74 if (point1 == null || point2 == null) {
79 double distance = Math.round(SphericalUtil.computeDistanceBetween(point1, point2));
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
Collision.java 248 public static void bt_plane_clip_polygon_collect(Vector3 point0, Vector3 point1, float dist0, float dist1, btVector3 clipped, SWIGTYPE_p_int clipped_count) {
249 CollisionJNI.bt_plane_clip_polygon_collect(point0, point1, dist0, dist1, btVector3.getCPtr(clipped), clipped, SWIGTYPE_p_int.getCPtr(clipped_count));
256 public static int bt_plane_clip_triangle(btVector4 plane, Vector3 point0, Vector3 point1, Vector3 point2, btVector3 clipped) {
257 return CollisionJNI.bt_plane_clip_triangle(btVector4.getCPtr(plane), plane, point0, point1, point2, btVector3.getCPtr(clipped), clipped);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
URLTest.java 69 "http://www.yahoo1.com:8080/dir1/dir2/test.cgi?point1.html#anchor1");
74 "/dir1/dir2/test.cgi?point1.html", u.getFile());
87 "http://www.yahoo3.com/dir1/dir2/test.cgi?point1.html#anchor1");
92 "/dir1/dir2/test.cgi?point1.html", u2.getFile());
133 "http://www.yahoo5.com/di!@$%^&*()_+r1/di:::r2/test.cgi?point1.html#anchor1");
138 "/di!@$%^&*()_+r1/di:::r2/test.cgi?point1.html", u4.getFile());
210 "http:www.yahoo5.com::22/dir1/di:::r2/test.cgi?point1.html#anchor1");
215 "http://www.yahoo5.com::22/dir1/di:::r2/test.cgi?point1.html#anchor1");
    [all...]

Completed in 925 milliseconds

1 2 3