Skip to content

Commit

Permalink
rm grids from hsv cone
Browse files Browse the repository at this point in the history
  • Loading branch information
lilpacy committed Nov 15, 2024
1 parent 88de463 commit a318cd0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit a318cd0

Please sign in to comment.