diff options
author | David Thompson <dthompson2@worcester.edu> | 2021-09-23 07:17:56 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2021-09-23 07:17:56 -0400 |
commit | e5f3c6e2a7583dbc25323563eb26547c91cb760e (patch) | |
tree | 12354685fa2aa2cd06e59ebb85ccb5e34149690f /examples | |
parent | 0ccd85fe9a44bfb8920bfa0c9302d68b8675659d (diff) |
graphics: model: Use keyword arguments in draw-model.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/model.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/model.scm b/examples/model.scm index 2c2f398..26067b6 100644 --- a/examples/model.scm +++ b/examples/model.scm @@ -27,7 +27,10 @@ (define (draw alpha) (with-projection projection - (draw-model model model-matrix view-matrix position)) + (draw-model model + #:model-matrix model-matrix + #:view-matrix view-matrix + #:camera-position position)) (draw-text text text-position)) (define (update dt) |