mirror of
https://github.com/revarbat/BOSL2.git
synced 2025-08-30 16:40:01 +02:00
Fixed a bunch of undef math warnings with dev snapshot OpenSCAD builds.
This commit is contained in:
@@ -4,6 +4,8 @@ include <../std.scad>
|
||||
module test_is_vector() {
|
||||
assert(is_vector([1,2,3]) == true);
|
||||
assert(is_vector([[1,2,3]]) == false);
|
||||
assert(is_vector([[1,2,3,4],[5,6,7,8]]) == false);
|
||||
assert(is_vector([[1,2,3,4],[5,6]]) == false);
|
||||
assert(is_vector(["foo"]) == false);
|
||||
assert(is_vector([]) == false);
|
||||
assert(is_vector(1) == false);
|
||||
|
Reference in New Issue
Block a user