]> git.scottworley.com Git - nt3d/blobdiff - nt3d.js
Use "this" instead of the global name
[nt3d] / nt3d.js
diff --git a/nt3d.js b/nt3d.js
index ae17af1a01225f486e8fd1bb3cddb7d4ce2b910c..fbd8f50aa34256add50d21c586c0e83a8bd56fea 100644 (file)
--- a/nt3d.js
+++ b/nt3d.js
@@ -30,18 +30,21 @@ nt3d = {
                }
                return result;
        },
                }
                return result;
        },
+       closed_trianglefan: function(fan) {
+               return this.trianglefan(fan.concat([fan[1]]));
+       },
        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) {
        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]));
+                       result = result.concat(this.quad(strip[i-2], strip[i-1], strip[i+1], strip[i]));
                }
                return result;
        },
        closed_quadstrip: function(strip) {
                }
                return result;
        },
        closed_quadstrip: function(strip) {
-               return nt3d.quadstrip(strip.concat([strip[0], strip[1]]));
+               return this.quadstrip(strip.concat([strip[0], strip[1]]));
        },
        sub: function(a, b) {
                return [a[0] - b[0],
        },
        sub: function(a, b) {
                return [a[0] - b[0],