': This program uses
': InForm - GUI library for QB64 - Beta version 8
': Fellippe Heitor, 2016-2018 - fellippe@qb64.org - @fellippeheitor
': https://github.com/FellippeHeitor/InForm
'-----------------------------------------------------------
': Controls' IDs: ------------------------------------------------------------------
origin.x = 400
origin.y = 300
handle = origin
': External modules: ---------------------------------------------------------------
'$INCLUDE:'InForm\InForm.ui'
'$INCLUDE:'InForm\xp.uitheme'
'$INCLUDE:'Spring.frm'
': Event procedures: ---------------------------------------------------------------
'This event occurs at approximately 30 frames per second.
'You can change the update frequency by calling SetFrameRate DesiredRate%
BeginDraw PictureBox1
d = distB(origin, handle)
m = distB(handle, mouse)
IF m
< 30 THEN mouseDown
= True
handle = mouse
mouseDown = False
diff.y = handle.y - origin.y
diff.x = handle.x - origin.x
'a = _ATAN2(diff.x, diff.y)
handle.x
= handle.x
- diff.x
/ map
(d
, 0, _WIDTH, 1, 32 - Control
(TrackBar1
).Value
) handle.y
= handle.y
- diff.y
/ map
(d
, 0, _HEIGHT, 1, 32 - Control
(TrackBar1
).Value
)
thickLine origin.x
, origin.y
, handle.x
, handle.y
, map
(d
, 0, _WIDTH, 10, 1) CircleFill origin.x
, origin.y
, 5, _RGB32(255, 0, 0) CircleFill handle.x
, handle.y
, 30, _RGB32(255, 0, 0) EndDraw PictureBox1
'If you set __UI_UnloadSignal = False here you can
'cancel the user's request to close.
'This event occurs right before a control loses focus.
'To prevent a control from losing focus, set __UI_KeepFocus = True below.
'When this event is fired, __UI_KeyHit will contain the code of the key hit.
'You can change it and even cancel it by making it = 0
FUNCTION map!
(value!
, minRange!
, maxRange!
, newMinRange!
, newMaxRange!
) map! = ((value! - minRange!) / (maxRange! - minRange!)) * (newMaxRange! - newMinRange!) + newMinRange!
x0 = R
y0 = 0
e = 0
y0 = y0 + 1
LINE (x
- x0
, y
+ y0
)-(x
+ x0
, y
+ y0
), C
, BF
LINE (x
- x0
, y
- y0
)-(x
+ x0
, y
- y0
), C
, BF
e = e + 2 * y0
LINE (x
- y0
, y
- x0
)-(x
+ y0
, y
- x0
), C
, BF
LINE (x
- y0
, y
+ x0
)-(x
+ y0
, y
+ x0
), C
, BF
x0 = x0 - 1
e = e - 2 * x0
LINE (x
- R
, y
)-(x
+ R
, y
), C
, BF
dist!
= _HYPOT((x2!
- x1!
), (y2!
- y1!
))
distB! = dist!(v1.x, v1.y, v2.x, v2.y)
x0
= 0.5 * lineWeight%
* COS(a
) y0
= 0.5 * lineWeight%
* SIN(a
)