Searched defs:points (Results 1 - 25 of 137) sorted by relevance

123456

/external/webkit/Source/WebCore/platform/qt/
H A DPlatformTouchEventQt.cpp38 const QList<QTouchEvent::TouchPoint>& points = event->touchPoints(); local
39 for (int i = 0; i < points.count(); ++i)
40 m_touchPoints.append(PlatformTouchPoint(points.at(i)));
/external/skia/src/svg/
H A DSkSVGLinearGradient.cpp31 SkString points; local
32 points.appendUnichar('[');
33 points.append(f_x1);
34 points.appendUnichar(',');
35 points.append(f_y1);
36 points.appendUnichar(',');
37 points.append(f_x2);
38 points.appendUnichar(',');
39 points.append(f_y2);
40 points
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/debug/
H A DWireFrustum.java44 public WireFrustum(Vector3f[] points){ argument
45 if (points != null)
46 setBuffer(Type.Position, 3, BufferUtils.createFloatBuffer(points));
69 public void update(Vector3f[] points){ argument
72 setBuffer(Type.Position, 3, BufferUtils.createFloatBuffer(points));
76 FloatBuffer b = BufferUtils.createFloatBuffer(points);
H A DSkeletonDebugger.java43 private SkeletonPoints points; field in class:SkeletonDebugger
51 points = new SkeletonPoints(skeleton);
54 attachChild(new Geometry(name+"_points", points));
68 points.updateGeometry();
72 return points;
/external/jmonkeyengine/engine/src/core/com/jme3/shadow/
H A DShadowCamera.java47 private Vector3f[] points = new Vector3f[8]; field in class:ShadowCamera
52 for (int i = 0; i < points.length; i++) {
53 points[i] = new Vector3f();
H A DShadowUtil.java61 * Updates a points arrays with the frustum corners of the provided camera.
63 * @param points
65 public static void updateFrustumPoints2(Camera viewCam, Vector3f[] points) { argument
71 points[0].set(viewCam.getWorldCoordinates(new Vector2f(0, 0), n));
72 points[1].set(viewCam.getWorldCoordinates(new Vector2f(0, h), n));
73 points[2].set(viewCam.getWorldCoordinates(new Vector2f(w, h), n));
74 points[3].set(viewCam.getWorldCoordinates(new Vector2f(w, 0), n));
76 points[4].set(viewCam.getWorldCoordinates(new Vector2f(0, 0), f));
77 points[5].set(viewCam.getWorldCoordinates(new Vector2f(0, h), f));
78 points[
93 updateFrustumPoints(Camera viewCam, float nearOverride, float farOverride, float scale, Vector3f[] points) argument
277 updateShadowCamera(Camera shadowCam, Vector3f[] points) argument
331 updateShadowCamera(GeometryList occluders, GeometryList receivers, Camera shadowCam, Vector3f[] points) argument
347 updateShadowCamera(GeometryList occluders, GeometryList receivers, Camera shadowCam, Vector3f[] points, GeometryList splitOccluders) argument
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGPolygonElement.cpp44 SVGPointList& points = pointList(); local
45 if (points.isEmpty())
48 path.moveTo(points.first());
50 unsigned size = points.size();
52 path.addLineTo(points.at(i));
H A DSVGPolylineElement.cpp44 SVGPointList& points = pointList(); local
45 if (points.isEmpty())
48 path.moveTo(points.first());
50 unsigned size = points.size();
52 path.addLineTo(points.at(i));
H A DSVGPolyElement.cpp51 document()->accessSVGExtensions()->reportError("Problem parsing points=\"" + value + "\"");
131 SVGListPropertyTearOff<SVGPointList>* SVGPolyElement::points() function in class:WebCore::SVGPolyElement
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DCRLDistPoint.java44 DistributionPoint[] points)
48 for (int i = 0; i != points.length; i++)
50 v.add(points[i]);
57 * Return the distribution points making up the sequence.
43 CRLDistPoint( DistributionPoint[] points) argument
/external/chromium/ui/gfx/
H A Dpoint.cc23 POINTS points = MAKEPOINTS(point); local
24 x_ = points.x;
25 y_ = points.y;
/external/eigen/Eigen/src/Eigen2Support/
H A DLeastSquares.h19 * For a set of points, this function tries to express
23 * generality, for points in a space of arbitrary dimension, and also over
27 * So let us work with the following set of 5 points given by their
30 Vector3d points[5];
31 points[0] = Vector3d( 3.02, 6.89, -4.32 );
32 points[1] = Vector3d( 2.01, 5.39, -3.79 );
33 points[2] = Vector3d( 2.41, 6.01, -4.01 );
34 points[3] = Vector3d( 2.09, 5.55, -3.86 );
35 points[4] = Vector3d( 2.58, 6.32, -4.10 );
42 * best the five above points
85 linearRegression(int numPoints, VectorType **points, VectorType *result, int funcOfOthers ) argument
130 fitHyperplane(int numPoints, VectorType **points, HyperplaneType *result, typename NumTraits<typename VectorType::Scalar>::Real* soundness = 0) argument
[all...]
/external/eigen/unsupported/test/
H A Dsplines.cpp203 ControlPointVectorType points = ControlPointVectorType::Random(2,100); local
206 Eigen::ChordLengths(points, chord_lengths);
210 const Spline2d spline = SplineFitting<Spline2d>::Interpolate(points,3);
212 for (Eigen::DenseIndex i=0; i<points.cols(); ++i)
215 PointType ref = points.col(i);
222 const Spline2d spline = SplineFitting<Spline2d>::Interpolate(points,3,chord_lengths);
224 for (Eigen::DenseIndex i=0; i<points.cols(); ++i)
227 PointType ref = points.col(i);
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
H A DHullCollisionShape.java18 private float[] points; field in class:HullCollisionShape
25 this.points = getPoints(mesh);
29 public HullCollisionShape(float[] points) { argument
30 this.points = points;
39 capsule.write(points, "points", null);
50 this.points = getPoints(mesh);
52 this.points = capsule.readFloatArray("points", nul
84 createShape(ByteBuffer points) argument
[all...]
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DHullCollisionShape.java18 private float[] points; field in class:HullCollisionShape
24 this.points = getPoints(mesh);
25 createShape(this.points);
28 public HullCollisionShape(float[] points) { argument
29 this.points = points;
30 createShape(this.points);
38 capsule.write(points, "points", null);
49 this.points
57 createShape(float[] points) argument
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/light/
H A DTestShadow.java58 private Vector3f[] points; field in class:TestShadow
61 points = new Vector3f[8];
62 for (int i = 0; i < points.length; i++) points[i] = new Vector3f();
114 ShadowUtil.updateFrustumPoints2(shadowCam, points);
116 frustum.update(points);
/external/skia/legacy/src/animator/
H A DSkDrawGradient.h48 SkTDScalarArray points; member in class:SkLinearGradient
H A DSkDrawPath.h57 SkTDScalarArray points; member in class:SkPolyline
/external/skia/src/animator/
H A DSkDrawGradient.h48 SkTDScalarArray points; member in class:SkDrawLinearGradient
H A DSkDrawPath.h57 SkTDScalarArray points; member in class:SkPolyline
/external/webkit/Source/WebCore/platform/efl/
H A DPlatformTouchEventEfl.cpp37 PlatformTouchEvent::PlatformTouchEvent(Eina_List* points, const IntPoint pos, TouchEventType type, int metaState) argument
46 EINA_LIST_FREE(points, point) {
/external/skia/tests/
H A DFlatDataTest.cpp55 SkPoint points[2]; local
56 points[0].set(0, 0);
57 points[1].set(SkIntToScalar(20), SkIntToScalar(20));
61 SkShader* shader = SkGradientShader::CreateLinear(points, colors, NULL,
/external/eigen/test/eigen2/
H A Deigen2_regression.cpp16 VectorType **points,
21 const int size = points[0]->size();
31 // now pick numPoints random points on this hyperplane
34 VectorType& cur_point = *(points[i]);
45 // add some noise to these points
47 *(points[i]) += noiseAmplitude * VectorType::Random(size);
52 VectorType **points,
56 int size = points[0]->size();
59 linearRegression(numPoints, points, &result, 1);
67 VectorType **points,
15 makeNoisyCohyperplanarPoints(int numPoints, VectorType **points, HyperplaneType *hyperplane, typename VectorType::Scalar noiseAmplitude) argument
51 check_linearRegression(int numPoints, VectorType **points, const VectorType& original, typename VectorType::Scalar tolerance) argument
66 check_fitHyperplane(int numPoints, VectorType **points, const HyperplaneType& original, typename VectorType::Scalar tolerance) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DLine.java42 * two points. The two points of the line are defined as the origin and direction.
130 public void orthogonalLineFit(FloatBuffer points) { argument
131 if (points == null) {
142 points.rewind();
144 // compute average of points
145 int length = points.remaining() / 3;
147 BufferUtils.populateFromBuffer(origin, points, 0);
149 BufferUtils.populateFromBuffer(compVec1, points, i);
159 points
[all...]
/external/webkit/Source/WebCore/platform/graphics/
H A DPath.cpp50 FloatPoint* points = element->points; local
54 segmentLength = traversalState.moveTo(points[0]);
57 segmentLength = traversalState.lineTo(points[0]);
60 segmentLength = traversalState.quadraticBezierTo(points[0], points[1]);
63 segmentLength = traversalState.cubicBezierTo(points[0], points[1], points[2]);

Completed in 429 milliseconds

123456