mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-07-01 07:40:10 +00:00
Fix test
This commit is contained in:
@@ -70,7 +70,7 @@ outVec2 = vec2.negate(outVec2, vec2A);
|
||||
outVec2 = vec2.inverse(outVec2, vec2A);
|
||||
outVec2 = vec2.normalize(outVec2, vec2A);
|
||||
outVal = vec2.dot(vec2A, vec2B);
|
||||
outVec2 = vec2.cross(outVec2, vec2A, vec2B);
|
||||
outVec2 = vec2.cross(outVec3, vec2A, vec2B);
|
||||
outVec2 = vec2.lerp(outVec2, vec2A, vec2B, 0.5);
|
||||
outVec2 = vec2.random(outVec2);
|
||||
outVec2 = vec2.random(outVec2, 5.0);
|
||||
@@ -432,7 +432,7 @@ outVec2 = _vec2.negate(outVec2, vec2A);
|
||||
outVec2 = _vec2.inverse(outVec2, vec2A);
|
||||
outVec2 = _vec2.normalize(outVec2, vec2A);
|
||||
outVal = _vec2.dot(vec2A, vec2B);
|
||||
outVec2 = _vec2.cross(outVec2, vec2A, vec2B);
|
||||
outVec2 = _vec2.cross(outVec3, vec2A, vec2B);
|
||||
outVec2 = _vec2.lerp(outVec2, vec2A, vec2B, 0.5);
|
||||
outVec2 = _vec2.random(outVec2);
|
||||
outVec2 = _vec2.random(outVec2, 5.0);
|
||||
|
||||
Reference in New Issue
Block a user