three.js之创建坐标系网格
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>My first three.js app</title>
<style>
body {
margin: 0;
}
canvas {
width: 100%;
height: 100%
}
div#canvas-frame {
border: none;
cursor: pointer;
width: 100%;
height: 600px;
background-color: #EEEEEE;
}
</style>
</head>
<body>
<div id="canvas-frame"></div>
<script src="../static/three.js-master/build/three.js"></script>
<script>
var renderer; // 渲染器, 声明变量
function initThree() {
renderer = new THREE.W

最低0.47元/天 解锁文章
1139

被折叠的 条评论
为什么被折叠?



