我需要删除复杂的配置文件。圆圈被切割,加利福尼亚没有切割。这是一个例子。这不起作用:
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。会发生什么?