Home
last modified time | relevance | path

Searched refs:point2 (Results 1 – 25 of 29) sorted by relevance

12

/external/libgdx/gdx/src/com/badlogic/gdx/math/
DPlane.java69 public Plane (Vector3 point1, Vector3 point2, Vector3 point3) { in Plane() argument
70 set(point1, point2, point3); in Plane()
79 public void set (Vector3 point1, Vector3 point2, Vector3 point3) { in set() argument
80 normal.set(point1).sub(point2).crs(point2.x-point3.x, point2.y-point3.y, point2.z-point3.z).nor(); in set()
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
DSimplexCollisionShape.java27 … public SimplexCollisionShape(Vector3f point1, Vector3f point2, Vector3f point3, Vector3f point4) { in SimplexCollisionShape() argument
29 vector2 = point2; in SimplexCollisionShape()
35 public SimplexCollisionShape(Vector3f point1, Vector3f point2, Vector3f point3) { in SimplexCollisionShape() argument
37 vector2 = point2; in SimplexCollisionShape()
42 public SimplexCollisionShape(Vector3f point1, Vector3f point2) { in SimplexCollisionShape() argument
44 vector2 = point2; in SimplexCollisionShape()
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
DSimplexCollisionShape.java27 … public SimplexCollisionShape(Vector3f point1, Vector3f point2, Vector3f point3, Vector3f point4) { in SimplexCollisionShape() argument
29 vector2 = point2; in SimplexCollisionShape()
35 public SimplexCollisionShape(Vector3f point1, Vector3f point2, Vector3f point3) { in SimplexCollisionShape() argument
37 vector2 = point2; in SimplexCollisionShape()
42 public SimplexCollisionShape(Vector3f point1, Vector3f point2) { in SimplexCollisionShape() argument
44 vector2 = point2; in SimplexCollisionShape()
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
Dgim_clip_polygon.h134 const CLASS_POINT & point2, in PLANE_CLIP_TRIANGLE_GENERIC() argument
162 dist = distance_func(plane,point2); in PLANE_CLIP_TRIANGLE_GENERIC()
165 point1,point2, in PLANE_CLIP_TRIANGLE_GENERIC()
176 point2,point0, in PLANE_CLIP_TRIANGLE_GENERIC()
202 const CLASS_POINT & point2, in PLANE_CLIP_TRIANGLE3D() argument
205 …return PLANE_CLIP_TRIANGLE_GENERIC<CLASS_POINT,CLASS_PLANE>(plane,point0,point1,point2,clipped,DIS… in PLANE_CLIP_TRIANGLE3D()
DbtClipPolygon.h126 const btVector3& point2, in bt_plane_clip_triangle() argument
155 dist = bt_distance_point_plane(plane,point2); in bt_plane_clip_triangle()
158 point1,point2, in bt_plane_clip_triangle()
169 point2,point0, in bt_plane_clip_triangle()
Dgim_basic_geometry_operations.h379 CLASS_POINT & point2, in LINE_INTERSECTION_PARAMS() argument
387 VEC_DIFF(p1p2,point1,point2); in LINE_INTERSECTION_PARAMS()
/external/opencv/cvaux/src/
Dcvmorphcontours.cpp554 CvPoint* point2; // array of second contour point in icvBlendContours() local
571 point2 = (CvPoint* )malloc( Nj*sizeof(CvPoint) ); in icvBlendContours()
575 cvCvtSeqToArray( contour2, point2, CV_WHOLE_SEQ ); in icvBlendContours()
579 point2[Nj-1] = point2[0]; in icvBlendContours()
596 point_output.x = cvRound(point1[i].x + param*( point2[corr_point].x - point1[i].x )); in icvBlendContours()
597 point_output.y = cvRound(point1[i].y + param*( point2[corr_point].y - point1[i].y )); in icvBlendContours()
634 CvPoint* point2; // array of second contour point in icvCalcContoursCorrespondence() local
659 point2 = (CvPoint* )malloc( Nj*sizeof(CvPoint) ); in icvCalcContoursCorrespondence()
665 cvCvtSeqToArray( contour2, point2, CV_WHOLE_SEQ ); in icvCalcContoursCorrespondence()
668 point2[Nj-1] = point2[0]; in icvCalcContoursCorrespondence()
[all …]
Dcvepilines.cpp77 CvPoint3D64d point2, in icvGetSymPoint3D() argument
87 icvGetPieceLength3D(pointCorner,point2,&len2); in icvGetSymPoint3D()
211 CvPoint2D64d point2; in icvComputeCoeffForStereoV3() local
225 point2.x = (1.0 - alpha) * quad1[1][0] + alpha * quad1[2][0]; in icvComputeCoeffForStereoV3()
226 point2.y = (1.0 - alpha) * quad1[1][1] + alpha * quad1[2][1]; in icvComputeCoeffForStereoV3()
236 point2, in icvComputeCoeffForStereoV3()
340 CvPoint2D64d point2, in icvComCoeffForLine() argument
369 icvGetDirectionForPoint( point2, in icvComCoeffForLine()
667 …vGetAngleLine( CvPoint2D64d startPoint, CvSize imageSize,CvPoint2D64d *point1,CvPoint2D64d *point2) in icvGetAngleLine() argument
695 *point2 = pc; in icvGetAngleLine()
[all …]
/external/skia/src/utils/win/
DSkDWriteGeometrySink.cpp121 { beziers->point2.x, beziers->point2.y }, in AddBeziers()
129 beziers->point2.x, beziers->point2.y, in AddBeziers()
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/flame/
DGradientPanel.java288 int point2 = (int)Math.ceil(percent2 * gradientWidth); in paintComponent() local
289 g.setPaint(new GradientPaint(point1, 0, color1, point2, 0, color2, false)); in paintComponent()
290 g.fillRect(point1, 0, point2 - point1, gradientHeight); in paintComponent()
385 float point2 = (i + 1) / (float)n * width; in paintComponent() local
386 g.setPaint(new GradientPaint(point1, 0, color1, point2, 0, color2, false)); in paintComponent()
387 g.fillRect((int)point1, 0, (int)Math.ceil(point2 - point1), height); in paintComponent()
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/particleeditor/
DGradientPanel.java291 int point2 = (int)Math.ceil(percent2 * gradientWidth); in paintComponent() local
292 g.setPaint(new GradientPaint(point1, 0, color1, point2, 0, color2, false)); in paintComponent()
293 g.fillRect(point1, 0, point2 - point1, gradientHeight); in paintComponent()
388 float point2 = (i + 1) / (float)n * width; in paintComponent() local
389 g.setPaint(new GradientPaint(point1, 0, color1, point2, 0, color2, false)); in paintComponent()
390 g.fillRect((int)point1, 0, (int)Math.ceil(point2 - point1), height); in paintComponent()
/external/skia/tests/
DCTest.cpp24 sk_point_t point2 = {30.0f, 40.0f}; in shader_test() local
45 &point, 10.0f, &point2, 50.0f, colors, nullptr, 2, tilemode, nullptr); in shader_test()
/external/opencv/cvaux/include/
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 …GetAngleLine( 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);
/external/clang/test/CodeGen/
Dstruct.c18 } point2; variable
21 point2.p1.a = 42; in fn2()
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
Dcv_util.py87 def SqDistance(point1, point2): argument
89 d = np.square(point1 - point2)
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/
DWorld.java347 Vec2 point2 = new Vec2(); field in World
351 public void rayCast (final RayCastCallback callback, Vector2 point1, Vector2 point2) { in rayCast() argument
352 rayCast(callback, point1.x, point1.y, point2.x, point2.y); in rayCast()
362 }, this.point1.set(point1X, point1Y), this.point2.set(point2X, point2Y)); in rayCast()
/external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
DbtQuantizedBvh.java100 public void quantizeWithClamp(java.nio.IntBuffer out, Vector3 point2, int isMax) { in quantizeWithClamp() argument
103 CollisionJNI.btQuantizedBvh_quantizeWithClamp(swigCPtr, this, out, point2, isMax); in quantizeWithClamp()
DCollision.java256 …e_clip_triangle(btVector4 plane, Vector3 point0, Vector3 point1, Vector3 point2, btVector3 clipped… in bt_plane_clip_triangle() argument
257 ….bt_plane_clip_triangle(btVector4.getCPtr(plane), plane, point0, point1, point2, btVector3.getCPtr… in bt_plane_clip_triangle()
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/shapebuilders/
DFrustumShapeBuilder.java126 private static Vector3 centerPoint (Vector3 point0, Vector3 point1, Vector3 point2) { in centerPoint() argument
129 tmpV0.set(point2).sub(point1).scl(0.5f); in centerPoint()
/external/pdfium/fpdfsdk/src/pdfwindow/
DPWL_EditCtrl.cpp51 CPDF_Point point2(1, 1); in IsWndHorV() local
54 mt.Transform(point2.x, point2.y); in IsWndHorV()
56 return point2.y == point1.y; in IsWndHorV()
/external/pdfium/xfa/src/fxbarcode/qrcode/
DBC_QRFinderPatternFinder.h51 static FX_FLOAT Distance(CBC_ResultPoint* point1, CBC_ResultPoint* point2);
DBC_QRFinderPatternFinder.cpp198 CBC_ResultPoint* point2) { in Distance() argument
199 FX_FLOAT dx = point1->GetX() - point2->GetX(); in Distance()
200 FX_FLOAT dy = point1->GetY() - point2->GetY(); in Distance()
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/
DWorld.java824 public void raycast(RayCastCallback callback, Vec2 point1, Vec2 point2) { in raycast() argument
829 input.p2.set(point2); in raycast()
844 Vec2 point1, Vec2 point2) { in raycast() argument
849 input.p2.set(point2); in raycast()
851 m_particleSystem.raycast(particleCallback, point1, point2); in raycast()
862 public void raycast(ParticleRaycastCallback particleCallback, Vec2 point1, Vec2 point2) { in raycast() argument
863 m_particleSystem.raycast(particleCallback, point1, point2); in raycast()
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
DbtQuantizedBvh.h419 …SIMD_FORCE_INLINE void quantizeWithClamp(unsigned short* out, const btVector3& point2,int isMax) c… in ATTRIBUTE_ALIGNED16()
424 btVector3 clampedPoint(point2); in ATTRIBUTE_ALIGNED16()
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/
Db2World.h122 void RayCast(b2RayCastCallback* callback, const b2Vec2& point1, const b2Vec2& point2) const;

12