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

  /cts/tests/openglperf2/jni/graphics/
Vector2D.h 17 class Vector2D {
19 Vector2D();
20 Vector2D(float x, float y);
21 Vector2D copy();
23 void add(const Vector2D& v);
24 void sub(const Vector2D& v);
29 float distance(const Vector2D& v);
Vector2D.cpp 14 #include "Vector2D.h"
18 Vector2D::Vector2D() :
22 Vector2D::Vector2D(float x, float y) :
26 Vector2D Vector2D::copy() {
27 Vector2D v(mX, mY);
31 void Vector2D::add(const Vector2D& v)
    [all...]

Completed in 49 milliseconds