3d-interface/multisphere/index.php

22 lines
718 B
PHP
Raw Normal View History

2015-04-09 11:20:50 +02:00
<?php include_once("header_functions.php"); ?>
<!doctype html>
<html>
<?php head("Multisphere"); ?>
<body>
<?php include("header.php"); ?>
<?php include("nav.php"); ?>
2015-04-11 17:08:43 +02:00
<section>
<h2>Multiresolution sphere</h2>
<p>
This is the first test of multi-resolution. In fact, it's not
really one multi-resolution sphere but many spheres with
different resolutions. You can change resolution by clicking on
the canvas.
</p>
<div id="container"></div>
</section>
2015-04-09 11:20:50 +02:00
<?php include("jsIncludes.php"); ?>
<script src="js/MultiSphere.js"></script>
</body>
</html>