Home
last modified time | relevance | path

Searched refs:axes (Results 1 – 25 of 83) sorted by relevance

1234

/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
DAbstractBox.java72 Vector3f[] axes = { in computeVertices() local
78 center.subtract(axes[0]).subtractLocal(axes[1]).subtractLocal(axes[2]), in computeVertices()
79 center.add(axes[0]).subtractLocal(axes[1]).subtractLocal(axes[2]), in computeVertices()
80 center.add(axes[0]).addLocal(axes[1]).subtractLocal(axes[2]), in computeVertices()
81 center.subtract(axes[0]).addLocal(axes[1]).subtractLocal(axes[2]), in computeVertices()
82 center.add(axes[0]).subtractLocal(axes[1]).addLocal(axes[2]), in computeVertices()
83 center.subtract(axes[0]).subtractLocal(axes[1]).addLocal(axes[2]), in computeVertices()
84 center.add(axes[0]).addLocal(axes[1]).addLocal(axes[2]), in computeVertices()
85 center.subtract(axes[0]).addLocal(axes[1]).addLocal(axes[2]) in computeVertices()
/external/qemu/android/skin/
Dtrackball.c165 VectorRec axes[3]; /* current ball axes */ member
233 ball->axes[0][0] = 1.; ball->axes[0][1] = 0.; ball->axes[0][2] = 0.; in trackball_init()
234 ball->axes[1][0] = 0.; ball->axes[1][1] = 1.; ball->axes[1][2] = 0.; in trackball_init()
235 ball->axes[2][0] = 0.; ball->axes[2][1] = 0.; ball->axes[2][2] = 1.; in trackball_init()
456 rotator_apply( rot, ball->axes[0] ); in trackball_move()
457 rotator_apply( rot, ball->axes[1] ); in trackball_move()
458 rotator_apply( rot, ball->axes[2] ); in trackball_move()
483 fixedvector_from_vector( (Fix16Vector)&faxes[0], (Vector)&ball->axes[0] ); in trackball_refresh()
484 fixedvector_from_vector( (Fix16Vector)&faxes[1], (Vector)&ball->axes[1] ); in trackball_refresh()
485 fixedvector_from_vector( (Fix16Vector)&faxes[2], (Vector)&ball->axes[2] ); in trackball_refresh()
/external/qemu/distrib/sdl-1.2.15/src/joystick/beos/
DSDL_bejoystick.cc163 int16 *axes; in SDL_SYS_JoystickUpdate() local
169 axes = joystick->hwdata->new_axes; in SDL_SYS_JoystickUpdate()
174 stick->GetAxisValues(axes); in SDL_SYS_JoystickUpdate()
180 change = ((int32)axes[i] - joystick->axes[i]); in SDL_SYS_JoystickUpdate()
182 SDL_PrivateJoystickAxis(joystick, i, axes[i]); in SDL_SYS_JoystickUpdate()
/external/apache-xml/src/main/java/org/apache/xpath/functions/
DFuncCurrent.java26 import org.apache.xpath.axes.LocPathIterator;
27 import org.apache.xpath.axes.PredicatedNodeTest;
30 import org.apache.xpath.axes.SubContextList;
DFuncLast.java25 import org.apache.xpath.axes.SubContextList;
/external/qemu/distrib/sdl-1.2.15/src/joystick/
DSDL_joystick.c129 joystick->axes = (Sint16 *)SDL_malloc in SDL_JoystickOpen()
144 if ( ((joystick->naxes > 0) && !joystick->axes) in SDL_JoystickOpen()
153 if ( joystick->axes ) { in SDL_JoystickOpen()
154 SDL_memset(joystick->axes, 0, in SDL_JoystickOpen()
277 state = joystick->axes[axis]; in SDL_JoystickGetAxis()
385 if ( joystick->axes ) { in SDL_JoystickClose()
386 SDL_free(joystick->axes); in SDL_JoystickClose()
442 joystick->axes[axis] = value; in SDL_PrivateJoystickAxis()
DSDL_sysjoystick.h34 Sint16 *axes; /* Current axis states */ member
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/
DObjectHelper.java208 Vector3f[] axes = new Vector3f[3]; in toObject() local
209 quaternion.toAxes(axes); in toObject()
211 …((DirectionalLight)light).setDirection(axes[1].negate());//-Z is the direction axis of area lamp i… in toObject()
213 ((DirectionalLight)light).setDirection(axes[2].negate()); in toObject()
219 Vector3f[] axes = new Vector3f[3]; in toObject() local
220 quaternion.toAxes(axes); in toObject()
222 …((SpotLight)light).setDirection(axes[1].negate());//-Z is the direction axis of area lamp in blend… in toObject()
224 ((SpotLight)light).setDirection(axes[2].negate()); in toObject()
/external/apache-xml/src/main/java/org/apache/xpath/
DXPathVisitor.java23 import org.apache.xpath.axes.LocPathIterator;
24 import org.apache.xpath.axes.UnionPathIterator;
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DSets.java978 final ImmutableList<Axis> axes;
993 this.axes = builder.build();
1016 Object[] tuple = new Object[axes.size()];
1018 tuple[i] = axes.get(i).getForIndex(index);
1034 int dimensions = axes.size();
1039 if (!axes.get(i).contains(tuple.get(i))) {
1051 return this.axes.equals(that.axes);
1062 for (int i = 0; i < axes.size(); i++) {
1065 return axes.hashCode() + adjust;
/external/guava/guava/src/com/google/common/collect/
DSets.java990 final ImmutableList<Axis> axes;
1005 this.axes = builder.build();
1028 Object[] tuple = new Object[axes.size()];
1030 tuple[i] = axes.get(i).getForIndex(index);
1046 int dimensions = axes.size();
1051 if (!axes.get(i).contains(tuple.get(i))) {
1063 return this.axes.equals(that.axes);
1074 for (int i = 0; i < axes.size(); i++) {
1077 return axes.hashCode() + adjust;
/external/apache-xml/src/main/java/org/apache/xpath/axes/
DPathComponent.java21 package org.apache.xpath.axes;
DSubContextList.java21 package org.apache.xpath.axes;
DRTFIterator.java28 package org.apache.xpath.axes;
DContextNodeList.java21 package org.apache.xpath.axes;
DAttributeIterator.java21 package org.apache.xpath.axes;
DIteratorPool.java21 package org.apache.xpath.axes;
DSelfIteratorNoPredicate.java21 package org.apache.xpath.axes;
DChildIterator.java21 package org.apache.xpath.axes;
/external/qemu/distrib/sdl-1.2.15/
DREADME.OS279 The Joystick detection only works for standard joysticks (2 buttons, 2 axes
87 So, it you have a Gravis GamePad with 4 axes, 2 buttons, 2 hats and 0 balls,
105 4 when using one joystick with 4 axes, 6 when using a joystick with 3 axes
106 and 8 when using a joystick with 2 axes. Notice however these are limitations
255 - Added support up to 8 buttons in 2 axes joysticks and 6 buttons in 3 axes joysticks.
/external/qemu/distrib/sdl-1.2.15/src/joystick/darwin/
DSDL_sysjoystick.c85 long axes; /* number of axis (calculated, not reported by device) */ member
320 pDevice->axes++; in HIDAddElement()
709 joystick->naxes = device->axes; in SDL_SYS_JoystickOpen()
736 for (i = 0; i < device->axes; i++) in SDL_SYS_JoystickUpdate()
754 if ( value != joystick->axes[i] ) in SDL_SYS_JoystickUpdate()
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DRedundentExprEliminator.java33 import org.apache.xpath.axes.AxesWalker;
34 import org.apache.xpath.axes.FilterExprIteratorSimple;
35 import org.apache.xpath.axes.FilterExprWalker;
36 import org.apache.xpath.axes.LocPathIterator;
37 import org.apache.xpath.axes.SelfIteratorNoPredicate;
38 import org.apache.xpath.axes.WalkerFactory;
39 import org.apache.xpath.axes.WalkingIterator;
DAbsPathChecker.java25 import org.apache.xpath.axes.LocPathIterator;
/external/webkit/LayoutTests/fast/xpath/py-dom-xpath/
Daxes-expected.txt12 Test that the ancestor, descendant, following, preceding, and self axes partition the document
/external/apache-xml/src/main/java/org/apache/xpath/operations/
DVariable.java32 import org.apache.xpath.axes.PathComponent;
33 import org.apache.xpath.axes.WalkerFactory;

1234