From bff1653a43646def7ea0fb3491b4022209e8cafe Mon Sep 17 00:00:00 2001 From: ChenX Date: Fri, 31 May 2019 17:35:31 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A0=E5=A4=A7=E7=9B=B8=E6=9C=BA=E8=A3=81?= =?UTF-8?q?=E5=89=AA=E5=B9=B3=E9=9D=A2=E5=A4=A7=E5=B0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/GraphicsSystem/CameraUpdate.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GraphicsSystem/CameraUpdate.ts b/src/GraphicsSystem/CameraUpdate.ts index 75b5e70c2..ba099034d 100644 --- a/src/GraphicsSystem/CameraUpdate.ts +++ b/src/GraphicsSystem/CameraUpdate.ts @@ -2,7 +2,7 @@ import { Box3, Camera, Math as TMath, OrthographicCamera, PerspectiveCamera, Vec import { CADFiler } from '../DatabaseServices/CADFiler'; import { Orbit } from '../Geometry/Orbit'; -const ViewScopeSize = 4e4; +const ViewScopeSize = 4e6; //相机活动范围 const ViewScopeMin = new Vector3(-ViewScopeSize, -ViewScopeSize * 0.7, -ViewScopeSize); const ViewScopeMax = ViewScopeMin.clone().negate();