diff options
author | XANTRONIX Development | 2022-02-22 23:01:33 -0500 |
---|---|---|
committer | XANTRONIX Development | 2022-02-22 23:01:33 -0500 |
commit | b87df0764dfe36e3ecd9fa1c3c105758c8c28e05 (patch) | |
tree | 45c466a3f37b7014e085d2ddc579cd7e6d60fce6 /include/xas | |
parent | 0b54991356e07f456012627131531a8abf6b44f9 (diff) | |
download | xas-b87df0764dfe36e3ecd9fa1c3c105758c8c28e05.tar.gz xas-b87df0764dfe36e3ecd9fa1c3c105758c8c28e05.tar.bz2 xas-b87df0764dfe36e3ecd9fa1c3c105758c8c28e05.zip |
Use cone rotation, not point of base, for vectors
Diffstat (limited to 'include/xas')
-rw-r--r-- | include/xas/spatial.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/xas/spatial.h b/include/xas/spatial.h index 6ad2675..db04ceb 100644 --- a/include/xas/spatial.h +++ b/include/xas/spatial.h @@ -14,7 +14,7 @@ typedef struct _xas_spatial_coord { typedef struct _xas_spatial_cone { xas_spatial_coord apex, - base; + rotation; float angle; } xas_spatial_cone; |