Searched refs:point2 (Results 1 - 25 of 36) sorted by relevance

12

/external/libgdx/gdx/src/com/badlogic/gdx/math/
H A DPlane.java64 * cross product between (point1-point2)x(point2-point3)
67 * @param point2 The second point
69 public Plane (Vector3 point1, Vector3 point2, Vector3 point3) { argument
70 set(point1, point2, point3);
74 * The normal is calculated via a cross product between (point1-point2)x(point2-point3)
77 * @param point2
79 public void set (Vector3 point1, Vector3 point2, Vector3 point3) { argument
80 normal.set(point1).sub(point2)
[all...]
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
H A Dgim_clip_polygon.h134 const CLASS_POINT & point2,
162 dist = distance_func(plane,point2);
165 point1,point2,
176 point2,point0,
202 const CLASS_POINT & point2,
205 return PLANE_CLIP_TRIANGLE_GENERIC<CLASS_POINT,CLASS_PLANE>(plane,point0,point1,point2,clipped,DISTANCE_PLANE_3D_FUNC());
130 PLANE_CLIP_TRIANGLE_GENERIC( const CLASS_PLANE & plane, const CLASS_POINT & point0, const CLASS_POINT & point1, const CLASS_POINT & point2, CLASS_POINT * clipped,DISTANCE_PLANE_FUNC distance_func) argument
198 PLANE_CLIP_TRIANGLE3D( const CLASS_PLANE & plane, const CLASS_POINT & point0, const CLASS_POINT & point1, const CLASS_POINT & point2, CLASS_POINT * clipped) argument
H A DbtClipPolygon.h126 const btVector3& point2,
155 dist = bt_distance_point_plane(plane,point2);
158 point1,point2,
169 point2,point0,
122 bt_plane_clip_triangle( const btVector4 & plane, const btVector3 & point0, const btVector3 & point1, const btVector3& point2, btVector3 * clipped ) argument
H A Dgim_basic_geometry_operations.h368 \param point2 Point of line 2
379 CLASS_POINT & point2,
387 VEC_DIFF(p1p2,point1,point2);
/external/skia/src/utils/win/
H A DSkDWriteGeometrySink.cpp121 { beziers->point2.x, beziers->point2.y },
129 beziers->point2.x, beziers->point2.y,
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
H A Dcv_util.py87 def SqDistance(point1, point2):
89 d = np.square(point1 - point2)
/external/clang/test/CodeGen/
H A Dstruct.c18 } point2; variable in typeref:struct:__anon2239
21 point2.p1.a = 42;
/external/skia/tests/
H A DCTest.cpp24 sk_point_t point2 = {30.0f, 40.0f}; local
45 &point, 10.0f, &point2, 50.0f, colors, nullptr, 2, tilemode, nullptr);
/external/opencv/cvaux/src/
H A Dcvmorphcontours.cpp554 CvPoint* point2; // array of second contour point local
571 point2 = (CvPoint* )malloc( Nj*sizeof(CvPoint) );
575 cvCvtSeqToArray( contour2, point2, CV_WHOLE_SEQ );
579 point2[Nj-1] = point2[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 ));
634 CvPoint* point2; // array of second contour point local
659 point2 = (CvPoint* )malloc( Nj*sizeof(CvPoint) );
665 cvCvtSeqToArray( contour2, point2, CV_WHOLE_SE
[all...]
H A Dcvepilines.cpp77 CvPoint3D64d point2,
87 icvGetPieceLength3D(pointCorner,point2,&len2);
211 CvPoint2D64d point2; local
225 point2.x = (1.0 - alpha) * quad1[1][0] + alpha * quad1[2][0];
226 point2.y = (1.0 - alpha) * quad1[1][1] + alpha * quad1[2][1];
236 point2,
340 CvPoint2D64d point2,
369 icvGetDirectionForPoint( point2,
667 int icvGetAngleLine( CvPoint2D64d startPoint, CvSize imageSize,CvPoint2D64d *point1,CvPoint2D64d *point2) argument
695 *point2
75 icvGetSymPoint3D( CvPoint3D64d pointCorner, CvPoint3D64d point1, CvPoint3D64d point2, CvPoint3D64d *pointSym2) argument
339 icvComCoeffForLine( CvPoint2D64d point1, CvPoint2D64d point2, CvPoint2D64d point3, CvPoint2D64d point4, CvMatr64d camMatr1, CvMatr64d rotMatr1, CvMatr64d transVect1, CvMatr64d camMatr2, CvMatr64d rotMatr2, CvMatr64d transVect2, CvStereoLineCoeff* coeffs, int* needSwapCamera) argument
1151 icvGetPieceLength(CvPoint2D64d point1,CvPoint2D64d point2,double* dist) argument
1161 icvGetPieceLength3D(CvPoint3D64d point1,CvPoint3D64d point2,double* dist) argument
2001 icvGetMiddleAnglePoint( CvPoint2D64d basePoint, CvPoint2D64d point1,CvPoint2D64d point2, CvPoint2D64d* midPoint) argument
2037 icvGetVect(CvPoint2D64d basePoint,CvPoint2D64d point1,CvPoint2D64d point2) argument
2051 CvPoint2D64d point1,point2; local
2274 GetAngleLinee( CvPoint2D32f epipole, CvSize imageSize,CvPoint2D32f point1,CvPoint2D32f point2) argument
[all...]
/external/opencv3/3rdparty/openexr/Imath/
H A DImathPlane.h73 const Vec3<T> &point2,
87 const Vec3<T> &point2,
141 const Vec3<T>& point2,
144 normal = (point2 - point1) % (point3 - point1);
140 set(const Vec3<T>& point1, const Vec3<T>& point2, const Vec3<T>& point3) argument
H A DImathLine.h66 Line3(const Vec3<T>& point1, const Vec3<T>& point2);
73 const Vec3<T>& point2);
H A DImathLineAlgo.h53 // Vec3<T>& point2)
87 Vec3<T>& point2)
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,
111 point2 = line2 (n2 / d);
83 closestPoints(const Line3<T>& line1, const Line3<T>& line2, Vec3<T>& point1, Vec3<T>& point2) argument
/external/pdfium/xfa/src/fxbarcode/qrcode/
H A DBC_QRFinderPatternFinder.h51 static FX_FLOAT Distance(CBC_ResultPoint* point1, CBC_ResultPoint* point2);
H A DBC_QRFinderPatternFinder.cpp198 CBC_ResultPoint* point2) {
199 FX_FLOAT dx = point1->GetX() - point2->GetX();
200 FX_FLOAT dy = point1->GetY() - point2->GetY();
197 Distance(CBC_ResultPoint* point1, CBC_ResultPoint* point2) argument
/external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
H A DbtQuantizedBvh.java100 public void quantizeWithClamp(java.nio.IntBuffer out, Vector3 point2, int isMax) { argument
103 CollisionJNI.btQuantizedBvh_quantizeWithClamp(swigCPtr, this, out, point2, isMax);
H A DCollision.java256 public static int bt_plane_clip_triangle(btVector4 plane, Vector3 point0, Vector3 point1, Vector3 point2, btVector3 clipped) { argument
257 return CollisionJNI.bt_plane_clip_triangle(btVector4.getCPtr(plane), plane, point0, point1, point2, btVector3.getCPtr(clipped), clipped);
/external/opencv/cvaux/include/
H A Dcvaux.h560 CvPoint3D64f point2,
563 CVAPI(void) icvGetPieceLength3D(CvPoint3D64f point1,CvPoint3D64f point2,double* dist);
586 CVAPI(float) icvDefinePointPosition(CvPoint2D32f point1,CvPoint2D32f point2,CvPoint2D32f point);
602 CvPoint2D64f point2,
638 CVAPI(int) icvGetAngleLine( CvPoint2D64f startPoint, CvSize imageSize,CvPoint2D64f *point1,CvPoint2D64f *point2);
655 CvPoint2D32f *point2);
661 CvPoint2D32f point2);
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...]
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/flame/
H A DGradientPanel.java288 int point2 = (int)Math.ceil(percent2 * gradientWidth);
289 g.setPaint(new GradientPaint(point1, 0, color1, point2, 0, color2, false));
290 g.fillRect(point1, 0, point2 - point1, gradientHeight);
385 float point2 = (i + 1) / (float)n * width;
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/
H A DGradientPanel.java291 int point2 = (int)Math.ceil(percent2 * gradientWidth);
292 g.setPaint(new GradientPaint(point1, 0, color1, point2, 0, color2, false));
293 g.fillRect(point1, 0, point2 - point1, gradientHeight);
388 float point2 = (i + 1) / (float)n * width;
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/gdx/src/com/badlogic/gdx/graphics/g3d/utils/shapebuilders/
H A DFrustumShapeBuilder.java124 * @param point2
126 private static Vector3 centerPoint (Vector3 point0, Vector3 point1, Vector3 point2) { argument
129 tmpV0.set(point2).sub(point1).scl(0.5f);
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/
H A DWorld.java345 * @param point2 the ray ending point */
347 Vec2 point2 = new Vec2(); field in class:World
351 public void rayCast (final RayCastCallback callback, Vector2 point1, Vector2 point2) { argument
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/
H A Db2World.h121 /// @param point2 the ray ending point
122 void RayCast(b2RayCastCallback* callback, const b2Vec2& point1, const b2Vec2& point2) const;
/external/pdfium/fpdfsdk/src/pdfwindow/
H A DPWL_EditCtrl.cpp51 CPDF_Point point2(1, 1);
54 mt.Transform(point2.x, point2.y);
56 return point2.y == point1.y;
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
H A DbtQuantizedBvh.h419 SIMD_FORCE_INLINE void quantizeWithClamp(unsigned short* out, const btVector3& point2,int isMax) const argument
424 btVector3 clampedPoint(point2);

Completed in 1523 milliseconds

12