Searched defs:Vector2 (Results 1 – 9 of 9) sorted by relevance
| /external/libchrome-gestures/include/ |
| D | finger_metrics.h | 21 struct Vector2 { struct 22 Vector2() : x(0), y(0) {} in Vector2() function 23 Vector2(float x, float y) : x(x), y(y) {} in Vector2() function 24 Vector2(const Vector2& other) : x(other.x), y(other.y) {} in Vector2() function 25 explicit Vector2(const FingerState& state) : x(state.position_x), in Vector2() function 28 Vector2 Sub(const Vector2& other) { in Sub() argument 32 Vector2 Add(const Vector2& other) { in Add() argument 42 bool operator==(const Vector2& that) const { argument 53 extern Vector2 Add(const Vector2& left, const Vector2& right); argument
|
| /external/replicaisland/src/com/replica/replicaisland/ |
| D | Vector2.java | 22 public final class Vector2 extends AllocationGuard { class 28 public Vector2() { in Vector2() method in Vector2 32 public Vector2(float xValue, float yValue) { in Vector2() method in Vector2 36 public Vector2(Vector2 other) { in Vector2() method in Vector2
|
| /external/python/pybind11/tests/ |
| D | test_operator_overloading.cpp | 15 class Vector2 { class 17 Vector2(float x, float y) : x(x), y(y) { print_created(this, toString()); } in Vector2() function in Vector2 18 Vector2(const Vector2 &v) : x(v.x), y(v.y) { print_copy_created(this); } in Vector2() function in Vector2 19 Vector2(Vector2 &&v) : x(v.x), y(v.y) { print_move_created(this); v.x = v.y = 0; } in Vector2() function in Vector2 79 std::string abs(const Vector2&) { in abs()
|
| /external/eigen/Eigen/src/Geometry/ |
| D | EulerAngles.h | 46 typedef Matrix<typename Derived::Scalar,2,1> Vector2; in eulerAngles() typedef
|
| D | OrthoMethods.h | 146 typedef Matrix<Scalar,2,1> Vector2; typedef
|
| /external/eigen/demos/mandelbrot/ |
| D | mandelbrot.cpp | 43 typedef Eigen::Array<Real, 2, 1> Vector2; in render() typedef
|
| /external/angle/src/common/ |
| D | vector_utils.h | 22 using Vector2 = Vector<2, float>; variable
|
| /external/eigen/test/ |
| D | sparse_basic.cpp | 27 typedef Matrix<StorageIndex,2,1> Vector2; in sparse_basic() typedef
|
| D | geo_transformations.cpp | 95 typedef Matrix<Scalar,2,1> Vector2; in transformations() typedef
|