HomeSort by relevance Sort by last modified time
    Searched defs:Vector2 (Results 1 - 10 of 10) sorted by null

  /external/eigen/Eigen/src/Geometry/
EulerAngles.h 46 typedef Matrix<typename Derived::Scalar,2,1> Vector2;
64 Scalar s2 = Vector2(coeff(j,i), coeff(k,i)).norm();
69 Scalar s2 = Vector2(coeff(j,i), coeff(k,i)).norm();
90 Scalar c2 = Vector2(coeff(i,i), coeff(i,j)).norm();
OrthoMethods.h 145 typedef Matrix<Scalar,2,1> Vector2;
155 RealScalar invnm = RealScalar(1)/(Vector2() << src.coeff(sndi),src.coeff(maxi)).finished().norm();
Rotation2D.h 52 typedef Matrix<Scalar,2,1> Vector2;
109 EIGEN_DEVICE_FUNC Vector2 operator* (const Vector2& vec) const
  /external/replicaisland/src/com/replica/replicaisland/
Vector2.java 22 public final class Vector2 extends AllocationGuard {
26 public static final Vector2 ZERO = new Vector2(0, 0);
28 public Vector2() {
32 public Vector2(float xValue, float yValue) {
36 public Vector2(Vector2 other) {
40 public final void add(Vector2 other) {
50 public final void subtract(Vector2 other) {
60 public final void multiply(Vector2 other)
    [all...]
  /frameworks/base/libs/hwui/
Vector.h 31 struct Vector2 {
43 void operator+=(const Vector2& v) {
48 void operator-=(const Vector2& v) {
73 Vector2 operator+(const Vector2& v) const {
74 return (Vector2){x + v.x, y + v.y};
77 Vector2 operator-(const Vector2& v) const {
78 return (Vector2){x - v.x, y - v.y};
81 Vector2 operator/(float s) const
    [all...]
  /external/eigen/unsupported/Eigen/src/EulerAngles/
EulerSystem.h 187 typedef Matrix<Scalar,2,1> Vector2;
190 Scalar c2 = Vector2(mat(I,I), mat(I,J)).norm();
215 typedef Matrix<Scalar,2,1> Vector2;
226 Scalar s2 = Vector2(mat(J,I), mat(K,I)).norm();
231 Scalar s2 = Vector2(mat(J,I), mat(K,I)).norm();
  /external/eigen/demos/mandelbrot/
mandelbrot.cpp 43 typedef Eigen::Array<Real, 2, 1> Vector2;
44 Vector2 start(widget->center.x() - widget->xradius, widget->center.y() - yradius);
45 Vector2 step(2*widget->xradius/img_width, 2*yradius/img_height);
  /external/eigen/test/
sparse_basic.cpp 20 typedef Matrix<StorageIndex,2,1> Vector2;
42 std::vector<Vector2> zeroCoords;
43 std::vector<Vector2> nonzeroCoords;
geo_transformations.cpp 95 typedef Matrix<Scalar,2,1> Vector2;
265 Vector2 v20 = Vector2::Random();
266 Vector2 v21 = Vector2::Random();
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVInstruction.h     [all...]

Completed in 448 milliseconds