]> git.pond.sub.org Git - eow/blobdiff - static/dojo-release-1.1.1/dojox/gfx3d/tests/test_quads.html
add Dojo 1.1.1
[eow] / static / dojo-release-1.1.1 / dojox / gfx3d / tests / test_quads.html
diff --git a/static/dojo-release-1.1.1/dojox/gfx3d/tests/test_quads.html b/static/dojo-release-1.1.1/dojox/gfx3d/tests/test_quads.html
new file mode 100644 (file)
index 0000000..aff3b3b
--- /dev/null
@@ -0,0 +1,78 @@
+<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" >
+<head>
+<title>Quads test of dojox.gfx3d.</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<style type="text/css">
+       @import "../../../dojo/resources/dojo.css";
+       @import "../../../dijit/tests/css/dijitTests.css";
+</style>
+<script type="text/javascript" src="../../../dojo/dojo.js" djConfig="isDebug: true"></script>
+<script type="text/javascript">
+
+dojo.require("dojox.gfx3d");
+
+makeObjects = function(){
+       var surface = dojox.gfx.createSurface("test", 500, 500);
+       var view = surface.createViewport();
+       var strip = [
+               {x: 50, y: 0, z: 0}, 
+               {x: 70, y: 0, z: 60},
+               {x: 0, y: 70, z: 60},
+               {x: 0, y: 50, z: 0}, 
+               {x: -50, y: 0, z: 0},
+               {x: -70, y: 0, z: 60},
+               {x: 0, y: -70, z: 60},
+               {x: 0, y: -50, z: 0}
+       ];
+
+       var normal = [
+               {x: 50, y: 0, z: 0}, 
+               {x: 70, y: 0, z: 60},
+               {x: 0, y: 70, z: 60},
+               {x: 0, y: 50, z: 0}, 
+               {x: 0, y: 70, z: 60},
+               {x: 0, y: 50, z: 0}, 
+               {x: -50, y: 0, z: 0},
+               {x: -70, y: 0, z: 60}
+       ];
+
+       var m = dojox.gfx3d.matrix;
+       view.createQuads(normal)
+               .setStroke({color: "blue", width: 1})
+               .setFill("#f00")
+               .applyTransform(dojox.gfx3d.matrix.translate({x: 0, y: 500, z: 10}));
+
+       view.createQuads(strip, "strip")
+               .setStroke({color: "red", width: 1})
+               .setFill("#0f0")
+               .applyTransform(dojox.gfx3d.matrix.translate({x: 0, y: 200, z: 10}));
+
+       var camera = dojox.gfx3d.matrix.normalize([
+               m.cameraRotateXg(30), 
+               m.cameraRotateYg(30),
+               m.cameraRotateXg(50),
+               m.cameraTranslate(-100, -100, 0)
+       ]);
+
+       view.applyCameraTransform(camera);
+       view.render();
+};
+
+mdebug = function(matrix){
+       var m = dojox.gfx3d.matrix.normalize(matrix);
+       console.debug("xx: " + m.xx + ", xy: " + m.xy + " | xz:" + m.xz + " | dx:" + m.dx);
+       console.debug("yx: " + m.yx + ", yy: " + m.yy + " | yz:" + m.yz + " | dy:" + m.dy);
+       console.debug("zx: " + m.zx + ", zy: " + m.zy + " | zz:" + m.zz + " | dz:" + m.dz);
+};
+
+
+dojo.addOnLoad(makeObjects);
+
+</script>
+</head>
+<body>
+<h1>Quads Test</h1>
+<div id="test" style="width: 500px; height: 500px;"></div>
+<p>That's all Folks!</p>
+</body>
+</html>