30 lines
504 B
HTML
30 lines
504 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="chrome=1">
|
||
|
<title>Title</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
</body>
|
||
|
<script type="application/javascript" src="ht.js"></script>
|
||
|
<script type="application/javascript">
|
||
|
|
||
|
function init(){
|
||
|
dataModel = new ht.DataModel();
|
||
|
g3d = new ht.graph3d.Graph3dView(dataModel);
|
||
|
g3d.setGridVisible(true);
|
||
|
|
||
|
borderPane = new ht.widget.BorderPane();
|
||
|
borderPane.addToDOM();
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
|
||
|
|
||
|
</html>
|