From a318cd085d80e843239960ae07c66a6d20a72de3 Mon Sep 17 00:00:00 2001 From: lilpacy Date: Sat, 16 Nov 2024 01:50:14 +0900 Subject: [PATCH] rm grids from hsv cone --- main.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/main.js b/main.js index 894d5da..9adecf4 100644 --- a/main.js +++ b/main.js @@ -110,11 +110,11 @@ class ColorVisualizerApp { this.rgbScene.add(rgbAxesHelper); this.addAxisLabels(this.rgbScene); - // HSVシーンにヘルパーを追加 - const hsvGridHelper = new THREE.GridHelper(1, 10); - this.hsvScene.add(hsvGridHelper); - const hsvAxesHelper = new THREE.AxesHelper(1.2); - this.hsvScene.add(hsvAxesHelper); + // HSVシーンのヘルパーを削除 + // const hsvGridHelper = new THREE.GridHelper(1, 10); + // this.hsvScene.add(hsvGridHelper); + // const hsvAxesHelper = new THREE.AxesHelper(1.2); + // this.hsvScene.add(hsvAxesHelper); } addAxisLabels(scene) {