pattern update

This commit is contained in:
spatialfree 2022-10-04 10:07:34 -04:00
parent df2b8da7ab
commit a2571e783e
2 changed files with 3 additions and 2 deletions

View file

@ -7,10 +7,10 @@ data
cursor cursor
frame frame
mag = (vTo - vFrom).mag mag = (vTo - vFrom).mag
stretch = max(mag - deadzone, 0) stretch = max(mag - deadzone, 0)
dir = dir(vTo, vFrom) dir = v3.dir(vTo, vFrom)
cursor = vTo + dir * stretch * strength cursor = vTo + dir * stretch * strength
design design

View file

@ -88,6 +88,7 @@ class WaveCursor : dof {
// show that you are about to boolean in and out // show that you are about to boolean in and out
// trackballer demo
oldLocalPad = localPad; oldLocalPad = localPad;