]> git.scottworley.com Git - nt3d/blobdiff - nt3d.js
Quadstrips
[nt3d] / nt3d.js
diff --git a/nt3d.js b/nt3d.js
index 9d45486c32095235f9c423453b78b28acd193247..ba2315fd777ad28c43ac0dd956a33f967739cb8e 100644 (file)
--- a/nt3d.js
+++ b/nt3d.js
@@ -23,6 +23,19 @@ nt3d = {
                return this.triangle(a, b, c).concat(
                       this.triangle(c, d, a));
        },
+       quadstrip: function(strip) {
+               if (strip.length % 2 != 0) {
+                       alert("quadstrip length not divisble by 2!");
+               }
+               var result = [];
+               for (var i = 2; i < strip.length; i += 2) {
+                       result = result.concat(nt3d.quad(strip[i-2], strip[i-1], strip[i+1], strip[i]));
+               }
+               return result;
+       },
+       closed_quadstrip: function(strip) {
+               return nt3d.quadstrip(strip).concat(nt3d.quad(strip[strip.length-2], strip[strip.length-1], strip[1], strip[0]));
+       },
        sub: function(a, b) {
                return [a[0] - b[0],
                        a[1] - b[1],