复杂的路径没有削减

时间:2015-03-24 18:55:50

标签: three.js

我需要删除复杂的配置文件。圆圈被切割,加利福尼亚没有切割。这是一个例子。这不起作用:

squareShape.holes.push( californiaPath );

它 - 工作:

var Radius = 190, x0 = 1440, y0 = 1260;
var CirclePath = new THREE.Path();
CirclePath.moveTo( x0 + Radius, y0 );
CirclePath.absarc( x0, y0, Radius, 0, Math.PI*2, true );
CirclePath.closePath();
squareShape.holes.push( CirclePath );

here。会发生什么?

0 个答案:

没有答案