diff options
author | David Thompson <dthompson2@worcester.edu> | 2021-09-21 20:05:17 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2021-09-21 20:34:43 -0400 |
commit | b9fa5959cbd7ad512566029b202d00a443ea3f15 (patch) | |
tree | 534a60bffe5b615a1551f52617688a7776c8d589 /examples/model.scm | |
parent | ee17d9897cfaf382d36e2cf0a1aae3da5e2ef2f7 (diff) |
math: vector: Deprecate #v syntax and remove uses of it.
Diffstat (limited to 'examples/model.scm')
-rw-r--r-- | examples/model.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/model.scm b/examples/model.scm index 00441a1..8ba9b4a 100644 --- a/examples/model.scm +++ b/examples/model.scm @@ -14,7 +14,7 @@ (define position (vec3 0.0 0.0 0.0)) (define velocity (vec3 0.0 0.0 0.0)) (define model #f) -(define text-position #v(4.0 464.0)) +(define text-position (vec2 4.0 464.0)) (define text "") (define y-rotation 0.0) |