mirror of
https://github.com/open-goal/jak-project
synced 2026-06-03 02:30:13 -04:00
cd68cb671e
Major change to how `deftype` shows up in our code: - the decompiler will no longer emit the `offset-assert`, `method-count-assert`, `size-assert` and `flag-assert` parameters. There are extremely few cases where having this in the decompiled code is helpful, as the types there come from `all-types` which already has those parameters. This also doesn't break type consistency because: - the asserts aren't compared. - the first step of the test uses `all-types`, which has the asserts, which will throw an error if they're bad. - the decompiler won't emit the `heap-base` parameter unless necessary now. - the decompiler will try its hardest to turn a fixed-offset field into an `overlay-at` field. It falls back to the old offset if all else fails. - `overlay-at` now supports field "dereferencing" to specify the offset that's within a field that's a structure, e.g.: ```lisp (deftype foobar (structure) ((vec vector :inline) (flags int32 :overlay-at (-> vec w)) ) ) ``` in this structure, the offset of `flags` will be 12 because that is the final offset of `vec`'s `w` field within this structure. - **removed ID from all method declarations.** IDs are only ever automatically assigned now. Fixes #3068. - added an `:overlay` parameter to method declarations, in order to declare a new method that goes on top of a previously-defined method. Syntax is `:overlay <method-name>`. Please do not ever use this. - added `state-methods` list parameter. This lets you quickly specify a list of states to be put in the method table. Same syntax as the `states` list parameter. The decompiler will try to put as many states in this as it can without messing with the method ID order. Also changes `defmethod` to make the first type definition (before the arguments) optional. The type can now be inferred from the first argument. Fixes #3093. --------- Co-authored-by: Hat Kid <6624576+Hat-Kid@users.noreply.github.com>
2655 lines
132 KiB
Common Lisp
2655 lines
132 KiB
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; name: vortex-data.gc
|
|
;; name in dgo: vortex-data
|
|
;; dgos: INTROCST
|
|
|
|
;; DECOMP BEGINS
|
|
|
|
(deftype vortex-vertex (structure)
|
|
((pos vector :inline)
|
|
(stq vector :inline)
|
|
)
|
|
)
|
|
|
|
|
|
(deftype vortex-vert-array (structure)
|
|
((data vortex-vertex 306 :inline)
|
|
)
|
|
)
|
|
|
|
|
|
(deftype vortex-work (basic)
|
|
((giftag dma-gif :inline)
|
|
(off-s-0 uint16)
|
|
(off-t-0 uint16)
|
|
(off-s-1 uint16)
|
|
(off-t-1 uint16)
|
|
(off-s-2 uint16)
|
|
(off-t-2 uint16)
|
|
(off-s-3 uint16)
|
|
(off-t-3 uint16)
|
|
)
|
|
)
|
|
|
|
|
|
(define *vortex-work*
|
|
(new 'static 'vortex-work
|
|
:giftag (new 'static 'dma-gif
|
|
:gif0 (new 'static 'gif-tag64
|
|
:nloop #x1
|
|
:eop #x1
|
|
:pre #x1
|
|
:prim (new 'static 'gs-prim :prim (gs-prim-type tri-fan) :iip #x1 :tme #x1 :abe #x1)
|
|
:nreg #x3
|
|
)
|
|
:gif1 (new 'static 'gif-tag-regs :regs0 (gif-reg-id st) :regs1 (gif-reg-id rgbaq) :regs2 (gif-reg-id xyzf2))
|
|
)
|
|
:off-t-1 #x100
|
|
)
|
|
)
|
|
|
|
(define *vortex-vert-array* (new 'static 'vortex-vert-array
|
|
:data (new 'static 'inline-array vortex-vertex 306
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :z 1351680.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -21143.553 :z 1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3549 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -19533.824 :y 8089.6 :z 1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3661 :y 0.5553 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -14950.4 :y 14950.4 :z 1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3974 :y 0.6023 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -8089.6 :y 19533.824 :z 1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4444 :y 0.6338 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y 21143.553 :z 1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.6448 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 8089.6 :y 19533.824 :z 1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.5553 :y 0.6338 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 14950.4 :y 14950.4 :z 1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6023 :y 0.6023 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 19533.824 :y 8089.6 :z 1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6338 :y 0.5553 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 21143.553 :z 1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6448 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 19533.824 :y -8089.6 :z 1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6338 :y 0.4444 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 14950.4 :y -14950.4 :z 1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6023 :y 0.3974 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 8089.6 :y -19533.824 :z 1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.5553 :y 0.3661 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y -21143.553 :z 1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.3549 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -8089.6 :y -19533.824 :z 1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4444 :y 0.3661 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -14950.4 :y -14950.4 :z 1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3974 :y 0.3974 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -19533.824 :y -8089.6 :z 1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3661 :y 0.4444 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -41766.504 :z 1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.2294 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -38588.008 :y 15982.183 :z 1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.25 :y 0.6034 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -29532.16 :y 29532.16 :z 1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3086 :y 0.6912 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -15982.183 :y 38588.008 :z 1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3963 :y 0.7498 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y 41766.504 :z 1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.7703 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 15982.183 :y 38588.008 :z 1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6034 :y 0.7498 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 29532.16 :y 29532.16 :z 1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6912 :y 0.6912 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 38588.008 :y 15982.183 :z 1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.7498 :y 0.6034 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 41766.504 :z 1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.7703 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 38588.008 :y -15982.183 :z 1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.7498 :y 0.3963 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 29532.16 :y -29532.16 :z 1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6912 :y 0.3086 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 15982.183 :y -38588.008 :z 1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6034 :y 0.25 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y -41766.504 :z 1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.2294 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -15982.183 :y -38588.008 :z 1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3963 :y 0.25 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -29532.16 :y -29532.16 :z 1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3086 :y 0.3086 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -38588.008 :y -15982.183 :z 1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.25 :y 0.3963 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -61361.355 :z 1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1248 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -56692.33 :y 23481.959 :z 1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1534 :y 0.6434 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -43388.93 :y 43388.93 :z 1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.2346 :y 0.7651 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -23481.959 :y 56692.33 :z 1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3564 :y 0.8464 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y 61361.355 :z 1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.5 :y 0.875 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 23481.959 :y 56692.33 :z 1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6434 :y 0.8464 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 43388.93 :y 43388.93 :z 1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.7651 :y 0.7651 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 56692.33 :y 23481.959 :z 1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.8464 :y 0.6434 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 61361.355 :z 1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.875 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 56692.33 :y -23481.959 :z 1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.8464 :y 0.3564 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 43388.93 :y -43388.93 :z 1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.7651 :y 0.2346 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 23481.959 :y -56692.33 :z 1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6434 :y 0.1534 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y -61361.355 :z 1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.1248 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -23481.959 :y -56692.33 :z 1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3564 :y 0.1534 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -43388.93 :y -43388.93 :z 1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.2346 :y 0.2346 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -56692.33 :y -23481.959 :z 1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1534 :y 0.3564 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -79445.61 :z 1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0617 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -73400.32 :y 30399.693 :z 1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0951 :y 0.6675 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -56176.64 :y 56176.64 :z 1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1901 :y 0.8097 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -30399.693 :y 73400.32 :z 1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3322 :y 0.9046 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y 79445.61 :z 1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.5 :y 0.938 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 30399.693 :y 73400.32 :z 1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6675 :y 0.9046 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 56176.64 :y 56176.64 :z 1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.8097 :y 0.8097 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 73400.32 :y 30399.693 :z 1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9046 :y 0.6675 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 79445.61 :z 1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.938 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 73400.32 :y -30399.693 :z 1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9046 :y 0.3322 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 56176.64 :y -56176.64 :z 1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.8097 :y 0.1901 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 30399.693 :y -73400.32 :z 1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6675 :y 0.0951 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y -79445.61 :z 1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.0617 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -30399.693 :y -73400.32 :z 1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3322 :y 0.0951 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -56176.64 :y -56176.64 :z 1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1901 :y 0.1901 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -73400.32 :y -30399.693 :z 1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0951 :y 0.3322 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -95575.66 :z 955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0325 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -88301.57 :y 36572.363 :z 955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0681 :y 0.6787 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -67579.91 :y 67584.0 :z 955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1694 :y 0.8303 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -36572.363 :y 88301.57 :z 955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.321 :y 0.9316 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y 95575.66 :z 955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.5 :y 0.9672 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 36572.363 :y 88301.57 :z 955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6787 :y 0.9316 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 67584.0 :y 67579.91 :z 955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.8303 :y 0.8303 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 88301.57 :y 36572.363 :z 955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9316 :y 0.6787 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 95575.66 :z 955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9672 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 88301.57 :y -36572.363 :z 955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9316 :y 0.321 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 67579.91 :y -67579.91 :z 955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.8303 :y 0.1694 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 36572.363 :y -88301.57 :z 955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6787 :y 0.0681 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y -95575.66 :z 955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.0325 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -36572.363 :y -88301.57 :z 955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.321 :y 0.0681 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -67584.0 :y -67579.91 :z 955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1694 :y 0.1694 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -88301.57 :y -36572.363 :z 955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0681 :y 0.321 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -109350.914 :z 794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0172 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -101027.84 :y 41844.33 :z 794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0539 :y 0.6847 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -77324.29 :y 77324.29 :z 794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1585 :y 0.8413 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -41844.33 :y 101027.84 :z 794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3151 :y 0.9458 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y 109350.914 :z 794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.5 :y 0.9826 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 41844.33 :y 101027.84 :z 794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6847 :y 0.9458 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 77324.29 :y 77324.29 :z 794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.8413 :y 0.8413 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 101027.84 :y 41844.33 :z 794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9458 :y 0.6847 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 109350.914 :z 794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9826 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 101027.84 :y -41844.33 :z 794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9458 :y 0.3151 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 77324.29 :y -77324.29 :z 794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.8413 :y 0.1585 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 41844.33 :y -101027.84 :z 794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6847 :y 0.0539 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y -109350.914 :z 794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.0172 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -41844.33 :y -101027.84 :z 794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3151 :y 0.0539 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -77324.29 :y -77324.29 :z 794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1585 :y 0.1585 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -101027.84 :y -41844.33 :z 794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0539 :y 0.3151 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -120434.28 :z 613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0103 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -111267.84 :y 46087.37 :z 613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0475 :y 0.6873 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -85159.94 :y 85159.94 :z 613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1537 :y 0.846 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -46087.37 :y 111267.84 :z 613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3125 :y 0.9522 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y 120434.28 :z 613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.5 :y 0.9894 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 46087.37 :y 111267.84 :z 613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6873 :y 0.9522 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 85159.94 :y 85159.94 :z 613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.846 :y 0.846 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 111267.84 :y 46087.37 :z 613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9522 :y 0.6873 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 120434.28 :z 613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9894 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 111267.84 :y -46087.37 :z 613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9522 :y 0.3125 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 85159.94 :y -85159.94 :z 613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.846 :y 0.1537 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 46087.37 :y -111267.84 :z 613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6873 :y 0.0475 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y -120434.28 :z 613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.0103 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -46087.37 :y -111267.84 :z 613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3125 :y 0.0475 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -85159.94 :y -85159.94 :z 613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1537 :y 0.1537 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -111267.84 :y -46087.37 :z 613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0475 :y 0.3125 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -128548.87 :z 417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0052 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -118763.52 :y 49192.96 :z 417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0429 :y 0.6891 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -90898.02 :y 90898.02 :z 417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1501 :y 0.8496 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -49192.96 :y 118763.52 :z 417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3106 :y 0.9568 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y 128548.87 :z 417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.5 :y 0.9945 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 49192.96 :y 118763.52 :z 417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6891 :y 0.9568 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 90898.02 :y 90898.02 :z 417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.8496 :y 0.8496 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 118763.52 :y 49192.96 :z 417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9568 :y 0.6891 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 128548.87 :z 417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9945 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 118763.52 :y -49192.96 :z 417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9568 :y 0.3106 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 90898.02 :y -90898.02 :z 417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.8496 :y 0.1501 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 49192.96 :y -118763.52 :z 417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6891 :y 0.0429 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y -128548.87 :z 417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.0052 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -49192.96 :y -118763.52 :z 417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3106 :y 0.0429 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -90898.02 :y -90898.02 :z 417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1501 :y 0.1501 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -118763.52 :y -49192.96 :z 417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0429 :y 0.3106 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -133500.11 :z 211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0018 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -123338.34 :y 51089.0 :z 211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0397 :y 0.6905 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -94400.516 :y 94400.516 :z 211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1477 :y 0.852 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -51089.0 :y 123338.34 :z 211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3093 :y 0.96 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y 133500.11 :z 211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.5 :y 0.9979 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 51089.0 :y 123338.34 :z 211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6905 :y 0.96 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 94400.516 :y 94400.516 :z 211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.852 :y 0.852 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 123338.34 :y 51089.0 :z 211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.96 :y 0.6905 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 133500.11 :z 211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9979 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 123338.34 :y -51089.0 :z 211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.96 :y 0.3093 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 94400.516 :y -94400.516 :z 211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.852 :y 0.1477 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 51089.0 :y -123338.34 :z 211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6905 :y 0.0397 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y -133500.11 :z 211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.0018 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -51089.0 :y -123338.34 :z 211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3093 :y 0.0397 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -94400.516 :y -94400.516 :z 211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1477 :y 0.1477 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -123338.34 :y -51089.0 :z 211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0397 :y 0.3093 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -135163.9 :w 1.0)
|
|
:stq (new 'static 'vector :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -124878.85 :y 51724.29 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0379 :y 0.6912 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -95575.66 :y 95575.66 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1463 :y 0.8534 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -51724.29 :y 124878.85 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3085 :y 0.9618 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y 135163.9 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.5 :y 0.9998 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 51724.29 :y 124878.85 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6912 :y 0.9618 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 95575.66 :y 95575.66 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.8534 :y 0.8534 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 124878.85 :y 51724.29 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9618 :y 0.6912 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 135168.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9998 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 124878.85 :y -51724.29 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9618 :y 0.3085 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 95575.66 :y -95575.66 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.8534 :y 0.1463 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 51724.29 :y -124878.85 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6912 :y 0.0379 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y -135163.9 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -51724.29 :y -124878.85 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3085 :y 0.0379 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -95575.66 :y -95575.66 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1463 :y 0.1463 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -124878.85 :y -51724.29 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0379 :y 0.3085 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -133500.11 :z -211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0018 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -123338.34 :y 51089.0 :z -211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0397 :y 0.6905 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -94400.516 :y 94400.516 :z -211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1477 :y 0.852 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -51089.0 :y 123338.34 :z -211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3093 :y 0.96 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y 133500.11 :z -211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.5 :y 0.9979 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 51089.0 :y 123338.34 :z -211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6905 :y 0.96 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 94400.516 :y 94400.516 :z -211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.852 :y 0.852 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 123338.34 :y 51089.0 :z -211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.96 :y 0.6905 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 133500.11 :z -211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9979 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 123338.34 :y -51089.0 :z -211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.96 :y 0.3093 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 94400.516 :y -94400.516 :z -211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.852 :y 0.1477 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 51089.0 :y -123338.34 :z -211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6905 :y 0.0397 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y -133500.11 :z -211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.0018 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -51089.0 :y -123338.34 :z -211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3093 :y 0.0397 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -94400.516 :y -94400.516 :z -211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1477 :y 0.1477 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -123338.34 :y -51089.0 :z -211447.81 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0397 :y 0.3093 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -128548.87 :z -417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0052 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -118763.52 :y 49192.96 :z -417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0429 :y 0.6891 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -90898.02 :y 90898.02 :z -417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1501 :y 0.8496 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -49192.96 :y 118763.52 :z -417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3106 :y 0.9568 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y 128548.87 :z -417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.5 :y 0.9945 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 49192.96 :y 118763.52 :z -417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6891 :y 0.9568 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 90898.02 :y 90898.02 :z -417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.8496 :y 0.8496 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 118763.52 :y 49192.96 :z -417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9568 :y 0.6891 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 128548.87 :z -417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9945 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 118763.52 :y -49192.96 :z -417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9568 :y 0.3106 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 90898.02 :y -90898.02 :z -417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.8496 :y 0.1501 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 49192.96 :y -118763.52 :z -417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6891 :y 0.0429 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y -128548.87 :z -417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.0052 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -49192.96 :y -118763.52 :z -417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3106 :y 0.0429 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -90898.02 :y -90898.02 :z -417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1501 :y 0.1501 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -118763.52 :y -49192.96 :z -417688.78 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0429 :y 0.3106 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -120434.28 :z -613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0103 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -111267.84 :y 46087.37 :z -613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0475 :y 0.6873 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -85159.94 :y 85159.94 :z -613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1537 :y 0.846 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -46087.37 :y 111267.84 :z -613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3125 :y 0.9522 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y 120434.28 :z -613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.5 :y 0.9894 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 46087.37 :y 111267.84 :z -613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6873 :y 0.9522 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 85159.94 :y 85159.94 :z -613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.846 :y 0.846 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 111267.84 :y 46087.37 :z -613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9522 :y 0.6873 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 120434.28 :z -613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9894 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 111267.84 :y -46087.37 :z -613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9522 :y 0.3125 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 85159.94 :y -85159.94 :z -613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.846 :y 0.1537 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 46087.37 :y -111267.84 :z -613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6873 :y 0.0475 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y -120434.28 :z -613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.0103 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -46087.37 :y -111267.84 :z -613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3125 :y 0.0475 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -85159.94 :y -85159.94 :z -613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1537 :y 0.1537 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -111267.84 :y -46087.37 :z -613645.94 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0475 :y 0.3125 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -109350.914 :z -794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0172 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -101027.84 :y 41844.33 :z -794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0539 :y 0.6847 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -77324.29 :y 77324.29 :z -794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1585 :y 0.8413 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -41844.33 :y 101027.84 :z -794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3151 :y 0.9458 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y 109350.914 :z -794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.5 :y 0.9826 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 41844.33 :y 101027.84 :z -794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6847 :y 0.9458 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 77324.29 :y 77324.29 :z -794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.8413 :y 0.8413 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 101027.84 :y 41844.33 :z -794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9458 :y 0.6847 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 109350.914 :z -794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9826 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 101027.84 :y -41844.33 :z -794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9458 :y 0.3151 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 77324.29 :y -77324.29 :z -794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.8413 :y 0.1585 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 41844.33 :y -101027.84 :z -794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6847 :y 0.0539 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y -109350.914 :z -794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.0172 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -41844.33 :y -101027.84 :z -794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3151 :y 0.0539 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -77324.29 :y -77324.29 :z -794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1585 :y 0.1585 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -101027.84 :y -41844.33 :z -794496.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0539 :y 0.3151 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -95575.66 :z -955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0325 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -88301.57 :y 36572.363 :z -955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0681 :y 0.6787 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -67579.91 :y 67584.0 :z -955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1694 :y 0.8303 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -36572.363 :y 88301.57 :z -955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.321 :y 0.9316 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y 95575.66 :z -955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.5 :y 0.9672 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 36572.363 :y 88301.57 :z -955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6787 :y 0.9316 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 67584.0 :y 67579.91 :z -955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.8303 :y 0.8303 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 88301.57 :y 36572.363 :z -955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9316 :y 0.6787 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 95575.66 :z -955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9672 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 88301.57 :y -36572.363 :z -955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9316 :y 0.321 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 67579.91 :y -67584.0 :z -955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.8303 :y 0.1694 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 36572.363 :y -88301.57 :z -955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6787 :y 0.0681 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y -95575.66 :z -955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.0325 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -36572.363 :y -88301.57 :z -955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.321 :y 0.0681 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -67584.0 :y -67579.91 :z -955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1694 :y 0.1694 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -88301.57 :y -36572.363 :z -955781.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0681 :y 0.321 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -79445.61 :z -1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0617 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -73400.32 :y 30399.693 :z -1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0951 :y 0.6675 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -56176.64 :y 56176.64 :z -1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1901 :y 0.8097 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -30399.693 :y 73400.32 :z -1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3322 :y 0.9046 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y 79445.61 :z -1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.5 :y 0.938 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 30399.693 :y 73400.32 :z -1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6675 :y 0.9046 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 56176.64 :y 56176.64 :z -1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.8097 :y 0.8097 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 73400.32 :y 30399.693 :z -1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9046 :y 0.6675 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 79445.61 :z -1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.938 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 73400.32 :y -30399.693 :z -1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.9046 :y 0.3322 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 56176.64 :y -56176.64 :z -1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.8097 :y 0.1901 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 30399.693 :y -73400.32 :z -1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6675 :y 0.0951 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y -79445.61 :z -1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.0617 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -30399.693 :y -73400.32 :z -1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3322 :y 0.0951 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -56176.64 :y -56176.64 :z -1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1901 :y 0.1901 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -73400.32 :y -30399.693 :z -1093529.6 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.0951 :y 0.3322 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -61361.355 :z -1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1248 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -56692.33 :y 23481.959 :z -1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1534 :y 0.6434 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -43388.93 :y 43388.93 :z -1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.2346 :y 0.7651 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -23481.959 :y 56692.33 :z -1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3564 :y 0.8464 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y 61361.355 :z -1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.5 :y 0.875 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 23481.959 :y 56692.33 :z -1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6434 :y 0.8464 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 43388.93 :y 43388.93 :z -1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.7651 :y 0.7651 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 56692.33 :y 23481.959 :z -1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.8464 :y 0.6434 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 61361.355 :z -1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.875 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 56692.33 :y -23481.959 :z -1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.8464 :y 0.3564 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 43388.93 :y -43388.93 :z -1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.7651 :y 0.2346 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 23481.959 :y -56692.33 :z -1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6434 :y 0.1534 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y -61361.355 :z -1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.1248 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -23481.959 :y -56692.33 :z -1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3564 :y 0.1534 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -43388.93 :y -43388.93 :z -1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.2346 :y 0.2346 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -56692.33 :y -23481.959 :z -1204355.1 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.1534 :y 0.3564 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -41766.504 :z -1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.2294 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -38588.008 :y 15982.183 :z -1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.25 :y 0.6034 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -29532.16 :y 29532.16 :z -1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3086 :y 0.6912 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -15982.183 :y 38588.008 :z -1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3963 :y 0.7498 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y 41766.504 :z -1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.7703 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 15982.183 :y 38588.008 :z -1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6034 :y 0.7498 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 29532.16 :y 29532.16 :z -1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6912 :y 0.6912 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 38588.008 :y 15982.183 :z -1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.7498 :y 0.6034 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 41766.504 :z -1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.7703 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 38588.008 :y -15982.183 :z -1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.7498 :y 0.3963 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 29532.16 :y -29532.16 :z -1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6912 :y 0.3086 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 15982.183 :y -38588.008 :z -1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6034 :y 0.25 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y -41766.504 :z -1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.2294 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -15982.183 :y -38588.008 :z -1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3963 :y 0.25 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -29532.16 :y -29532.16 :z -1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3086 :y 0.3086 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -38588.008 :y -15982.183 :z -1285521.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.25 :y 0.3963 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -21143.553 :z -1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3549 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -19533.824 :y 8089.6 :z -1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3661 :y 0.5553 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -14950.4 :y 14950.4 :z -1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3974 :y 0.6023 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -8089.6 :y 19533.824 :z -1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4444 :y 0.6338 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y 21143.553 :z -1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.6448 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 8089.6 :y 19533.824 :z -1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.5553 :y 0.6338 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 14950.4 :y 14950.4 :z -1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6023 :y 0.6023 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 19533.824 :y 8089.6 :z -1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6338 :y 0.5553 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 21143.553 :z -1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6448 :y 0.5 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 19533.824 :y -8089.6 :z -1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6338 :y 0.4444 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 14950.4 :y -14950.4 :z -1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.6023 :y 0.3974 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x 8089.6 :y -19533.824 :z -1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.5553 :y 0.3661 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :y -21143.553 :z -1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.3549 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -8089.6 :y -19533.824 :z -1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4444 :y 0.3661 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -14950.4 :y -14950.4 :z -1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3974 :y 0.3974 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :x -19533.824 :y -8089.6 :z -1335038.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.3661 :y 0.4444 :z 1.0)
|
|
)
|
|
(new 'static 'vortex-vertex
|
|
:pos (new 'static 'vector :z -1351680.0 :w 1.0)
|
|
:stq (new 'static 'vector :x 0.4999 :y 0.5 :z 1.0)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
|
|
(define *vortex-poly*
|
|
"TODO - this is a guess based on similarly named fields, it's a MASSIVE empty array"
|
|
(new 'static 'inline-array vortex-vertex 1216
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
(new 'static 'vortex-vertex)
|
|
)
|
|
)
|
|
|
|
(define *vortex-tvals* "TODO - also a guess, just a bunch of floats" (new 'static 'array float 20
|
|
0.129616
|
|
0.232515
|
|
0.312052
|
|
0.37201
|
|
0.416099
|
|
0.447693
|
|
0.469699
|
|
0.484531
|
|
0.494127
|
|
0.5
|
|
0.505873
|
|
0.515468
|
|
0.5303
|
|
0.552306
|
|
0.583899
|
|
0.627988
|
|
0.687946
|
|
0.767484
|
|
0.870383
|
|
0.0
|
|
)
|
|
)
|
|
|
|
;; WARN: Return type mismatch symbol vs none.
|
|
;; ERROR: Unsupported inline assembly instruction kind - [lq ra, 0(ra)]
|
|
(defun init-vortex-polys ()
|
|
;; og:preserve-this
|
|
(local-vars (ra-1 uint128))
|
|
(let ((v1-0 0)
|
|
(a0-0 *vortex-vert-array*)
|
|
(a1-0 *vortex-poly*)
|
|
)
|
|
(set-vector! (-> a0-0 data 0 stq) 0.5 0.0 1.0 0.0)
|
|
(dotimes (a2-1 19)
|
|
(let ((f0-4 (-> *vortex-tvals* a2-1)))
|
|
(dotimes (a3-4 16)
|
|
(let ((t0-2 (the-as object (+ (the-as uint (-> a0-0 data 0 stq)) (* (+ a3-4 1 (* a2-1 16)) 32)))))
|
|
(set! (-> (the-as (pointer float) t0-2)) (* 0.0625 (the float a3-4)))
|
|
(set! (-> (the-as (pointer float) t0-2) 1) f0-4)
|
|
(set! (-> (the-as (pointer float) t0-2) 2) 1.0)
|
|
(set! (-> (the-as (pointer float) t0-2) 3) 0.0)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
(let ((a2-4 (new 'static 'vector :x 32768.0 :y 819200.0 :z 32768.0)))
|
|
(dotimes (a3-7 306)
|
|
(vector+! (the-as vector (-> a0-0 data a3-7)) (the-as vector (-> a0-0 data a3-7)) a2-4)
|
|
)
|
|
)
|
|
(dotimes (a2-7 8)
|
|
(let ((t3-0 (-> a0-0 data))
|
|
(t2-3 (-> a0-0 data (+ (* a2-7 2) 1)))
|
|
(t1-8 (-> a0-0 data (+ (* a2-7 2) 2)))
|
|
(a3-20 (-> a0-0 data (+ (* a2-7 2) 3)))
|
|
(t6-0 (-> a1-0 v1-0))
|
|
(t5-0 (-> a1-0 (+ v1-0 1)))
|
|
(t4-0 (-> a1-0 (+ v1-0 2)))
|
|
(t0-13 (-> a1-0 (+ v1-0 3)))
|
|
)
|
|
(if (= a2-7 7)
|
|
(set! a3-20 (-> a0-0 data 1))
|
|
)
|
|
(set! (-> t6-0 pos quad) (-> t3-0 0 pos quad))
|
|
(set! (-> t6-0 stq quad) (-> t3-0 0 stq quad))
|
|
(set! (-> t5-0 pos quad) (-> t2-3 pos quad))
|
|
(set! (-> t5-0 stq quad) (-> t2-3 stq quad))
|
|
(set! (-> t4-0 pos quad) (-> t1-8 pos quad))
|
|
(set! (-> t4-0 stq quad) (-> t1-8 stq quad))
|
|
(set! (-> t0-13 pos quad) (-> a3-20 pos quad))
|
|
(set! (-> t0-13 stq quad) (-> a3-20 stq quad))
|
|
(if (= a2-7 7)
|
|
(set! (-> t0-13 stq x) 1.0)
|
|
)
|
|
)
|
|
(+! v1-0 4)
|
|
)
|
|
(dotimes (a2-10 18)
|
|
(let ((a3-29 (+ (* a2-10 16) 1)))
|
|
(dotimes (t0-14 16)
|
|
(let ((t6-4 (-> a0-0 data (+ a3-29 t0-14)))
|
|
(t3-7 (-> a0-0 data (+ t0-14 16 a3-29)))
|
|
(t4-1 (-> a0-0 data (+ t0-14 17 a3-29)))
|
|
(t5-1 (-> a0-0 data (+ t0-14 1 a3-29)))
|
|
(t8-2 (-> a1-0 v1-0))
|
|
(t7-4 (-> a1-0 (+ v1-0 1)))
|
|
(t1-33 (-> a1-0 (+ v1-0 2)))
|
|
(t2-12 (-> a1-0 (+ v1-0 3)))
|
|
)
|
|
(when (= t0-14 15)
|
|
(set! t4-1 (-> a0-0 data (+ a3-29 16)))
|
|
(set! t5-1 (-> a0-0 data a3-29))
|
|
)
|
|
(let ((t9-3 (-> t8-2 pos)))
|
|
(let ((ra-0 (-> t6-4 pos)))
|
|
;; og:preserve-this
|
|
;(.lq ra-1 0 ra-0)
|
|
(set! ra-1 (-> ra-0 quad))
|
|
)
|
|
(set! (-> t9-3 quad) (the-as uint128 ra-1))
|
|
)
|
|
(set! (-> t8-2 stq quad) (-> t6-4 stq quad))
|
|
(set! (-> t7-4 pos quad) (-> t3-7 pos quad))
|
|
(set! (-> t7-4 stq quad) (-> t3-7 stq quad))
|
|
(set! (-> t1-33 pos quad) (-> t4-1 pos quad))
|
|
(set! (-> t1-33 stq quad) (-> t4-1 stq quad))
|
|
(set! (-> t2-12 pos quad) (-> t5-1 pos quad))
|
|
(set! (-> t2-12 stq quad) (-> t5-1 stq quad))
|
|
(when (= t0-14 15)
|
|
(set! (-> t1-33 stq x) 1.0)
|
|
(set! (-> t2-12 stq x) 1.0)
|
|
)
|
|
)
|
|
(+! v1-0 4)
|
|
)
|
|
)
|
|
)
|
|
(dotimes (a2-13 8)
|
|
(let ((t3-17 (-> a0-0 data 305))
|
|
(t2-13 (-> a0-0 data (+ (* a2-13 2) 289)))
|
|
(t1-37 (-> a0-0 data (+ (* a2-13 2) 290)))
|
|
(a3-44 (-> a0-0 data (+ (* a2-13 2) 291)))
|
|
(t6-11 (-> a1-0 v1-0))
|
|
(t5-4 (-> a1-0 (+ v1-0 1)))
|
|
(t4-11 (-> a1-0 (+ v1-0 2)))
|
|
(t0-22 (-> a1-0 (+ v1-0 3)))
|
|
)
|
|
(if (= a2-13 7)
|
|
(set! a3-44 (-> a0-0 data 289))
|
|
)
|
|
(set! (-> t6-11 pos quad) (-> t3-17 pos quad))
|
|
(set! (-> t6-11 stq quad) (-> t3-17 stq quad))
|
|
(set! (-> t5-4 pos quad) (-> t2-13 pos quad))
|
|
(set! (-> t5-4 stq quad) (-> t2-13 stq quad))
|
|
(set! (-> t4-11 pos quad) (-> t1-37 pos quad))
|
|
(set! (-> t4-11 stq quad) (-> t1-37 stq quad))
|
|
(set! (-> t0-22 pos quad) (-> a3-44 pos quad))
|
|
(set! (-> t0-22 stq quad) (-> a3-44 stq quad))
|
|
(if (= a2-13 7)
|
|
(set! (-> t0-22 stq x) 1.0)
|
|
)
|
|
)
|
|
(+! v1-0 4)
|
|
)
|
|
)
|
|
(none)
|
|
)
|
|
|
|
(init-vortex-polys)
|