|
@@ -31,6 +31,8 @@ static void testInitAndRead(Test& test) {
|
|
test.checkEqual(7.0f, v4[1], "init 10");
|
|
test.checkEqual(7.0f, v4[1], "init 10");
|
|
test.checkEqual(8.0f, v4[2], "init 11");
|
|
test.checkEqual(8.0f, v4[2], "init 11");
|
|
test.checkEqual(9.0f, v4[3], "init 12");
|
|
test.checkEqual(9.0f, v4[3], "init 12");
|
|
|
|
+
|
|
|
|
+ //v1.func(1.0f, 2.0f, 3.0f);
|
|
}
|
|
}
|
|
|
|
|
|
static void testSetAngles(Test& test) {
|
|
static void testSetAngles(Test& test) {
|
|
@@ -69,17 +71,17 @@ static void testSetAngles(Test& test) {
|
|
|
|
|
|
static void testCross(Test& test) {
|
|
static void testCross(Test& test) {
|
|
compareVectors(test, Vector3(0.0f, 0.0f, 1.0f),
|
|
compareVectors(test, Vector3(0.0f, 0.0f, 1.0f),
|
|
- Vector3(1.0f, 0.0f, 0.0f).cross(Vector3(0.0f, 1.0f, 0.0)), "cross 1");
|
|
|
|
|
|
+ Vector3(1.0f, 0.0f, 0.0f).cross(Vector3(0.0f, 1.0f, 0.0f)), "cross 1");
|
|
compareVectors(test, Vector3(0.0f, -1.0f, 0.0f),
|
|
compareVectors(test, Vector3(0.0f, -1.0f, 0.0f),
|
|
- Vector3(1.0f, 0.0f, 0.0f).cross(Vector3(0.0f, 0.0f, 1.0)), "cross 2");
|
|
|
|
|
|
+ Vector3(1.0f, 0.0f, 0.0f).cross(Vector3(0.0f, 0.0f, 1.0f)), "cross 2");
|
|
compareVectors(test, Vector3(0.0f, 0.0f, -1.0f),
|
|
compareVectors(test, Vector3(0.0f, 0.0f, -1.0f),
|
|
- Vector3(0.0f, 1.0f, 0.0f).cross(Vector3(1.0f, 0.0f, 0.0)), "cross 3");
|
|
|
|
|
|
+ Vector3(0.0f, 1.0f, 0.0f).cross(Vector3(1.0f, 0.0f, 0.0f)), "cross 3");
|
|
compareVectors(test, Vector3(1.0f, 0.0f, 0.0f),
|
|
compareVectors(test, Vector3(1.0f, 0.0f, 0.0f),
|
|
- Vector3(0.0f, 1.0f, 0.0f).cross(Vector3(0.0f, 0.0f, 1.0)), "cross 4");
|
|
|
|
|
|
+ Vector3(0.0f, 1.0f, 0.0f).cross(Vector3(0.0f, 0.0f, 1.0f)), "cross 4");
|
|
compareVectors(test, Vector3(0.0f, 1.0f, 0.0f),
|
|
compareVectors(test, Vector3(0.0f, 1.0f, 0.0f),
|
|
- Vector3(0.0f, 0.0f, 1.0f).cross(Vector3(1.0f, 0.0f, 0.0)), "cross 5");
|
|
|
|
|
|
+ Vector3(0.0f, 0.0f, 1.0f).cross(Vector3(1.0f, 0.0f, 0.0f)), "cross 5");
|
|
compareVectors(test, Vector3(-1.0f, 0.0f, 0.0f),
|
|
compareVectors(test, Vector3(-1.0f, 0.0f, 0.0f),
|
|
- Vector3(0.0f, 0.0f, 1.0f).cross(Vector3(0.0f, 1.0f, 0.0)), "cross 6");
|
|
|
|
|
|
+ Vector3(0.0f, 0.0f, 1.0f).cross(Vector3(0.0f, 1.0f, 0.0f)), "cross 6");
|
|
}
|
|
}
|
|
|
|
|
|
static void testSetAdd(Test& test) {
|
|
static void testSetAdd(Test& test) {
|