Searched refs:center (Results 1 - 25 of 225) sorted by relevance

123456789

/external/skia/src/svg/
H A DSkSVGRadialGradient.cpp32 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/
H A DEmitterSphereShape.java44 private Vector3f center; field in class:EmitterSphereShape
50 public EmitterSphereShape(Vector3f center, float radius) { argument
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) { argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
H A DAbstractBox.java58 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 poin
166 updateGeometry(Vector3f center, float x, float y, float z) argument
[all...]
H A DDome.java62 /** The center of the dome */
63 private Vector3f center; field in class:Dome
95 * @param center
106 public Dome(Vector3f center, int planes, int radialSamples, argument
109 updateGeometry(center, planes, radialSamples, radius, true);
119 * @param center
133 public Dome(Vector3f center, int planes, int radialSamples, argument
136 updateGeometry(center, planes, radialSamples, radius, insideView);
140 return center;
174 * @param center th
180 updateGeometry(Vector3f center, int planes, int radialSamples, float radius, boolean insideView) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DRing.java41 * 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, argument
83 this.center = center;
90 * <code>getCenter</code> returns the center o
104 setCenter(Vector3f center) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/
H A DBoundingVolume.java78 protected Vector3f center = new Vector3f(); field in class:BoundingVolume
83 public BoundingVolume(Vector3f center) { argument
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 o
[all...]
H A DBoundingSphere.java51 * 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
[all...]
H A DBoundingBox.java53 * 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
[all...]
/external/aac/libAACenc/src/
H A Dchaosmeasure.cpp110 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/skia/src/animator/
H A DSkDrawMatrix.h45 void rotate(SkScalar degrees, SkPoint& center) { argument
46 fMatrix.preRotate(degrees, center.fX, center.fY);
53 void scale(SkScalar scaleX, SkScalar scaleY, SkPoint& center) { argument
54 fMatrix.preScale(scaleX, scaleY, center.fX, center.fY);
57 void skew(SkScalar skewX, SkScalar skewY, SkPoint& center) { argument
58 fMatrix.preSkew(skewX, skewY, center.fX, center.fY);
/external/chromium/chrome/browser/resources/gpu_internals/
H A Dtracing_controller.css7 text-align: center;
12 -webkit-box-pack: center;
13 -webkit-box-align: center;
22 text-align: center;
H A Doverlay.css17 -webkit-box-pack: center;
32 -webkit-box-pack: center;
H A Dprofiling_view.css30 text-align: center;
41 text-align: center;
/external/chromium-trace/src/tracing/
H A Dtracing_controller.css6 -webkit-box-align: center;
8 -webkit-box-pack: center;
11 text-align: center;
28 text-align: center;
H A Dprofiling_view.css20 text-align: center;
31 text-align: center;
H A Doverlay.css8 -webkit-box-pack: center;
28 -webkit-box-pack: center;
/external/webkit/Source/WebCore/rendering/
H A DGapRects.h32 const IntRect& center() const { return m_center; } function in struct:WebCore::GapRects
38 void unite(const GapRects& o) { uniteLeft(o.left()); uniteCenter(o.center()); uniteRight(o.right()); }
50 return m_left == other.left() && m_center == other.center() && m_right == other.right();
/external/webkit/Source/WebCore/css/
H A DthemeQtNoListboxes.css32 -webkit-box-align: center;
/external/clang/www/
H A Dmenu.css28 text-align: center;
34 text-align: center;
/external/compiler-rt/www/
H A Dmenu.css28 text-align: center;
34 text-align: center;
/external/skia/gm/
H A Dninepatchstretch.cpp12 static void make_bitmap(SkBitmap* bitmap, GrContext* ctx, SkIRect* center) { argument
36 center->setXYWH(kFixed, kFixed, kStretchy, kStretchy);
70 SkIRect center; local
71 make_bitmap(&bm, NULL /*SampleCode::GetGr()*/, &center);
74 const SkScalar fixed = SkIntToScalar(bm.width() - center.width());
96 canvas->drawBitmapNine(bm, center, r, &paint);
/external/skia/samplecode/
H A DSampleNinePatch.cpp13 static void make_bitmap(SkBitmap* bitmap, GrContext* ctx, SkIRect* center) { argument
37 center->setXYWH(kFixed, kFixed, kStretchy, kStretchy);
69 SkIRect center; local
70 make_bitmap(&bm, SampleCode::GetGr(), &center);
73 const SkScalar fixed = SkIntToScalar(bm.width() - center.width());
95 canvas->drawBitmapNine(bm, center, r, &paint);
/external/replicaisland/src/com/replica/replicaisland/
H A DSphereCollisionVolume.java67 public void setCenter(Vector2 center) { argument
68 mCenter.set(center);
159 private static void offsetByCenter(Vector2 position, Vector2 center, FlipInfo flip) { argument
162 position.x += flip.parentWidth - center.x;
164 position.x += center.x;
168 position.y += flip.parentHeight - center.y;
170 position.y += center.y;
173 position.add(center);
/external/chromium/chrome/browser/ui/cocoa/bookmarks/
H A Dbookmark_bar_unittest_helper.h35 // Return the center of the button in the base coordinate system of the
37 - (NSPoint)center;
47 // Return the center-left point of the button in the base coordinate system
51 // Return the center-right point of the button in the base coordinate system
/external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
H A DBIHTriangle.java43 private final Vector3f center = new Vector3f(); field in class:BIHTriangle
49 center.set(pointa);
50 center.addLocal(pointb).addLocal(pointc).multLocal(FastMath.ONE_THIRD);
66 return center;

Completed in 4422 milliseconds

123456789