]>
git.scottworley.com Git - nt3d/blob - nt3d.js
ae17af1a01225f486e8fd1bb3cddb7d4ce2b910c
1 /* nt3d - Javascript library for doing some 3D stuff.
2 * Copyright (C) 2012 Scott Worley <ScottWorley@ScottWorley.com>
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU Affero General Public License as
6 * published by the Free Software Foundation, either version 3 of the
7 * License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Affero General Public License for more details.
14 * You should have received a copy of the GNU Affero General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 triangle: function(a
, b
, c
) {
22 quad: function(a
, b
, c
, d
) {
23 return this.triangle(a
, b
, c
).concat(
24 this.triangle(c
, d
, a
));
26 trianglefan: function(fan
) {
28 for (var i
= 2; i
< fan
.length
; i
++) {
29 result
.push(fan
[0], fan
[i
-1], fan
[i
]);
33 quadstrip: function(strip
) {
34 if (strip
.length
% 2 != 0) {
35 alert("quadstrip length not divisble by 2!");
38 for (var i
= 2; i
< strip
.length
; i
+= 2) {
39 result
= result
.concat(nt3d
.quad(strip
[i
-2], strip
[i
-1], strip
[i
+1], strip
[i
]));
43 closed_quadstrip: function(strip
) {
44 return nt3d
.quadstrip(strip
.concat([strip
[0], strip
[1]]));
51 cross: function(a
, b
) {
52 return [a
[1]*b
[2] - a
[2]*b
[1],
53 a
[2]*b
[0] - a
[0]*b
[2],
54 a
[0]*b
[1] - a
[1]*b
[0]];
56 normal: function(a
, b
, c
) {
57 return this.cross(this.sub(a
, b
), this.sub(b
, c
));
60 // Get params from form
62 for (var i
= 0; i
< this.user_params
.length
; i
++) {
63 params
[i
] = this.form
.elements
["param"+i
].value
;
67 this.points
= this.user_function
.apply(null, params
);
68 if (this.points
.length
% 3 != 0) {
69 alert("Points list length not divisble by 3!");
71 var n
= this.points
.length
/ 3;
74 this.stl
= "solid " + this.user_function
.name
+ "\n";
75 for (var i
= 0; i
< n
; i
++) {
76 var a
= this.points
[i
*3+0];
77 var b
= this.points
[i
*3+1];
78 var c
= this.points
[i
*3+2];
79 var normal
= this.normal(a
, b
, c
);
80 this.stl
+= "facet normal " + normal
[0] + " " + normal
[1] + " " + normal
[2] + "\n" +
82 "vertex " + a
[0] + " " + a
[1] + " " + a
[2] + "\n"+
83 "vertex " + b
[0] + " " + b
[1] + " " + b
[2] + "\n"+
84 "vertex " + c
[0] + " " + c
[1] + " " + c
[2] + "\n"+
88 this.stl
+= "endsolid " + this.user_function
.name
+ "\n";
90 // Remove any previous download links
91 var old_download_link
= document
.getElementById("nt3d_download");
92 if (old_download_link
) {
93 old_download_link
.parentNode
.removeChild(old_download_link
);
96 // Offer result as download
97 var download_link
= document
.createElement("a");
98 download_link
.appendChild(document
.createTextNode("Download!"));
99 download_link
.setAttribute("id", "nt3d_download");
100 download_link
.setAttribute("style", "background-color: blue");
101 download_link
.setAttribute("download", this.user_function
.name
+ ".stl");
102 download_link
.setAttribute("href", "data:application/sla," + encodeURIComponent(this.stl
));
103 this.ui
.appendChild(download_link
);
104 setTimeout(function() { download_link
.setAttribute("style", "-webkit-transition: background-color 0.4s; -moz-transition: background-color 0.4s; -o-transition: background-color 0.4s; -ms-transition: background-color 0.4s; transition: background-color 0.4s; background-color: inherit"); }, 0);
106 framework: function (f
, params
) {
107 this.user_function
= f
;
108 this.user_params
= params
;
111 this.ui
= document
.getElementById("nt3dui");
113 this.ui
= document
.createElement("div");
114 this.ui
.setAttribute("id", "nt3dui");
115 document
.body
.appendChild(this.ui
);
117 this.form
= document
.createElement("form");
118 this.form
.setAttribute("onsubmit", "nt3d.go(); return false");
119 this.ui
.appendChild(this.form
);
120 var table
= document
.createElement("table");
121 this.form
.appendChild(table
);
122 var tr
= document
.createElement("tr");
123 table
.appendChild(tr
);
124 var th
= document
.createElement("th");
125 th
.appendChild(document
.createTextNode("Variable"));
127 th
= document
.createElement("th");
128 th
.appendChild(document
.createTextNode("Value"));
130 for (var i
= 0; i
< params
.length
; i
++) {
131 tr
= document
.createElement("tr");
132 table
.appendChild(tr
);
133 var td
= document
.createElement("td");
134 td
.appendChild(document
.createTextNode(params
[i
][0]));
136 td
= document
.createElement("td");
137 var input
= document
.createElement("input");
138 input
.setAttribute("name", "param" + i
);
139 input
.setAttribute("value", params
[i
][1]);
140 td
.appendChild(input
);
143 var go
= document
.createElement("input");
144 go
.setAttribute("type", "button");
145 go
.setAttribute("value", "Go!");
146 go
.setAttribute("onclick", "nt3d.go()");
147 this.form
.appendChild(go
);