Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
MWM
  • Loading branch information
Andor committed Jul 9, 2010
2 parents d7b8212 + 4434007 commit e685a6f
Show file tree
Hide file tree
Showing 5 changed files with 807 additions and 779 deletions.
2 changes: 0 additions & 2 deletions demos/acorn/acorn.html
@@ -1,13 +1,11 @@
<html>

<head>

<!-- jQuery stuff -->
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.2.custom.min.js"></script>
<link rel="stylesheet" type="text/css" media="screen" href="css/ui-lightness/jquery-ui-1.8.2.custom.css" />

<script src="../../mjs.js"></script>
<script src="../../pointstream.js"></script>
<script src="acorn.js"></script>
</head>
Expand Down
22 changes: 20 additions & 2 deletions demos/mickey/mickey.html
Expand Up @@ -2,13 +2,31 @@

<head>
<link rel="stylesheet" type="text/css" href="../style.css" />
<script src="../../mjs.js"></script>
<script src="../../pointstream.js"></script>
<script src="mickey.js"></script>
</head>

<body onLoad="start();">
<canvas id="canvas" width="500" height="500"></canvas>
A cross-browser JavaScript tool which will emulate Arius3D's PointStream viewer. <br />
It will be able to quickly render a large amount of point cloud data to the &lt;canvas &gt;<br />
tag using WebGL.<br />
A cross-browser JavaScript tool which will emulate Arius3D's PointStream viewer. <br />
It will be able to quickly render a large amount of point cloud data to the &lt;canvas &gt;<br />
tag using WebGL.<br />
A cross-browser JavaScript tool which will emulate Arius3D's PointStream viewer. <br />
It will be able to quickly render a large amount of point cloud data to the &lt;canvas &gt;<br />
tag using WebGL.<br />
A cross-browser JavaScript tool which will emulate Arius3D's PointStream viewer. <br />
It will be able to quickly render a large amount of point cloud data to the &lt;canvas &gt;<br />
tag using WebGL.<br />
A cross-browser JavaScript tool which will emulate Arius3D's PointStream viewer. <br />
It will be able to quickly render a large amount of point cloud data to the &lt;canvas &gt;<br />
tag using WebGL.<br />
A cross-browser JavaScript tool which will emulate Arius3D's PointStream viewer. <br />
It will be able to quickly render a large amount of point cloud data to the &lt;canvas &gt;<br />
tag using WebGL.<br />

<canvas id="canvas" width="500" height="500" style="position:absolute;left:0px;top:0px;"></canvas>
<span id="debug"></span>
</body>

Expand Down
4 changes: 2 additions & 2 deletions demos/mickey/mickey.js
Expand Up @@ -10,7 +10,7 @@ var size = 500;

window.onresize = function(){
ps.resize(window.innerWidth, window.innerHeight);
ps.background([0.3,0.5,0.7,1]);
ps.background([0.3,0.5,0.7,0.2]);
};

function zoom(amt){
Expand Down Expand Up @@ -59,7 +59,7 @@ function start(){
ps.setup(document.getElementById('canvas'), render);

ps.pointSize(8);
ps.background([0.3,0.5,0.7,1]);
ps.background([0.3,0.5,0.7,0.2]);

ps.onMouseScroll = zoom;
ps.onMousePressed = mousePressed;
Expand Down

0 comments on commit e685a6f

Please sign in to comment.