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

1 2 3 4

  /frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
package-info.java 4 package android.filterfw.geometry;
Rectangle.java 18 package android.filterfw.geometry;
20 import android.filterfw.geometry.Point;
21 import android.filterfw.geometry.Quad;
  /external/grub/stage2/
bios.c 45 /* Read/write NSEC sectors starting from SECTOR in DRIVE disk with GEOMETRY
47 else if READ is BIOSDISK_WRITE, then write it. If an geometry error
51 biosdisk (int read, int drive, struct geometry *geometry,
56 if (geometry->flags & BIOSDISK_FLAG_LBA_EXTENSION)
67 /* XXX: Don't check the geometry by default, because some buggy
71 if (sector >= geometry->total_sectors)
91 if (geometry->flags & BIOSDISK_FLAG_CDROM)
94 geometry->flags &= ~BIOSDISK_FLAG_LBA_EXTENSION;
95 geometry->total_sectors = (geometry->cylinder
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/collision/
CollisionResult.java 37 import com.jme3.scene.Geometry;
49 private Geometry geometry; field in class:CollisionResult
55 public CollisionResult(Geometry geometry, Vector3f contactPoint, float distance, int triangleIndex) {
56 this.geometry = geometry;
70 public void setGeometry(Geometry geom){
71 this.geometry = geom;
94 Mesh m = geometry.getMesh()
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/meshes/
MeshContext.java 4 import com.jme3.scene.Geometry;
17 private List<Geometry> mesh;
23 private Map<Geometry, VertexBuffer> uvCoordinates = new HashMap<Geometry, VertexBuffer>();
30 public List<Geometry> getMesh() {
40 public void setMesh(List<Geometry> mesh) {
86 * @param geometry
91 public void addUVCoordinates(Geometry geometry, VertexBuffer vertexBuffer) {
92 uvCoordinates.put(geometry, vertexBuffer);
    [all...]
  /external/webkit/Source/WebCore/platform/gtk/
PlatformScreenGtk.cpp 105 GdkRectangle geometry; local
106 gdk_screen_get_monitor_geometry(screen, monitor, &geometry);
108 return FloatRect(geometry.x, geometry.y, geometry.width, geometry.height);
  /external/grub/lib/
device.h 36 extern void get_drive_geometry (struct geometry *geom, char **map, int drive);
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/util/
DebugShapeFactory.java 38 import com.jme3.scene.Geometry;
76 Geometry geometry = createDebugShape(ccollisionShape); local
79 geometry.setLocalTranslation(childCollisionShape.location);
85 tempRot.set(geometry.getLocalRotation());
87 geometry.setLocalRotation(tempRot);
91 node.attachChild(geometry);
104 private static Geometry createDebugShape(CollisionShape shape) {
105 Geometry geom = new Geometry();
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
DrawQuadData.h 51 const SkRect* geometry = 0,
57 , m_geometry(geometry)
80 const SkRect* geometry() const { return m_geometry; } function in class:WebCore::DrawQuadData
113 const SkRect* geometry = 0,
116 : DrawQuadData(type, drawMatrix, geometry, opacity, forceBlending)
143 const SkRect* geometry = 0,
148 : DrawQuadData(type, drawMatrix, geometry, opacity, forceBlending, fillPortion)
ShaderProgram.cpp 786 // Calculate the matrix given the geometry.
794 const SkRect* geometry = data->geometry(); local
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestCollisionShapeFactory.java 42 import com.jme3.scene.Geometry;
88 //test single geometry too
89 Geometry myGeom = new Geometry("cylinder", new Cylinder(16, 16, 0.5f, 1));
101 Geometry[] boxes = new Geometry[]{
102 new Geometry("box1", box),
103 new Geometry("box2", box),
104 new Geometry("box3", box),
105 new Geometry("torus1", torus)
110 Geometry geometry = boxes[i]; local
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
SimpleBatchNode.java 31 if (!(child instanceof Geometry)) {
32 throw new UnsupportedOperationException("BatchNode is BatchMode.Simple only support child of type Geometry, use BatchMode.Complex to use a complex structure");
44 batch.geometry.setTransformRefresh();
48 protected Transform getTransforms(Geometry geom){
BatchNode.java 55 * There is one geometry per different material in the sub tree.
59 * all the geometry that have been batched are set to {@link CullHint#Always} to not render them.
73 * the map of geometry holding the batched meshes
122 batch.geometry.getMesh().updateBound();
123 batch.geometry.updateWorldBound();
139 protected Transform getTransforms(Geometry geom) {
143 protected void updateSubBatch(Geometry bg) {
146 Mesh mesh = batch.geometry.getMesh();
172 * every geometry of the sub scene graph of this node will be batched into a single mesh that will be rendered in one call
178 batch.geometry.setIgnoreTransform(true)
643 Geometry geometry; field in class:BatchNode.Batch
    [all...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
QtFallbackWebPopup.h 53 QRect geometry() const { return m_geometry; } function in class:WebCore::QtFallbackWebPopup
PopupMenuQt.cpp 115 QRect geometry(rect);
116 geometry.moveTopLeft(view->contentsToWindow(rect.location()));
117 fallback->setGeometry(geometry);
  /external/skia/include/core/
SkDeviceProperties.h 17 struct Geometry {
33 /** The layout of the pixel specifies its subpixel geometry.
79 static Geometry MakeDefault() {
82 Geometry ret = { SkToU8(orientation | layout) };
86 static Geometry Make(Orientation orientation, Layout layout) {
87 Geometry ret = { SkToU8(orientation | layout) };
95 SkDeviceProperties ret = { Geometry::MakeDefault(), SK_GAMMA_EXPONENT };
99 static SkDeviceProperties Make(Geometry geometry, SkScalar gamma) {
100 SkDeviceProperties ret = { geometry, gamma }
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/
MirrorModifier.java 4 import com.jme3.scene.Geometry;
97 List<Geometry> geometriesToAdd = new ArrayList<Geometry>();
101 if (spatial instanceof Geometry) {
102 Mesh mesh = ((Geometry) spatial).getMesh();
154 Geometry geometry = new Geometry(null, clone); local
155 geometry.setMaterial(((Geometry) spatial).getMaterial());
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/util/
DebugShapeFactory.java 43 import com.jme3.scene.Geometry;
85 Geometry geometry = createDebugShape(ccollisionShape); local
88 geometry.setLocalTranslation(childCollisionShape.location);
95 tempRot.set(geometry.getLocalRotation());
97 geometry.setLocalRotation(tempRot);
101 node.attachChild(geometry);
114 private static Geometry createDebugShape(CollisionShape shape) {
115 Geometry geom = new Geometry();
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
UVCoordinatesGenerator.java 39 import com.jme3.scene.Geometry;
98 public static VertexBuffer generateUVCoordinates(int texco, int projection, int textureDimension, int[] coordinatesSwappingIndexes, List<Geometry> geometries) {
187 for (Geometry geometry : geometries) {
188 mesh = geometry.getMesh();
202 /* package */static BoundingBox getBoundingBox(List<Geometry> geometries) {
204 for (Geometry geometry : geometries) {
205 BoundingBox bb = UVCoordinatesGenerator.getBoundingBox(geometry.getMesh());
241 /* package */static BoundingSphere getBoundingSphere(List<Geometry> geometries)
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
CropFilter.java 31 import android.filterfw.geometry.Point;
32 import android.filterfw.geometry.Quad;
FixedRotationFilter.java 28 import android.filterfw.geometry.Point;
29 import android.filterfw.geometry.Quad;
  /packages/apps/Gallery2/jni/
Android.mk 38 filters/geometry.c \
  /external/webkit/Tools/EWebLauncher/
main.c 118 ('g', "geometry", "geometry to use in x:y:w:h form.", "X:Y:W:H",
164 static int browserCreate(const char *url, const char *theme, const char *userAgent, Eina_Rectangle geometry, const char *engine, const char *backingStore, unsigned char isFlattening, unsigned char isFullscreen, const char *databasePath);
588 Eina_Rectangle geometry = {0, 0, 0, 0}; local
590 app->theme, app->userAgent, geometry, app-> backingStore,
655 browserCreate(const char *url, const char *theme, const char *userAgent, Eina_Rectangle geometry, const char *engine, const char *backingStore, unsigned char isFlattening, unsigned char isFullscreen, const char *databasePath)
657 if ((geometry.w <= 0) && (geometry.h <= 0)) {
658 geometry.w = DEFAULT_WIDTH;
659 geometry.h = DEFAULT_HEIGHT
816 Eina_Rectangle geometry = {0, 0, 0, 0}; local
    [all...]
  /external/webkit/Source/WebKit/qt/tests/qwebview/
tst_qwebview.cpp 254 QTest::mouseClick(&webView, Qt::LeftButton, 0, inputElement.geometry().center());
265 QTest::mouseClick(&webView, Qt::LeftButton, 0, inputElement.geometry().center());
271 QTest::mouseClick(&webView, Qt::LeftButton, 0, inputElement.geometry().center());
277 QTest::mouseClick(&webView, Qt::LeftButton, 0, inputElement.geometry().center());
283 QTest::mouseClick(&webView, Qt::LeftButton, 0, inputElement.geometry().center());
289 QTest::mouseClick(&webView, Qt::LeftButton, 0, inputElement.geometry().center());
295 QTest::mouseClick(&webView, Qt::LeftButton, 0, inputElement.geometry().center());
301 QTest::mouseClick(&webView, Qt::LeftButton, 0, inputElement.geometry().center());
312 QTest::mouseClick(&webView, Qt::LeftButton, 0, inputElement.geometry().center());
318 QTest::mouseClick(&webView, Qt::LeftButton, 0, inputElement.geometry().center())
    [all...]
  /external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
TextureAtlas.java 39 import com.jme3.scene.Geometry;
73 * <p>The helper methods that work with <code>Geometry</code> objects handle the <em>DiffuseMap</em> or <em>ColorMap</em> as the master map and
78 * to the atlas. You can access the information for each texture or geometry texture via helper methods.</p>
80 * <p>The TextureAtlas also allows you to change the texture coordinates of a mesh or geometry
93 * Create one geometry out of several geometries that are loaded from a j3o file:
96 * Geometry geom = TextureAtlas.makeAtlasBatch(scene);
99 * Create a texture atlas and change the texture coordinates of one geometry:
111 * //change one geometry to use atlas, apply texture coordinates and replace material.
112 * Geometry geom = scene.getChild("MyGeometry");
140 * @param geometry
    [all...]

Completed in 3264 milliseconds

1 2 3 4