Skip to content

Commit

Permalink
added 0.1 files
Browse files Browse the repository at this point in the history
  • Loading branch information
Andor committed Jun 26, 2010
1 parent 9337952 commit 5fce796
Show file tree
Hide file tree
Showing 8 changed files with 67,232 additions and 0 deletions.
4 changes: 4 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
David Humphrey
Cathy Leung
Mickael Medel
Andor Salga
22 changes: 22 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Copyright (c) 2010 Seneca College

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
9 changes: 9 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
XB PointStream

XB PointStream is a cross-browser JavaScript tool which emulates Arius3D's PointStream viewer.
It can render a large amount of point cloud data to the <canvas> tag using WebGL.

Website: http://zenit.senecac.on.ca/wiki/index.php/XB_PointStream
GitHub: http://github.com/asalga/XB-PointStream
Lighthouse: http://cdot.lighthouseapp.com/projects/52886-xb-pointstream/
Twitter: XBPointStream
26 changes: 26 additions & 0 deletions demos/acorn.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<html>

<head>
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="../processing.js"></script>
<script>
var filename = "acorn1.asc";
var lightOn = true;
var drawOctree = true;
</script>
</head>

<body onload="document.getElementById('filename').innerHTML = filename;">
<canvas datasrc="../xb.js" id="cvs"></canvas>

<span id="Filename_log">Downloading <span class="filename" id="filename"></span>: ..</span><span class="progress" id="load_percent">0%</span><br />
<span id="Parse_log"></span><span class="progress" id="parse_percent"></span><br />
<span id="NumPoints_log"></span><span class="progress" id="num_points"></span><br />
<span id="Octree_log"></span><span class="progress" id="octree_percent"></span><br />
<span id="VBO_log"></span><span class="progress" id="vbo_progress"></span><br />
<br />
<span id="fps"></span><br />
<span id="controls"></span>
</body>

</html>
57,507 changes: 57,507 additions & 0 deletions demos/acorn1.asc

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions demos/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
span{
vertical-align: top;
font-family: monospace;
}

.progress{
color:purple;
}

.filename{
color: green;
}

canvas{
float: left;
width: 500;
height: 500;
}
Loading

0 comments on commit 5fce796

Please sign in to comment.