Carp/test/vector2.carp

81 lines
2.5 KiB
Plaintext
Raw Permalink Normal View History

(load "Test.carp")
(load "Vector.carp")
(load "Geometry.carp")
2017-12-12 17:08:33 +03:00
(use-all Test Vector2 Geometry Double)
2017-10-24 14:52:32 +03:00
2018-11-07 18:11:38 +03:00
(deftest test
(assert-equal test
&(init 0.0 0.0) &(Vector2.zero)
2018-11-07 18:11:38 +03:00
"zero works")
(assert-equal test
&(init 1.0 2.0) &(init 1.0 2.0)
"= operator works")
(assert-op test
&(init 1.0 2.0) &(init 1.0 1.0)
"/= operator works"
Various submodule fixes (#1078) * fix: don't set the inner env to globals in type mods Previously, we set the inner environment of a type generated module to the global env in cases where the overarching context didn't have an inner env. This leads to problems where by the recognition of modules is inconsistent, and one can't use the names of types as submodules in certain circumstances. This commit fixes that issue. * refactor: refactor primitiveDefmodule This refactor fixes a issues with meta information on submodules, for instance, sigs on submodule functions used to result in a compiler error about ambiguous identifiers. This fixes that. Unfortunately, I don't have a precise idea about what exactly was wrong with the original definition of this function. My suspicion is that the recursion originally altered submodule paths in the wrong way, but I'm not certain. In any case it's fixed. * fix: ensure macros are expanded in the correct module Previously, macro expansions folded over all forms after the top level form, without performing any context updates on encountered `defmodules`. This created an issue in which macro calls that produced new bindings, "meta stubs", were *hoisted* out of submodules and into the top-level module, creating duplicate definitions. This commit fixes that issue by adding a special case for defmodule in macroExpand. * fix: ensure submodules and globals don't conflict Previously, our module lookups during new module definition always eventually fell back to the global environment, which caused submodules that happen to share a name with a global module to be confused with the global module. This change fixes that, so now one can define both `Dynamic` (global) and `Foo.Dynamic` without issue. * fix: remove old prefixes from vector tests Commit 7b7cb5d1e replaced /= with a generic function. However, the vector tests still called the specific Vector variants of this function, which were removed when the generic was introduced. After recent changes, these calls are now (correctly) identified as erroneous. My guess is that they only worked in the past because of problems with our lookups. * chore: format code
2020-12-18 23:45:28 +03:00
/=)
2018-11-07 18:11:38 +03:00
(assert-equal test
&(init 3.0 3.0)
&(add &(init 2.0 1.0) &(init 1.0 2.0))
"add operator works")
(assert-equal test
&(init 1.0 -1.0)
&(sub &(init 2.0 1.0) &(init 1.0 2.0))
"sub operator works")
(assert-equal test
&(init 4.0 2.0)
&(mul &(init 2.0 1.0) 2.0)
"mul operator works")
(assert-equal test
&(init 1.0 0.5)
&(div &(init 2.0 1.0) 2.0)
"div operator works")
(assert-equal test
5.0
(mag &(init 3.0 4.0))
"mag works")
(assert-equal test
101.0
(mag-sq &(init 10.0 1.0))
"mag-sq works")
(assert-equal test
&(init 0.6 0.8)
&(normalize &(init 3.0 4.0))
"normalize works")
(assert-equal test
5.0
(dist &(init 10.0 10.0) &(init 7.0 6.0))
"dist works")
(assert-equal test
0.0
(heading &(init 1.0 0.0))
"heading works")
(assert-op test
&(init -2.0 1.0)
&(rotate &(init 1.0 2.0) (degree-to-radians 90.0))
"rotate works"
vapprox)
2018-11-07 18:11:38 +03:00
(assert-equal test
90.0
(radians-to-degree (Vector2.angle-between &(init 1.0 0.0) &(init 0.0 1.0)))
"angle-between works")
(assert-true test
(anti-parallel? &(init 1.0 0.0) &(init -1.0 0.0))
"anti-parallel? works")
(assert-true test
(parallel? &(init 1.0 0.0) &(init 1.0 0.0))
"parallel? works")
(assert-true test
(perpendicular? &(init 1.0 0.0) &(init 0.0 1.0))
"perpendicular? works")
(assert-equal test
44.0
(dot &(init 10.0 2.0) &(init 2.0 12.0))
"dot works")
(assert-equal test
&(init 2.5 5.0)
&(vlerp &(Vector2.zero) &(init 5.0 10.0) 0.5)
"vlerp works")
2018-11-07 18:11:38 +03:00
)