Browse Source

Added HTMLExporter.

Mr.doob 12 years ago
parent
commit
96e7cf6c1f
1 changed files with 17 additions and 0 deletions
  1. 17 0
      examples/js/exporters/HTMLExporter.js

+ 17 - 0
examples/js/exporters/HTMLExporter.js

@@ -0,0 +1,17 @@
+/**
+ * @author mrdoob / http://mrdoob.com/
+ */
+
+THREE.HTMLExporter = function () {};
+
+THREE.HTMLExporter.prototype = {
+
+	constructor: THREE.HTMLExporter,
+
+	parse: function ( scene ) {
+
+		return output;
+
+	}
+
+}