2017-08-30 00:00:16 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
2019-03-23 04:13:18 +00:00
|
|
|
// LibFile: math.scad
|
|
|
|
// Math helper functions.
|
|
|
|
// To use, add the following lines to the beginning of your file:
|
|
|
|
// ```
|
2019-04-19 07:25:10 +00:00
|
|
|
// use <BOSL2/std.scad>
|
2019-03-23 04:13:18 +00:00
|
|
|
// ```
|
2017-08-30 00:00:16 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
2019-03-28 09:26:16 +00:00
|
|
|
|
2019-04-12 07:08:56 +00:00
|
|
|
// Section: Math Constants
|
|
|
|
|
|
|
|
PHI = (1+sqrt(5))/2; // The golden ratio phi.
|
|
|
|
|
2019-04-16 22:34:54 +00:00
|
|
|
EPSILON = 1e-9; // A really small value useful in comparing FP numbers. ie: abs(a-b)<EPSILON
|
|
|
|
|
2019-04-12 07:08:56 +00:00
|
|
|
|
2019-03-23 04:13:18 +00:00
|
|
|
// Section: Simple Calculations
|
|
|
|
|
|
|
|
// Function: quant()
|
|
|
|
// Description:
|
|
|
|
// Quantize a value `x` to an integer multiple of `y`, rounding to the nearest multiple.
|
|
|
|
// Arguments:
|
|
|
|
// x = The value to quantize.
|
|
|
|
// y = The multiple to quantize to.
|
2017-08-30 00:00:16 +00:00
|
|
|
function quant(x,y) = floor(x/y+0.5)*y;
|
|
|
|
|
|
|
|
|
2019-03-23 04:13:18 +00:00
|
|
|
// Function: quantdn()
|
|
|
|
// Description:
|
|
|
|
// Quantize a value `x` to an integer multiple of `y`, rounding down to the previous multiple.
|
|
|
|
// Arguments:
|
|
|
|
// x = The value to quantize.
|
|
|
|
// y = The multiple to quantize to.
|
2017-08-30 00:00:16 +00:00
|
|
|
function quantdn(x,y) = floor(x/y)*y;
|
|
|
|
|
|
|
|
|
2019-03-23 04:13:18 +00:00
|
|
|
// Function: quantup()
|
|
|
|
// Description:
|
|
|
|
// Quantize a value `x` to an integer multiple of `y`, rounding up to the next multiple.
|
|
|
|
// Arguments:
|
|
|
|
// x = The value to quantize.
|
|
|
|
// y = The multiple to quantize to.
|
2017-08-30 00:00:16 +00:00
|
|
|
function quantup(x,y) = ceil(x/y)*y;
|
|
|
|
|
|
|
|
|
2019-03-23 04:13:18 +00:00
|
|
|
// Function: constrain()
|
|
|
|
// Usage:
|
|
|
|
// constrain(v, minval, maxval);
|
|
|
|
// Description:
|
|
|
|
// Constrains value to a range of values between minval and maxval, inclusive.
|
|
|
|
// Arguments:
|
|
|
|
// v = value to constrain.
|
|
|
|
// minval = minimum value to return, if out of range.
|
|
|
|
// maxval = maximum value to return, if out of range.
|
|
|
|
function constrain(v, minval, maxval) = min(maxval, max(minval, v));
|
2018-02-16 22:49:32 +00:00
|
|
|
|
|
|
|
|
2019-05-05 03:10:23 +00:00
|
|
|
// Function: approx()
|
|
|
|
// Usage:
|
|
|
|
// approx(a,b,[eps])
|
|
|
|
// Description:
|
|
|
|
// Compares two numbers or vectors, and returns true if they are closer than `eps` to each other.
|
|
|
|
// Arguments:
|
|
|
|
// a = First value.
|
|
|
|
// b = Second value.
|
|
|
|
// eps = The maximum allowed difference between `a` and `b` that will return true.
|
2019-05-05 03:19:35 +00:00
|
|
|
function approx(a,b,eps=EPSILON) = let(c=a-b) (is_num(c)? abs(c) : norm(c)) <= eps;
|
2019-05-05 03:10:23 +00:00
|
|
|
|
|
|
|
|
2019-04-16 22:34:54 +00:00
|
|
|
// Function: min_index()
|
|
|
|
// Usage:
|
|
|
|
// min_index(vals);
|
|
|
|
// Description:
|
|
|
|
// Returns the index of the minimal value in the given list.
|
|
|
|
function min_index(vals, _minval, _minidx, _i=0) =
|
|
|
|
_i>=len(vals)? _minidx :
|
|
|
|
min_index(
|
|
|
|
vals,
|
|
|
|
((_minval == undef || vals[_i] < _minval)? vals[_i] : _minval),
|
|
|
|
((_minval == undef || vals[_i] < _minval)? _i : _minidx),
|
|
|
|
_i+1
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
// Function: max_index()
|
|
|
|
// Usage:
|
|
|
|
// max_index(vals);
|
|
|
|
// Description:
|
|
|
|
// Returns the index of the maximum value in the given list.
|
|
|
|
function max_index(vals, _maxval, _maxidx, _i=0) =
|
|
|
|
_i>=len(vals)? _maxidx :
|
|
|
|
max_index(
|
|
|
|
vals,
|
|
|
|
((_maxval == undef || vals[_i] > _maxval)? vals[_i] : _maxval),
|
|
|
|
((_maxval == undef || vals[_i] > _maxval)? _i : _maxidx),
|
|
|
|
_i+1
|
|
|
|
);
|
|
|
|
|
|
|
|
|
2019-03-23 04:13:18 +00:00
|
|
|
// Function: posmod()
|
|
|
|
// Usage:
|
|
|
|
// posmod(x,m)
|
|
|
|
// Description:
|
|
|
|
// Returns the positive modulo `m` of `x`. Value returned will be in the range 0 ... `m`-1.
|
|
|
|
// This if useful for normalizing angles to 0 ... 360.
|
|
|
|
// Arguments:
|
|
|
|
// x = The value to constrain.
|
|
|
|
// m = Modulo value.
|
2019-04-04 07:37:21 +00:00
|
|
|
function posmod(x,m) = (x%m+m)%m;
|
2019-03-23 04:13:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Function: modrange()
|
|
|
|
// Usage:
|
|
|
|
// modrange(x, y, m, [step])
|
|
|
|
// Description:
|
|
|
|
// Returns a normalized list of values from `x` to `y`, by `step`, modulo `m`. Wraps if `x` > `y`.
|
|
|
|
// Arguments:
|
|
|
|
// x = The start value to constrain.
|
|
|
|
// y = The end value to constrain.
|
|
|
|
// m = Modulo value.
|
|
|
|
// step = Step by this amount.
|
|
|
|
// Examples:
|
2019-04-05 03:27:01 +00:00
|
|
|
// modrange(90,270,360, step=45); // Outputs [90,135,180,225,270]
|
|
|
|
// modrange(270,90,360, step=45); // Outputs [270,315,0,45,90]
|
|
|
|
// modrange(90,270,360, step=-45); // Outputs [90,45,0,315,270]
|
|
|
|
// modrange(270,90,360, step=-45); // Outputs [270,225,180,135,90]
|
2019-03-23 04:13:18 +00:00
|
|
|
function modrange(x, y, m, step=1) =
|
|
|
|
let(
|
|
|
|
a = posmod(x, m),
|
|
|
|
b = posmod(y, m),
|
|
|
|
c = step>0? (a>b? b+m : b) : (a<b? b-m : b)
|
2019-03-31 07:03:02 +00:00
|
|
|
) [for (i=[a:step:c]) (i%m+m)%m];
|
2017-08-30 00:00:16 +00:00
|
|
|
|
|
|
|
|
2019-05-05 03:10:23 +00:00
|
|
|
// Function: sqr()
|
|
|
|
// Usage:
|
|
|
|
// sqr(x);
|
|
|
|
// Description: Returns the square of the given number.
|
|
|
|
// Examples:
|
|
|
|
// sqr(3); // Returns: 9
|
|
|
|
// sqr(-4); // Returns: 16
|
|
|
|
function sqr(x) = x*x;
|
|
|
|
|
|
|
|
|
2019-04-10 22:53:40 +00:00
|
|
|
// Function: gaussian_rand()
|
|
|
|
// Usage:
|
|
|
|
// gaussian_rand(mean, stddev)
|
|
|
|
// Description:
|
|
|
|
// Returns a random number with a gaussian/normal distribution.
|
|
|
|
// Arguments:
|
|
|
|
// mean = The average random number returned.
|
|
|
|
// stddev = The standard deviation of the numbers to be returned.
|
|
|
|
function gaussian_rand(mean, stddev) = let(s=rands(0,1,2)) mean + stddev*sqrt(-2*ln(s.x))*cos(360*s.y);
|
|
|
|
|
|
|
|
|
|
|
|
// Function: log_rand()
|
|
|
|
// Usage:
|
|
|
|
// log_rand(minval, maxval, factor);
|
|
|
|
// Description:
|
|
|
|
// Returns a single random number, with a logarithmic distribution.
|
|
|
|
// Arguments:
|
|
|
|
// minval = Minimum value to return.
|
|
|
|
// maxval = Maximum value to return. `minval` <= X < `maxval`.
|
|
|
|
// factor = Log factor to use. Values of X are returned `factor` times more often than X+1.
|
|
|
|
function log_rand(minval, maxval, factor) = -ln(1-rands(1-1/pow(factor,minval), 1-1/pow(factor,maxval), 1)[0])/ln(factor);
|
|
|
|
|
|
|
|
|
2019-03-23 04:13:18 +00:00
|
|
|
// Function: segs()
|
|
|
|
// Description:
|
|
|
|
// Calculate the standard number of sides OpenSCAD would give a circle based on `$fn`, `$fa`, and `$fs`.
|
|
|
|
// Arguments:
|
|
|
|
// r = Radius of circle to get the number of segments for.
|
2019-04-09 01:49:34 +00:00
|
|
|
function segs(r) =
|
|
|
|
$fn>0? ($fn>3? $fn : 3) :
|
|
|
|
ceil(max(5, min(360/$fa, abs(r)*2*PI/$fs)));
|
2017-08-30 00:00:16 +00:00
|
|
|
|
|
|
|
|
2019-03-23 04:13:18 +00:00
|
|
|
// Function: lerp()
|
|
|
|
// Description: Interpolate between two values or vectors.
|
|
|
|
// Arguments:
|
|
|
|
// a = First value.
|
|
|
|
// b = Second value.
|
|
|
|
// u = The proportion from `a` to `b` to calculate. Valid range is 0.0 to 1.0, inclusive.
|
|
|
|
function lerp(a,b,u) = (1-u)*a + u*b;
|
2017-08-30 00:00:16 +00:00
|
|
|
|
|
|
|
|
2019-03-23 04:13:18 +00:00
|
|
|
// Function: hypot()
|
|
|
|
// Description: Calculate hypotenuse length of a 2D or 3D triangle.
|
|
|
|
// Arguments:
|
|
|
|
// x = Length on the X axis.
|
|
|
|
// y = Length on the Y axis.
|
|
|
|
// z = Length on the Z axis.
|
|
|
|
function hypot(x,y,z=0) = norm([x,y,z]);
|
2017-08-30 00:00:16 +00:00
|
|
|
|
|
|
|
|
2019-03-23 04:13:18 +00:00
|
|
|
// Function: sinh()
|
2019-03-25 10:02:24 +00:00
|
|
|
// Description: Takes a value `x`, and returns the hyperbolic sine of it.
|
2019-03-23 04:13:18 +00:00
|
|
|
function sinh(x) = (exp(x)-exp(-x))/2;
|
2018-09-01 09:38:47 +00:00
|
|
|
|
|
|
|
|
2019-03-23 04:13:18 +00:00
|
|
|
// Function: cosh()
|
2019-03-25 10:02:24 +00:00
|
|
|
// Description: Takes a value `x`, and returns the hyperbolic cosine of it.
|
2019-03-23 04:13:18 +00:00
|
|
|
function cosh(x) = (exp(x)+exp(-x))/2;
|
|
|
|
|
|
|
|
|
|
|
|
// Function: tanh()
|
2019-03-25 10:02:24 +00:00
|
|
|
// Description: Takes a value `x`, and returns the hyperbolic tangent of it.
|
2019-03-23 04:13:18 +00:00
|
|
|
function tanh(x) = sinh(x)/cosh(x);
|
2017-08-30 00:00:16 +00:00
|
|
|
|
|
|
|
|
2019-03-23 04:13:18 +00:00
|
|
|
// Function: asinh()
|
2019-03-25 10:02:24 +00:00
|
|
|
// Description: Takes a value `x`, and returns the inverse hyperbolic sine of it.
|
2019-03-23 04:13:18 +00:00
|
|
|
function asinh(x) = ln(x+sqrt(x*x+1));
|
|
|
|
|
|
|
|
|
|
|
|
// Function: acosh()
|
2019-03-25 10:02:24 +00:00
|
|
|
// Description: Takes a value `x`, and returns the inverse hyperbolic cosine of it.
|
2019-03-23 04:13:18 +00:00
|
|
|
function acosh(x) = ln(x+sqrt(x*x-1));
|
|
|
|
|
|
|
|
|
|
|
|
// Function: atanh()
|
2019-03-25 10:02:24 +00:00
|
|
|
// Description: Takes a value `x`, and returns the inverse hyperbolic tangent of it.
|
2019-03-23 04:13:18 +00:00
|
|
|
function atanh(x) = ln((1+x)/(1-x))/2;
|
|
|
|
|
|
|
|
|
|
|
|
// Function: sum()
|
|
|
|
// Description:
|
2019-05-10 10:00:41 +00:00
|
|
|
// Returns the sum of all entries in the given list.
|
2019-03-23 04:13:18 +00:00
|
|
|
// If passed an array of vectors, returns a vector of sums of each part.
|
|
|
|
// Arguments:
|
2019-05-10 10:00:41 +00:00
|
|
|
// v = The list to get the sum of.
|
2019-03-23 04:13:18 +00:00
|
|
|
// Example:
|
|
|
|
// sum([1,2,3]); // returns 6.
|
|
|
|
// sum([[1,2,3], [3,4,5], [5,6,7]]); // returns [9, 12, 15]
|
|
|
|
function sum(v, i=0, tot=undef) = i>=len(v)? tot : sum(v, i+1, ((tot==undef)? v[i] : tot+v[i]));
|
|
|
|
|
|
|
|
|
|
|
|
// Function: sum_of_squares()
|
|
|
|
// Description:
|
|
|
|
// Returns the sum of the square of each element of a vector.
|
|
|
|
// Arguments:
|
|
|
|
// v = The vector to get the sum of.
|
|
|
|
// Example:
|
|
|
|
// sum_of_squares([1,2,3]); // returns 14.
|
|
|
|
function sum_of_squares(v, i=0, tot=0) = sum(vmul(v,v));
|
|
|
|
|
|
|
|
|
|
|
|
// Function: sum_of_sines()
|
|
|
|
// Usage:
|
|
|
|
// sum_of_sines(a,sines)
|
|
|
|
// Description:
|
|
|
|
// Gives the sum of a series of sines, at a given angle.
|
|
|
|
// Arguments:
|
|
|
|
// a = Angle to get the value for.
|
|
|
|
// sines = List of [amplitude, frequency, offset] items, where the frequency is the number of times the cycle repeats around the circle.
|
|
|
|
function sum_of_sines(a, sines) =
|
|
|
|
sum([
|
|
|
|
for (s = sines) let(
|
|
|
|
ss=point3d(s),
|
|
|
|
v=ss.x*sin(a*ss.y+ss.z)
|
|
|
|
) v
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
2019-05-10 10:00:41 +00:00
|
|
|
// Function: deltas()
|
|
|
|
// Description:
|
|
|
|
// Returns a list with the deltas of adjacent entries in the given list.
|
|
|
|
// Given [a,b,c,d], returns [b-a,c-b,d-c].
|
|
|
|
// Arguments:
|
|
|
|
// v = The list to get the deltas of.
|
|
|
|
// Example:
|
|
|
|
// deltas([2,5,9,17]); // returns [3,4,8].
|
|
|
|
// deltas([[1,2,3], [3,6,8], [4,8,11]]); // returns [[2,4,5], [1,2,3]]
|
|
|
|
function deltas(v) = len(v)<2? v : [for (p=pair(v)) p.y-p.x];
|
|
|
|
|
|
|
|
|
2019-03-23 04:13:18 +00:00
|
|
|
// Function: mean()
|
|
|
|
// Description:
|
|
|
|
// Returns the mean of all entries in the given array.
|
|
|
|
// If passed an array of vectors, returns a vector of mean of each part.
|
|
|
|
// Arguments:
|
|
|
|
// v = The list of values to get the mean of.
|
|
|
|
// Example:
|
2019-04-04 07:37:21 +00:00
|
|
|
// mean([2,3,4]); // returns 3.
|
|
|
|
// mean([[1,2,3], [3,4,5], [5,6,7]]); // returns [3, 4, 5]
|
2019-03-23 04:13:18 +00:00
|
|
|
function mean(v) = sum(v)/len(v);
|
|
|
|
|
|
|
|
|
2019-04-02 06:44:12 +00:00
|
|
|
// Section: Comparisons and Logic
|
|
|
|
|
|
|
|
|
2019-03-29 00:46:35 +00:00
|
|
|
// Function: compare_vals()
|
|
|
|
// Usage:
|
|
|
|
// compare_vals(a, b);
|
|
|
|
// Description:
|
2019-04-02 06:40:15 +00:00
|
|
|
// Compares two values. Lists are compared recursively.
|
2019-04-03 20:54:48 +00:00
|
|
|
// Results are undefined if the two values are not of similar types.
|
2019-03-23 04:13:18 +00:00
|
|
|
// Arguments:
|
2019-03-29 00:46:35 +00:00
|
|
|
// a = First value to compare.
|
|
|
|
// b = Second value to compare.
|
2019-04-03 20:54:48 +00:00
|
|
|
function compare_vals(a, b) =
|
2019-04-02 06:40:15 +00:00
|
|
|
(a==b)? 0 :
|
|
|
|
(a==undef)? -1 :
|
|
|
|
(b==undef)? 1 :
|
|
|
|
((a==[] || a=="" || a[0]!=undef) && (b==[] || b=="" || b[0]!=undef))? (
|
2019-04-03 20:54:48 +00:00
|
|
|
compare_lists(a, b)
|
2019-04-02 06:40:15 +00:00
|
|
|
) : (a<b)? -1 :
|
|
|
|
(a>b)? 1 : 0;
|
2019-03-29 00:46:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Function: compare_lists()
|
|
|
|
// Usage:
|
|
|
|
// compare_lists(a, b)
|
|
|
|
// Description:
|
|
|
|
// Compare contents of two lists.
|
|
|
|
// Returns <0 if `a`<`b`.
|
|
|
|
// Returns 0 if `a`==`b`.
|
2019-04-03 20:54:48 +00:00
|
|
|
// Returns >0 if `a`>`b`.
|
|
|
|
// Results are undefined if elements are not of similar types.
|
2019-03-29 00:46:35 +00:00
|
|
|
// Arguments:
|
|
|
|
// a = First list to compare.
|
|
|
|
// b = Second list to compare.
|
|
|
|
function compare_lists(a, b, n=0) =
|
2019-04-03 20:54:48 +00:00
|
|
|
let(
|
|
|
|
// This curious construction enables tail recursion optimization.
|
|
|
|
cmp = (a==b)? 0 :
|
|
|
|
(len(a)<=n)? -1 :
|
|
|
|
(len(b)<=n)? 1 :
|
2019-04-09 03:51:29 +00:00
|
|
|
(a==a[n] || b==b[n])? (
|
|
|
|
a<b? -1 : a>b? 1 : 0
|
|
|
|
) : compare_vals(a[n], b[n])
|
2019-04-03 20:54:48 +00:00
|
|
|
)
|
|
|
|
(cmp != 0 || a==b)? cmp :
|
2019-03-29 00:46:35 +00:00
|
|
|
compare_lists(a, b, n+1);
|
2019-03-23 04:13:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Function: any()
|
2019-03-25 09:53:49 +00:00
|
|
|
// Description:
|
|
|
|
// Returns true if any item in list `l` evaluates as true.
|
|
|
|
// If `l` is a lists of lists, `any()` is applied recursively to each sublist.
|
2019-03-23 04:13:18 +00:00
|
|
|
// Arguments:
|
|
|
|
// l = The list to test for true items.
|
|
|
|
// Example:
|
|
|
|
// any([0,false,undef]); // Returns false.
|
|
|
|
// any([1,false,undef]); // Returns true.
|
|
|
|
// any([1,5,true]); // Returns true.
|
2019-03-25 09:53:49 +00:00
|
|
|
// any([[0,0], [0,0]]); // Returns false.
|
|
|
|
// any([[0,0], [1,0]]); // Returns true.
|
2019-03-29 00:46:35 +00:00
|
|
|
function any(l, i=0, succ=false) =
|
|
|
|
(i>=len(l) || succ)? succ :
|
|
|
|
any(
|
|
|
|
l, i=i+1, succ=(
|
2019-04-20 00:02:17 +00:00
|
|
|
is_list(l[i])? any(l[i]) :
|
2019-03-29 00:46:35 +00:00
|
|
|
!(!l[i])
|
|
|
|
)
|
2019-03-25 09:53:49 +00:00
|
|
|
);
|
2019-03-23 04:13:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Function: all()
|
2019-03-25 09:53:49 +00:00
|
|
|
// Description:
|
|
|
|
// Returns true if all items in list `l` evaluate as true.
|
|
|
|
// If `l` is a lists of lists, `all()` is applied recursively to each sublist.
|
2019-03-23 04:13:18 +00:00
|
|
|
// Arguments:
|
|
|
|
// l = The list to test for true items.
|
|
|
|
// Example:
|
|
|
|
// all([0,false,undef]); // Returns false.
|
|
|
|
// all([1,false,undef]); // Returns false.
|
|
|
|
// all([1,5,true]); // Returns true.
|
2019-03-25 09:53:49 +00:00
|
|
|
// all([[0,0], [0,0]]); // Returns false.
|
|
|
|
// all([[0,0], [1,0]]); // Returns false.
|
|
|
|
// all([[1,1], [1,1]]); // Returns true.
|
2019-03-29 00:46:35 +00:00
|
|
|
function all(l, i=0, fail=false) =
|
|
|
|
(i>=len(l) || fail)? (!fail) :
|
|
|
|
all(
|
|
|
|
l, i=i+1, fail=(
|
2019-04-20 00:02:17 +00:00
|
|
|
is_list(l[i])? !all(l[i]) :
|
2019-03-29 00:46:35 +00:00
|
|
|
!l[i]
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
// Function: count_true()
|
|
|
|
// Usage:
|
|
|
|
// count_true(l)
|
|
|
|
// Description:
|
|
|
|
// Returns the number of items in `l` that evaluate as true.
|
|
|
|
// If `l` is a lists of lists, this is applied recursively to each
|
|
|
|
// sublist. Returns the total count of items that evaluate as true
|
|
|
|
// in all recursive sublists.
|
|
|
|
// Arguments:
|
|
|
|
// l = The list to test for true items.
|
|
|
|
// nmax = If given, stop counting if `nmax` items evaluate as true.
|
|
|
|
// Example:
|
|
|
|
// count_true([0,false,undef]); // Returns 0.
|
|
|
|
// count_true([1,false,undef]); // Returns 1.
|
|
|
|
// count_true([1,5,false]); // Returns 2.
|
|
|
|
// count_true([1,5,true]); // Returns 3.
|
|
|
|
// count_true([[0,0], [0,0]]); // Returns 0.
|
|
|
|
// count_true([[0,0], [1,0]]); // Returns 1.
|
|
|
|
// count_true([[1,1], [1,1]]); // Returns 4.
|
|
|
|
// count_true([[1,1], [1,1]], nmax=3); // Returns 3.
|
|
|
|
function count_true(l, nmax=undef, i=0, cnt=0) =
|
|
|
|
(i>=len(l) || (nmax!=undef && cnt>=nmax))? cnt :
|
|
|
|
count_true(
|
|
|
|
l=l, nmax=nmax, i=i+1, cnt=cnt+(
|
2019-04-20 00:02:17 +00:00
|
|
|
is_list(l[i])? count_true(l[i], nmax=nmax-cnt) :
|
2019-03-29 00:46:35 +00:00
|
|
|
(l[i]? 1 : 0)
|
|
|
|
)
|
2019-03-25 09:53:49 +00:00
|
|
|
);
|
|
|
|
|
2019-03-23 04:13:18 +00:00
|
|
|
|
2017-08-30 00:00:16 +00:00
|
|
|
// vim: noexpandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap
|