Searched defs:projection (Results 1 - 25 of 28) sorted by relevance

12

/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DParametrizedLine.h68 /** \returns the squared distance of a point \a p to its projection onto the line \c *this.
76 /** \returns the distance of a point \a p to its projection onto the line \c *this.
81 /** \returns the projection of a point \a p onto the line \c *this. */
82 VectorType projection(const VectorType& p) const function in class:Eigen::ParametrizedLine
H A DHyperplane.h129 /** \returns the projection of a point \a p onto the plane \c *this.
131 inline VectorType projection(const VectorType& p) const { return p - signedDistance(p) * normal(); } function in class:Eigen::Hyperplane
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowCursorLoader.java14 private String[] projection; field in class:ShadowCursorLoader
23 public void __constructor__(Context context, Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { argument
26 this.projection = projection;
44 return projection;
48 public void setProjection(String[] projection) { argument
49 this.projection = projection;
H A DShadowMapView.java38 private Projection projection; field in class:ShadowMapView
104 if (projection == null) {
105 projection = new Projection() {
127 return projection;
H A DShadowContentResolver.java118 public final Cursor query(Uri uri, String[] projection, String selection, argument
122 return provider.query(uri, projection, selection, selectionArgs, sortOrder);
129 returnCursor.setQuery(uri, projection, selection, selectionArgs,
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/database/
H A DSimpleTestCursor.java10 public String[] projection; field in class:SimpleTestCursor
20 public void setQuery(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { argument
22 this.projection = projection;
H A DTestCursor.java208 * Mimics ContentResolver.query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder)
210 public void setQuery(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { argument
/external/svox/pico/src/com/svox/pico/providers/
H A DSettingsProvider.java81 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DFieldVector.java225 /** Find the orthogonal projection of this vector onto another vector.
227 * @return projection of the instance onto v
230 FieldVector<T> projection(FieldVector<T> v) method in interface:FieldVector
233 /** Find the orthogonal projection of this vector onto another vector.
235 * @return projection of the instance onto v
238 FieldVector<T> projection(T[] v) method in interface:FieldVector
H A DArrayFieldVector.java592 public FieldVector<T> projection(FieldVector<T> v) { method in class:ArrayFieldVector
597 public FieldVector<T> projection(T[] v) { method in class:ArrayFieldVector
598 return projection(new ArrayFieldVector<T>(v, false));
601 /** Find the orthogonal projection of this vector onto another vector.
603 * @return projection of the instance onto v
606 public ArrayFieldVector<T> projection(ArrayFieldVector<T> v) { method in class:ArrayFieldVector
H A DSparseFieldVector.java449 public FieldVector<T> projection(FieldVector<T> v) method in class:SparseFieldVector
456 public FieldVector<T> projection(T[] v) throws IllegalArgumentException { method in class:SparseFieldVector
458 return projection(new SparseFieldVector<T>(field,v));
H A DArrayRealVector.java918 public RealVector projection(RealVector v) { method in class:ArrayRealVector
924 public RealVector projection(double[] v) { method in class:ArrayRealVector
925 return projection(new ArrayRealVector(v, false));
928 /** Find the orthogonal projection of this vector onto another vector.
930 * @return projection of the instance onto v
933 public ArrayRealVector projection(ArrayRealVector v) { method in class:ArrayRealVector
H A DOpenMapRealVector.java628 public RealVector projection(RealVector v) throws IllegalArgumentException { method in class:OpenMapRealVector
635 public OpenMapRealVector projection(double[] v) throws IllegalArgumentException { method in class:OpenMapRealVector
637 return (OpenMapRealVector) projection(new OpenMapRealVector(v));
H A DAbstractRealVector.java751 public RealVector projection(double[] v) throws IllegalArgumentException { method in class:AbstractRealVector
752 return projection(new ArrayRealVector(v, false));
H A DRealVector.java865 /** Find the orthogonal projection of this vector onto another vector.
867 * @return projection of the instance onto v
871 RealVector projection(RealVector v); method in interface:RealVector
873 /** Find the orthogonal projection of this vector onto another vector.
875 * @return projection of the instance onto v
879 RealVector projection(double[] v); method in interface:RealVector
/external/eigen/Eigen/src/Geometry/
H A DParametrizedLine.h79 /** \returns the squared distance of a point \a p to its projection onto the line \c *this.
87 /** \returns the distance of a point \a p to its projection onto the line \c *this.
92 /** \returns the projection of a point \a p onto the line \c *this. */
93 VectorType projection(const VectorType& p) const function in class:Eigen::ParametrizedLine
H A DHyperplane.h150 /** \returns the projection of a point \a p onto the plane \c *this.
152 inline VectorType projection(const VectorType& p) const { return p - signedDistance(p) * normal(); } function in class:Eigen::Hyperplane
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
H A DUVCoordinatesGenerator.java75 // 2D texture mapping (projection)
88 * @param projection
89 * the projection type for 2D textures
98 public static VertexBuffer generateUVCoordinates(int texco, int projection, int textureDimension, int[] coordinatesSwappingIndexes, List<Geometry> geometries) { argument
148 switch (projection) {
164 throw new IllegalStateException("Unknown projection type: " + projection);
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DTriangle.java56 private float projection; field in class:Triangle
236 * obtains the projection of the vertices relative to the line origin.
237 * @return the projection of the triangle.
240 return this.projection;
244 * sets the projection of the vertices relative to the line origin.
245 * @param projection the projection of the triangle.
247 public void setProjection(float projection) { argument
248 this.projection = projection;
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DContentResolverTest.java157 String[] projection = {};
165 Cursor cursor = shadowContentResolver.query(uri21, projection, selection, selectionArgs, sortOrder);
168 assertThat(testCursor.projection, equalTo(projection));
325 @Override public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) {
357 public String[] projection; field in class:ContentResolverTest.QueryParamTrackingTestCursor
363 public void setQuery(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { argument
365 this.projection = projection;
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
H A Dd3d11gears.cpp57 float4x4 projection; member in struct:cbuf_t
413 cbd.projection = proj;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.text_3.5.0.v20100601-1300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/mesa3d/src/gallium/state_trackers/vega/
H A Drenderer.c86 struct matrix projection; member in struct:renderer
146 * Set the model-view-projection matrix used by vertex shaders.
156 /* projection only */
158 mvp = &renderer->projection;
1339 struct matrix *proj = &renderer->projection;
1384 struct matrix mvp = renderer->projection;
1399 struct matrix mvp = renderer->projection;
/external/deqp/modules/glshared/
H A DglsTextureTestUtil.cpp346 static float computeProjectedTriLod (LodMode mode, const tcu::Vec3& u, const tcu::Vec3& projection, float wx, float wy, float width, float height) argument
349 float dudx = triDerivateX(u, projection, wx, width, wy/height);
350 float dudy = triDerivateY(u, projection, wy, height, wx/width);
356 static float computeProjectedTriLod (LodMode mode, const tcu::Vec3& u, const tcu::Vec3& v, const tcu::Vec3& projection, float wx, float wy, float width, float height) argument
359 float dudx = triDerivateX(u, projection, wx, width, wy/height);
360 float dvdx = triDerivateX(v, projection, wx, width, wy/height);
361 float dudy = triDerivateY(u, projection, wy, height, wx/width);
362 float dvdy = triDerivateY(v, projection, wy, height, wx/width);
368 static float computeProjectedTriLod (LodMode mode, const tcu::Vec3& u, const tcu::Vec3& v, const tcu::Vec3& w, const tcu::Vec3& projection, float wx, float wy, float width, float height) argument
371 float dudx = triDerivateX(u, projection, w
[all...]

Completed in 701 milliseconds

12