Home
last modified time | relevance | path

Searched defs:Vector2 (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/libs/hwui/
DVector.h31 struct Vector2 { struct
39 void operator+=(const Vector2& v) { argument
83 Vector2 copyNormalized() const { in copyNormalized() argument
89 float dot(const Vector2& v) const { return x * v.x + y * v.y; } in dot() argument
91 float cross(const Vector2& v) const { return x * v.y - y * v.x; } in cross() argument
93 void dump() { ALOGD("Vector2[%.2f, %.2f]", x, y); } in dump() argument
/frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
Deigen.h14 using Vector2 = Vector<T, 2>; variable
/frameworks/libs/systemui/toruslib/torus-math/src/main/java/com/google/android/torus/math/
DVector2.kt26 class Vector2 @JvmOverloads constructor(val x: Float, val y: Float) { class