fullstack.web/swa/html/ht.html

30 lines
504 B
HTML
Raw Normal View History

2022-12-22 06:57:51 +00:00
<!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>