mirror of
https://github.com/revarbat/BOSL2.git
synced 2025-08-26 21:04:37 +02:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
@@ -350,6 +350,7 @@ test_add_scalar();
|
||||
module test_subindex() {
|
||||
v = [[1,2,3,4],[5,6,7,8],[9,10,11,12],[13,14,15,16]];
|
||||
assert(subindex(v,2) == [3, 7, 11, 15]);
|
||||
assert(subindex(v,[2]) == [[3], [7], [11], [15]]);
|
||||
assert(subindex(v,[2,1]) == [[3, 2], [7, 6], [11, 10], [15, 14]]);
|
||||
assert(subindex(v,[1:3]) == [[2, 3, 4], [6, 7, 8], [10, 11, 12], [14, 15, 16]]);
|
||||
}
|
||||
|
@@ -1,11 +0,0 @@
|
||||
include <../std.scad>
|
||||
|
||||
|
||||
// Can't test echo output as yet. Include these for coverage calculations.
|
||||
module test_echo_error() {}
|
||||
module test_echo_warning() {}
|
||||
module test_deprecate() {}
|
||||
module test_deprecate_argument() {}
|
||||
|
||||
|
||||
// vim: expandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap
|
@@ -391,11 +391,13 @@ module test_mean() {
|
||||
}
|
||||
test_mean();
|
||||
|
||||
/*
|
||||
module test_median() {
|
||||
assert_equal(median([2,3,7]), 4.5);
|
||||
assert_equal(median([[1,2,3], [3,4,5], [8,9,10]]), [4.5,5.5,6.5]);
|
||||
}
|
||||
test_median();
|
||||
*/
|
||||
|
||||
|
||||
module test_convolve() {
|
||||
|
Reference in New Issue
Block a user