/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/skia/src/utils/win/ |
SkDWriteGeometrySink.cpp | 120 { beziers->point1.x, beziers->point1.y }, 128 fPath->cubicTo(beziers->point1.x, beziers->point1.y,
|
/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;
|
ImathLine.h | 66 Line3(const Vec3<T>& point1, const Vec3<T>& point2); 72 void set(const Vec3<T>& 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/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/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/pdfium/xfa/src/fxbarcode/qrcode/ |
BC_QRFinderPatternFinder.h | 51 static FX_FLOAT Distance(CBC_ResultPoint* point1, CBC_ResultPoint* point2);
|
/external/vulkan-validation-layers/libs/glm/gtx/ |
intersect.hpp | 101 genType const & point0, genType const & point1,
|
/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);
|
/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/opencv/cvaux/include/ |
cvaux.h | 559 CvPoint3D64f point1, 563 CVAPI(void) icvGetPieceLength3D(CvPoint3D64f point1,CvPoint3D64f point2,double* dist); 586 CVAPI(float) icvDefinePointPosition(CvPoint2D32f point1,CvPoint2D32f point2,CvPoint2D32f point); 601 CVAPI(int) icvComCoeffForLine( CvPoint2D64f point1, 638 CVAPI(int) icvGetAngleLine( CvPoint2D64f startPoint, CvSize imageSize,CvPoint2D64f *point1,CvPoint2D64f *point2); 654 CvPoint2D32f point1, 660 CvPoint2D32f* point1, 675 CVAPI(void) icvGetPieceLength(CvPoint2D64f point1,CvPoint2D64f point2,double* dist); 713 CvPoint2D64f point1,CvPoint2D64f point2, 718 CVAPI(double) icvGetVect(CvPoint2D64f basePoint,CvPoint2D64f point1,CvPoint2D64f point2) [all...] |
/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]
|
/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);
|
/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));
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/ |
b2World.h | 120 /// @param point1 the ray starting point 122 void RayCast(b2RayCastCallback* callback, const b2Vec2& point1, const b2Vec2& point2) const;
|