HomeSort by relevance Sort by last modified time
    Searched refs:center (Results 1 - 25 of 488) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/clustering/
Cluster.java 38 /** Center of the cluster. */
39 private final T center; field in class:Cluster
43 * @param center the point which is to be the center of this cluster
45 public Cluster(final T center) {
46 this.center = center;
67 * Get the point chosen to be the center of this cluster.
68 * @return chosen cluster center
71 return center;
    [all...]
  /external/skia/src/svg/parser/
SkSVGRadialGradient.cpp 32 SkString center; local
33 center.appendUnichar('[');
34 center.append(f_cx);
35 center.appendUnichar(',');
36 center.append(f_cy);
37 center.appendUnichar(']');
38 parser._addAttribute("center", center);
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
EmitterSphereShape.java 44 private Vector3f center; field in class:EmitterSphereShape
50 public EmitterSphereShape(Vector3f center, float radius) {
51 if (center == null) {
59 this.center = center;
67 clone.center = center.clone();
80 } while (store.distance(center) > radius);
89 return center;
92 public void setCenter(Vector3f center) {
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/
h264bsdFillRow7.s 30 center RN 3 label
71 ASR tmp2,center,#2
86 ; SUB center, center, #4
90 ; SUB center, center, #4
94 ; SUB center, center, #4
98 ; SUB center, center, #
    [all...]
  /external/skia/src/animator/
SkDrawMatrix.h 45 void rotate(SkScalar degrees, SkPoint& center) {
46 fMatrix.preRotate(degrees, center.fX, center.fY);
53 void scale(SkScalar scaleX, SkScalar scaleY, SkPoint& center) {
54 fMatrix.preScale(scaleX, scaleY, center.fX, center.fY);
57 void skew(SkScalar skewX, SkScalar skewY, SkPoint& center) {
58 fMatrix.preSkew(skewX, skewY, center.fX, center.fY);
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
AbstractBox.java 58 public final Vector3f center = new Vector3f(0f, 0f, 0f); field in class:AbstractBox
78 center.subtract(axes[0]).subtractLocal(axes[1]).subtractLocal(axes[2]),
79 center.add(axes[0]).subtractLocal(axes[1]).subtractLocal(axes[2]),
80 center.add(axes[0]).addLocal(axes[1]).subtractLocal(axes[2]),
81 center.subtract(axes[0]).addLocal(axes[1]).subtractLocal(axes[2]),
82 center.add(axes[0]).subtractLocal(axes[1]).addLocal(axes[2]),
83 center.subtract(axes[0]).subtractLocal(axes[1]).addLocal(axes[2]),
84 center.add(axes[0]).addLocal(axes[1]).addLocal(axes[2]),
85 center.subtract(axes[0]).addLocal(axes[1]).addLocal(axes[2])
115 * Get the center point of this box.
    [all...]
Dome.java 62 /** The center of the dome */
63 private Vector3f center; field in class:Dome
95 * @param center
96 * Center of the dome.
106 public Dome(Vector3f center, int planes, int radialSamples,
109 updateGeometry(center, planes, radialSamples, radius, true);
119 * @param center
120 * Center of the dome.
133 public Dome(Vector3f center, int planes, int radialSamples,
136 updateGeometry(center, planes, radialSamples, radius, insideView)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Ring.java 41 * space that is specified via the ring's center point, an up vector, an inner
52 private Vector3f center, up; field in class:Ring
62 center = new Vector3f();
69 * Constructor creates a new <code>Ring</code> with defined center point,
72 * @param center
73 * the center of the ring.
81 public Ring(Vector3f center, Vector3f up, float innerRadius,
83 this.center = center;
90 * <code>getCenter</code> returns the center of the ring.
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
Rectangle.java 45 public static Rectangle fromRotatedRect(Point center, Point size, float rotation) {
46 Point p0 = new Point(center.x - size.x/2f, center.y - size.y/2f);
47 Point p1 = new Point(center.x + size.x/2f, center.y - size.y/2f);
48 Point p2 = new Point(center.x - size.x/2f, center.y + size.y/2f);
49 Point p3 = new Point(center.x + size.x/2f, center.y + size.y/2f);
50 return new Rectangle(p0.rotatedAround(center, rotation)
77 public Point center() { method in class:Rectangle
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/bounding/
BoundingVolume.java 78 protected Vector3f center = new Vector3f(); field in class:BoundingVolume
83 public BoundingVolume(Vector3f center) {
84 this.center.set(center);
192 return center;
196 store.set(center);
201 center.set(newCenter);
205 * Find the distance from the center of this Bounding Volume to the given
213 return center.distance(point);
217 * Find the squared distance from the center of this Bounding Volume to the
    [all...]
BoundingSphere.java 51 * radius and a center. <br>
53 * A typical usage is to allow the class define the center and radius by calling
80 * the center of the sphere.
83 this.center.set(c);
184 if (center == null) {
185 center = new Vector3f();
220 this.center.set(0, 0, 0);
224 BufferUtils.populateFromBuffer(center, points, ap - 1);
248 if (tempA.distanceSquared(center) - (radius * radius) > RADIUS_EPSILON - 1f) {
283 center.set(0, 0, 0);
    [all...]
BoundingBox.java 53 * defines a center and extents from that center along the x, y and z axis. <br>
55 * A typical usage is to allow the class define the center and radius by calling
78 this.center.set(c);
85 this.center.set(source.center);
138 center.set(min.addLocal(max));
139 center.multLocal(0.5f);
141 xExtent = max.x - center.x;
142 yExtent = max.y - center.y;
    [all...]
  /external/aac/libAACenc/src/
chaosmeasure.cpp 110 FIXP_DBL left,center; /* left, center tap of filter */ local
113 center = (FIXP_DBL)((LONG)paMDCTDataNM0[i+2]^((LONG)paMDCTDataNM0[i+2]>>(DFRACT_BITS-1)));
119 if (tmp < center ) {
120 INT leadingBits = CntLeadingZeros(center)-1;
121 tmp = schur_div(tmp<<leadingBits, center<<leadingBits, 8);
128 left = center;
129 center = right;
  /external/chromium-trace/trace-viewer/tracing/tracing/ui/base/
tool_button.css 7 background-position: center center;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
h264bsdFillRow7.S 30 #define center r3 define
44 void h264bsdFillRow7(const u8 * ref, u8 * fill, i32 left, i32 center,
62 ASR tmp2,center,#2
78 SUB center, center, #32
84 SUB center, center, #28
91 SUB center, center, #24
96 SUB center, center, #2
    [all...]
  /developers/build/prebuilts/gradle/PermissionRequest/Application/src/main/assets/
sample.css 18 text-align: center;
  /developers/samples/android/content/webview/PermissionRequest/Application/src/main/assets/
sample.css 18 text-align: center;
  /external/clang/www/
menu.css 28 text-align: center;
34 text-align: center;
  /external/compiler-rt/www/
menu.css 28 text-align: center;
34 text-align: center;
  /external/libcxx/www/
menu.css 28 text-align: center;
34 text-align: center;
  /external/libcxxabi/www/
menu.css 28 text-align: center;
34 text-align: center;
  /external/skia/gm/
stringart.cpp 38 SkPoint center = SkPoint::Make(SkScalarHalf(kWidth), SkScalarHalf(kHeight)); variable
43 path.moveTo(center);
47 SkPoint rp = SkPoint::Make(length*SkScalarCos(step) + center.fX,
48 length*SkScalarSin(step) + center.fY);
  /external/skia/samplecode/
SampleStringArt.cpp 33 SkPoint center = SkPoint::Make(SkScalarHalf(this->width()), SkScalarHalf(this->height())); variable
38 path.moveTo(center);
42 SkPoint rp = SkPoint::Make(length*SkScalarCos(step) + center.fX,
43 length*SkScalarSin(step) + center.fY);
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
fisheye.rsh 20 static float2 center, neg_center, inv_dimensions, axis_scale;
24 center.x = center_x;
25 center.y = center_y;
26 neg_center = -center;
46 // Convert x and y to floating point coordinates with center as origin
54 const float2 new_coord = mad(coord, scalar, center);
fisheye_approx.rsh 20 static float2 center, neg_center, inv_dimensions, axis_scale;
24 center.x = center_x;
25 center.y = center_y;
26 neg_center = -center;
46 // Convert x and y to floating point coordinates with center as origin
54 const float2 new_coord = mad(coord, scalar, center);

Completed in 516 milliseconds

1 2 3 4 5 6 7 8 91011>>