提交 6b9690cb 编写于 作者: M Mr.doob

Fixed Cloth example.

上级 ab5a31ce
......@@ -46,13 +46,15 @@ var lastTime;
function plane( width, height ) {
return function( u, v ) {
return function ( u, v, optionalTarget ) {
var result = optionalTarget || new THREE.Vector3();
var x = ( u - 0.5 ) * width;
var y = ( v + 0.5 ) * height;
var z = 0;
return new THREE.Vector3( x, y, z );
return result.set( x, y, z );
};
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册