From 0d66f02cd92f73eb695cd3f2e6c1d96391e13f16 Mon Sep 17 00:00:00 2001 From: Erich Loftis Date: Sun, 24 Nov 2024 23:30:21 -0600 Subject: [PATCH] Update Compare_Bi-Directional_Approach.js --- js/Compare_Bi-Directional_Approach.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/Compare_Bi-Directional_Approach.js b/js/Compare_Bi-Directional_Approach.js index f294aa4e..f4925281 100644 --- a/js/Compare_Bi-Directional_Approach.js +++ b/js/Compare_Bi-Directional_Approach.js @@ -10,12 +10,12 @@ function initSceneData() // scene/demo-specific three.js objects setup goes here sceneIsDynamic = false; - edgeSharpenSpeed = 0.0002; + edgeSharpenSpeed = 0.001;//0.0002; cameraFlightSpeed = 300; // pixelRatio is resolution - range: 0.5(half resolution) to 1.0(full resolution) - pixelRatio = mouseControl ? 1.0 : 0.75; // less demanding on battery-powered mobile devices + pixelRatio = mouseControl ? 1.0 : 1.0; // mobile devices can also handle full resolution for this demo EPS_intersect = 0.01;