From 706508397b37cce111c2b41e188ed4212a399d11 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Tue, 18 Dec 2012 16:12:02 -0800 Subject: [PATCH] Use "this" instead of the global name --- nt3d.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nt3d.js b/nt3d.js index daa628b..fbd8f50 100644 --- a/nt3d.js +++ b/nt3d.js @@ -31,7 +31,7 @@ nt3d = { return result; }, closed_trianglefan: function(fan) { - return nt3d.trianglefan(fan.concat([fan[1]])); + return this.trianglefan(fan.concat([fan[1]])); }, quadstrip: function(strip) { if (strip.length % 2 != 0) { @@ -39,12 +39,12 @@ nt3d = { } 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 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], -- 2.44.1