diff --git a/components/HSVCone.js b/components/HSVCone.js index 43ee769..0eb5e16 100644 --- a/components/HSVCone.js +++ b/components/HSVCone.js @@ -25,7 +25,7 @@ export class HSVCone { this.group.add(this.marker); // 位置の設定 - this.group.position.set(0, 0, 0); + this.group.position.set(0, -0.5, 0); } createCone() { diff --git a/main.js b/main.js index 9adecf4..9b9d011 100644 --- a/main.js +++ b/main.js @@ -63,12 +63,10 @@ class ColorVisualizerApp { setupCameras() { // RGBカメラの設定 - this.rgbCamera.position.set(3, 2, 3); - this.rgbCamera.lookAt(0.5, 0.5, 0.5); + this.rgbCamera.position.set(2, 1.5, 2); // より近くに配置 // HSVカメラの設定 - this.hsvCamera.position.set(3, 2, 3); - this.hsvCamera.lookAt(0, 0.5, 0); + this.hsvCamera.position.set(1.5, 1.5, 1.5); // より近くに配置 } setupControls() { @@ -180,10 +178,6 @@ class ColorVisualizerApp {
-