3d-interface/stream/index.php

29 lines
1.1 KiB
PHP
Raw Normal View History

2015-04-09 11:20:50 +02:00
<?php include_once("header_functions.php"); ?>
2015-04-07 16:05:43 +02:00
<!doctype html>
<html>
2015-04-09 11:20:50 +02:00
<?php head('Streaming simulator'); ?>
2015-04-07 16:05:43 +02:00
<body>
2015-04-09 11:20:50 +02:00
<?php include("header.php"); ?>
<?php include("nav.php"); ?>
2015-04-11 17:08:43 +02:00
<section>
<h2>Streaming simulator</h2>
<p>
In fact, it's not really streaming. The sphere is fully
preloaded and then, a mesh is created and vertices and faces
are dynamically added to this mesh as time goes by.
</p>
<p>
You can try with a different resolution (between 1 and 25)
<form action="" method="GET">
Resolution : <input id="res" name="res" type="number" min="1" max="25" value="5" length=10/>
<input type="submit" value="Go !" />
</form>
</p>
<div style="border-width:1px; border-style: solid;" id="container"></div>
</section>
2015-04-09 11:20:50 +02:00
<?php include("jsIncludes.php"); ?>
2015-04-09 10:00:15 +02:00
<script src="js/Params.js.php?<?php echo htmlentities($_SERVER['QUERY_STRING']); ?>"></script>
2015-04-07 16:05:43 +02:00
<script src="js/main.js"></script>
</body>
</html>