1

スクリプトを使用して形状を作成しています。通常はイメージ マップを使用して座標をプロットできますが、このスクリプトは円の半径からの座標を使用しています。

円の半径から座標をプロットするツールや、たとえば座標をプロットするより良い方法はありますか:

これは多角形/星形のためのもので、形状を対称にするのは非常に困難です。もっと複雑な形を作っていきます

circles.push(new Circle(width / 2 - 70, height / 2 - 120, circleRadius));
circles.push(new Circle(width / 2 - 0, height / 2 - 250, circleRadius));
circles.push(new Circle(width / 2 + 70, height / 2 - 120, circleRadius));
circles.push(new Circle(width / 2 + 220, height / 2 - 120, circleRadius));
circles.push(new Circle(width / 2 + 120, height / 2 - 0, circleRadius));
circles.push(new Circle(width / 2 + 180, height / 2 + 180, circleRadius));
circles.push(new Circle(width / 2 - 0, height / 2 + 120, circleRadius));
circles.push(new Circle(width / 2 - 180, height / 2 + 180, circleRadius));
circles.push(new Circle(width / 2 - 120, height / 2 - 0, circleRadius));
circles.push(new Circle(width / 2 - 220, height / 2 - 120, circleRadius));
4

1 に答える 1