aboutsummaryrefslogtreecommitdiff
path: root/utility/projection.py
diff options
context:
space:
mode:
authorAdrian Kummerlaender2019-12-27 23:45:51 +0100
committerAdrian Kummerlaender2019-12-27 23:45:51 +0100
commit342d554e2da1f80aa93d5d28d2d87573db87bbb0 (patch)
tree16fe39d508cb8d3df00a4058f1b9a5b8936f6970 /utility/projection.py
parentaa8dd7798877b43290bceaa9d3e8c8198540c82c (diff)
downloadsymlbm_playground-342d554e2da1f80aa93d5d28d2d87573db87bbb0.tar
symlbm_playground-342d554e2da1f80aa93d5d28d2d87573db87bbb0.tar.gz
symlbm_playground-342d554e2da1f80aa93d5d28d2d87573db87bbb0.tar.bz2
symlbm_playground-342d554e2da1f80aa93d5d28d2d87573db87bbb0.tar.lz
symlbm_playground-342d554e2da1f80aa93d5d28d2d87573db87bbb0.tar.xz
symlbm_playground-342d554e2da1f80aa93d5d28d2d87573db87bbb0.tar.zst
symlbm_playground-342d554e2da1f80aa93d5d28d2d87573db87bbb0.zip
Add SDF-based grid fin example
Diffstat (limited to 'utility/projection.py')
-rw-r--r--utility/projection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utility/projection.py b/utility/projection.py
index 1750fac..76791d9 100644
--- a/utility/projection.py
+++ b/utility/projection.py
@@ -11,7 +11,7 @@ class Projection:
self.update()
def update(self):
- projection = matrix44.create_perspective_projection(20.0, self.ratio, 0.1, 1000.0)
+ projection = matrix44.create_perspective_projection(20.0, self.ratio, 0.1, 5000.0)
look = matrix44.create_look_at(
eye = [0, -self.distance, 0],
target = [0, 0, 0],