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

1 2 3 4 5 6 7 8 91011>>

  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/
DistanceInput.java 27 import org.jbox2d.common.Transform;
38 public Transform transformA = new Transform();
39 public Transform transformB = new Transform();
  /external/icu/android_icu4j/src/main/java/android/icu/text/
Transform.java 19 public interface Transform<S,D> {
21 * Transform the input in some way, to be determined by the subclass.
25 public D transform(S source); method in interface:Transform
StringTransform.java 17 public interface StringTransform extends Transform<String,String> {
19 * Transform the text in some way, to be determined by the subclass.
23 public String transform(String source); method in interface:StringTransform
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
StringTransform.java 16 public interface StringTransform extends Transform<String,String> {
18 * Transform the text in some way, to be determined by the subclass.
23 public String transform(String source); method in interface:StringTransform
Transform.java 18 public interface Transform<S,D> {
20 * Transform the input in some way, to be determined by the subclass.
25 public D transform(S source); method in interface:Transform
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/common/
Transform.java 31 * A transform contains translation and rotation. It is used to represent the position and
34 public class Transform implements Serializable {
37 /** The translation caused by the transform */
44 public Transform() {
49 /** Initialize as a copy of another transform. */
50 public Transform(final Transform xf) {
56 public Transform(final Vec2 _position, final Rot _R) {
61 /** Set this to equal another transform. */
62 public final Transform set(final Transform xf)
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/shapes/
Shape.java 29 import org.jbox2d.common.Transform;
85 * @param xf the shape world transform.
88 public abstract boolean testPoint(final Transform xf, final Vec2 p);
95 * @param argTransform the transform to be applied to the shape.
99 public abstract boolean raycast(RayCastOutput output, RayCastInput input, Transform transform,
104 * Given a transform, compute the associated axis aligned bounding box for a child shape.
107 * @param argXf the world transform of the shape.
109 public abstract void computeAABB(final AABB aabb, final Transform xf, int childIndex);
124 * @param xf the shape world transform
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Transform.h 27 * \class Transform
43 class Transform
79 inline Transform() { }
81 inline Transform(const Transform& other)
86 inline explicit Transform(const TranslationType& t) { *this = t; }
87 inline explicit Transform(const ScalingType& s) { *this = s; }
89 inline explicit Transform(const RotationBase<Derived, Dim>& r) { *this = r; }
91 inline Transform& operator=(const Transform& other
    [all...]