Searched defs:otherVector (Results 1 - 4 of 4) sorted by relevance
/external/llvm/unittests/ADT/ |
H A D | SmallVectorTest.cpp | 95 VectorT otherVector; member in class:__anon10056::SmallVectorTest 305 std::swap(this->theVector, this->otherVector); 308 this->assertValuesInOrder(this->otherVector, 2u, 1, 2); 315 this->makeSequence(this->otherVector, 2, 3); 318 this->theVector.append(this->otherVector.begin(), this->otherVector.end()); 431 this->makeSequence(this->otherVector, 1, 3); 433 EXPECT_TRUE(this->theVector == this->otherVector); 434 EXPECT_FALSE(this->theVector != this->otherVector); 436 this->otherVector [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
H A D | Vector2f.java | 571 * @param otherVector 575 public float smallestAngleBetween(Vector2f otherVector) { argument 576 float dotProduct = dot(otherVector); 587 * @param otherVector 591 public float angleBetween(Vector2f otherVector) { argument 592 float angle = FastMath.atan2(otherVector.y, otherVector.x)
|
H A D | Vector3f.java | 820 * @param otherVector a unit vector to find the angle against
823 public float angleBetween(Vector3f otherVector) {
argument 824 float dotProduct = dot(otherVector);
|
H A D | Vector4f.java | 769 * @param otherVector a unit vector to find the angle against 772 public float angleBetween(Vector4f otherVector) { argument 773 float dotProduct = dot(otherVector);
|
Completed in 484 milliseconds