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 /doc | |
parent | ee17d9897cfaf382d36e2cf0a1aae3da5e2ef2f7 (diff) |
math: vector: Deprecate #v syntax and remove uses of it.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api.texi | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/doc/api.texi b/doc/api.texi index b22fd57..3946ecd 100644 --- a/doc/api.texi +++ b/doc/api.texi @@ -627,13 +627,6 @@ Here's a quick example of adding two vectors: (define v (vec2+ (vec2 1 2) (vec2 3 4))) @end example -Since vectors are used so frequently, the reader macro @code{#v} is -used to cut down on typing: - -@example -(define v (vec2+ #v(1 2) #v(3 4))) -@end example - @emph{A Note About Performance} A lot of time has been spent making Chickadee's vector operations |