1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-08-20 07:21:43 +02:00

no really, < s

This commit is contained in:
Pomax
2018-06-22 12:01:36 -07:00
parent 2d1c5139e2
commit 15f50ae53f
8 changed files with 8 additions and 8 deletions

View File

@@ -9,7 +9,7 @@ function binomial(n,k) {
while(n >= lut.length) {
var s = lut.length;
var nextRow = [1];
for(var i=1,prev=s-1; i<=s; i++) {
for(var i=1,prev=s-1; i<s; i++) {
nextRow[i] = lut[prev][i-1] + lut[prev][i];
}
nextRow[s] = 1;