X-Git-Url: http://git.scottworley.com/nt3d/blobdiff_plain/4e2bdb62f6ca8a3a42462f056fdd55bedb41b1e1..0ab5ca18fc7c4d26a3a7cf30cd902d2ebc190f4d:/nt3d.js diff --git a/nt3d.js b/nt3d.js index ba2315f..623c0f1 100644 --- a/nt3d.js +++ b/nt3d.js @@ -23,6 +23,13 @@ nt3d = { return this.triangle(a, b, c).concat( this.triangle(c, d, a)); }, + trianglefan: function(fan) { + var result = []; + for (var i = 2; i < fan.length; i++) { + result.push(fan[0], fan[i-1], fan[i]); + } + return result; + }, quadstrip: function(strip) { if (strip.length % 2 != 0) { alert("quadstrip length not divisble by 2!");