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

1 2 34 5 6 7 8 91011>>

  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/
Body.java 44 * body's transform may cause non-physical behavior.
53 * body's transform may cause non-physical behavior.
62 Transform transform = new Transform(); field in class:Body
64 /** Get the body transform for the body's origin. */
65 public Transform getTransform () {
66 org.jbox2d.common.Transform trans = body.getTransform();
67 transform.vals[Transform.POS_X] = trans.p.x
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_vb_program.c 91 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) {
93 const GLfloat a = ctx->Transform._ClipUserPlane[p][0];
94 const GLfloat b = ctx->Transform._ClipUserPlane[p][1];
95 const GLfloat c = ctx->Transform._ClipUserPlane[p][2];
96 const GLfloat d = ctx->Transform._ClipUserPlane[p][3];
147 !ctx->Transform.DepthClamp );
156 !ctx->Transform.DepthClamp );
167 if (ctx->Transform.ClipPlanesEnabled && (!ctx->VertexProgram._Enabled ||
446 /* We need the exact same transform as in the fixed function path here
  /frameworks/native/services/surfaceflinger/RenderEngine/
RenderEngine.h 27 #include <Transform.h>
97 Rect sourceCrop, size_t hwh, bool yswap, Transform::orientation_flags rotation) = 0;
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/
Distance.java 35 import org.jbox2d.common.Transform;
112 public void readCache(SimplexCache cache, DistanceProxy proxyA, Transform transformA,
113 DistanceProxy proxyB, Transform transformB) {
125 Transform.mulToOutUnsafe(transformA, wALocal, v.wA);
126 Transform.mulToOutUnsafe(transformB, wBLocal, v.wB);
149 Transform.mulToOutUnsafe(transformA, wALocal, v.wA);
150 Transform.mulToOutUnsafe(transformB, wBLocal, v.wB);
626 Transform transformA = input.transformA;
627 Transform transformB = input.transformB;
709 Transform.mulToOutUnsafe(transformA, proxyA.getVertex(vertex.indexA), vertex.wA)
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
affine.hpp 57 /** @brief Affine transform
86 //! Create identity transform
129 Affine3(const Eigen::Transform<T, 3, Eigen::Affine, (Eigen::RowMajor)>& affine);
130 Affine3(const Eigen::Transform<T, 3, Eigen::Affine>& affine);
131 operator Eigen::Transform<T, 3, Eigen::Affine, (Eigen::RowMajor)>() const;
132 operator Eigen::Transform<T, 3, Eigen::Affine>() const;
489 cv::Affine3<T>::Affine3(const Eigen::Transform<T, 3, Eigen::Affine, (Eigen::RowMajor)>& affine)
495 cv::Affine3<T>::Affine3(const Eigen::Transform<T, 3, Eigen::Affine>& affine)
497 Eigen::Transform<T, 3, Eigen::Affine, (Eigen::RowMajor)> a = affine;
502 cv::Affine3<T>::operator Eigen::Transform<T, 3, Eigen::Affine, (Eigen::RowMajor)>() cons
    [all...]
  /external/fonttools/Lib/fontTools/misc/
transform.py 3 The Transform class implements various transformation matrix operations,
6 Transform instances are effectively immutable: all methods that operate on the
8 interesting side effect that Transform instances are hashable, ie. they can be
13 Transform -- this is the main class
14 Identity -- Transform instance set to the identity transformation
20 >>> t = Transform(2, 0, 0, 3, 0, 0)
51 __all__ = ["Transform", "Identity", "Offset", "Scale"]
69 class Transform(object):
71 """2x2 transformation matrix plus offset, a.k.a. Affine transform.
72 Transform instances are immutable: all transforming methods, eg
181 def transform(self, other): member in class:Transform
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
UnicodeLabel.java 13 public abstract class UnicodeLabel implements android.icu.text.Transform<Integer, String> {
17 public String transform(Integer codepoint) { method in class:UnicodeLabel
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
UnicodeLabel.java 12 public abstract class UnicodeLabel implements com.ibm.icu.text.Transform<Integer, String> {
16 public String transform(Integer codepoint) { method in class:UnicodeLabel
  /frameworks/base/libs/hwui/
Glop.h 60 * Enumerates transform features
70 // Canvas transform isn't applied to the mesh at draw time,
144 struct Transform {
145 // modelView transform, accounting for delta between mesh transform and content of the mesh
149 // Canvas transform of Glop - not necessarily applied to geometry (see flags)
157 } transform; member in struct:android::uirenderer::Glop
  /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
Transform.java 26 public class Transform {
30 private static final String LOGTAG = "Transform";
36 public void clone(Transform src) {
163 Transform t = new Transform();
VrPipline1.java 69 Matrix m = state.mTransform.getMatrix(Transform.SCREEN_SPACE, Transform.VOLUME_SPACE);
VrState.java 39 public Transform mTransform = new Transform();
  /system/tpm/attestation/common/
mock_tpm_utility.h 33 // input through Transform(<method>). E.g. The expected output of a fake Sign
35 // MockTpmUtility::Transform("Sign", "foo").
36 static std::string Transform(const std::string& method,
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/shapes/
EdgeShape.java 32 import org.jbox2d.common.Transform;
80 public boolean testPoint(Transform xf, Vec2 p) {
88 public float computeDistanceToOut(Transform xf, Vec2 p, int childIndex, Vec2 normalOut) {
130 public boolean raycast(RayCastOutput output, RayCastInput input, Transform xf, int childIndex) {
214 public void computeAABB(AABB aabb, Transform xf, int childIndex) {
PolygonShape.java 32 import org.jbox2d.common.Transform;
72 private Transform poolt1 = new Transform();
277 final Transform xf = poolt1;
281 // Transform vertices and normals.
283 Transform.mulToOut(xf, m_vertices[i], m_vertices[i]);
293 public final boolean testPoint(final Transform xf, final Vec2 p) {
326 public final void computeAABB(final AABB aabb, final Transform xf, int childIndex) {
377 public float computeDistanceToOut(Transform xf, Vec2 p, int childIndex, Vec2 normalOut) {
432 public final boolean raycast(RayCastOutput output, RayCastInput input, Transform xf
    [all...]
  /hardware/qcom/display/msm8996/sdm/libs/hwc2/
hwc_layers.cpp 205 HWC2::Error HWCLayer::SetLayerTransform(HWC2::Transform transform) {
207 switch (transform) {
208 case HWC2::Transform::FlipH:
211 case HWC2::Transform::FlipV:
214 case HWC2::Transform::Rotate90:
217 case HWC2::Transform::Rotate180:
221 case HWC2::Transform::Rotate270:
226 case HWC2::Transform::FlipHRotate90:
230 case HWC2::Transform::FlipVRotate90
    [all...]
  /hardware/qcom/display/msmcobalt/sdm/libs/hwc2/
hwc_layers.cpp 215 HWC2::Error HWCLayer::SetLayerTransform(HWC2::Transform transform) {
217 switch (transform) {
218 case HWC2::Transform::FlipH:
221 case HWC2::Transform::FlipV:
224 case HWC2::Transform::Rotate90:
227 case HWC2::Transform::Rotate180:
231 case HWC2::Transform::Rotate270:
236 case HWC2::Transform::FlipHRotate90:
240 case HWC2::Transform::FlipVRotate90
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/
Body.java 32 import org.jbox2d.common.Transform;
59 * The body origin transform.
61 public final Transform m_xf = new Transform();
63 * The previous transform for particle simulation
65 public final Transform m_xf0 = new Transform();
311 * other bodies. Manipulating a body's transform may cause non-physical behavior. Note: contacts
327 Transform.mulToOutUnsafe(m_xf, m_sweep.localCenter, m_sweep.c);
340 * Get the body transform for the body's origin
    [all...]
  /external/eigen/unsupported/test/
openglsupport.cpp 154 // 3D Transform
155 Transform<float,3,AffineCompact> acf3; acf3.matrix().setRandom();
159 Transform<float,3,Affine> af3(acf3);
163 Transform<float,3,Projective> pf3; pf3.matrix().setRandom();
167 Transform<double,3,AffineCompact> acd3; acd3.matrix().setRandom();
171 Transform<double,3,Affine> ad3(acd3);
175 Transform<double,3,Projective> pd3; pd3.matrix().setRandom();
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vs.c 149 * be needed for transform feedback; since we don't want to have to
150 * recompute the VUE map (and everything that depends on it) when transform
177 return ctx->Transform.EyeUserPlane;
185 return ctx->Transform._ClipUserPlane;
389 key.userclip_active = (ctx->Transform.ClipPlanesEnabled != 0);
394 = _mesa_bitcount_64(ctx->Transform.ClipPlanesEnabled);
396 = ctx->Transform.ClipPlanesEnabled;
399 = _mesa_logbase2(ctx->Transform.ClipPlanesEnabled) + 1;
  /external/eigen/bench/
benchGeometry.cpp 82 typedef Transform<scalar, 3, mode, option> Trans;\
91 typedef Transform<scalar, 3, mode, option> Trans;\
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/callbacks/
DebugDraw.java 31 import org.jbox2d.common.Transform;
159 * Draw a transform. Choose your own length scale
163 public abstract void drawTransform(Transform xf);
205 * @deprecated use the viewport transform in {@link #getViewportTranform()}
  /external/pdfium/fpdfsdk/src/fpdfxfa/
fpdfxfa_page.cpp 195 device2page.Transform((FX_FLOAT)(device_x), (FX_FLOAT)(device_y), page_x_f,
219 page2device.Transform(((FX_FLOAT)page_x), ((FX_FLOAT)page_y), device_x_f,
  /external/webrtc/webrtc/base/
transformadapter.cc 22 TransformInterface * transform,
24 : StreamAdapterInterface(stream), transform_(transform),
66 StreamResult result = transform_->Transform(buffer_, &in_len,
116 StreamResult result = transform_->Transform(data, &in_len,
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CaseFoldTransliterator.java 117 sourceTargetUtility = new SourceTargetUtility(new Transform<String,String>() {
118 public String transform(String source) {

Completed in 1650 milliseconds

1 2 34 5 6 7 8 91011>>