_Title "Fast Fill! by Petr, arrow points to fill point!" ' b+ mods for safer running/specailly exiting 2021-11-05 ' Very Nice Petr!!! ref: https://www.qb64.org/forum/index.php?topic=4357.msg137803#msg137803
' bplus changed screen size, centered it and is drawing arrow to paint point (3 additional subs for that!)
Screen _NewImage(1024, 700, 32) ' a little less height please, dang it sharnk again because bottom below screen bottom _ScreenMove 150, 40 'Sorry guys _Middle is not!! why is this not centered I have room above title bar but screen extends below sight????
arrow
514, 384, _Pi(1.25), 200 '_MouseMove 512, 384 ' <<<<<<<< trouble maker!!!
sp 512, 384, White
'create mask (2 color image)
position& = (y * W + x) * 4
_MemGet m
, m.OFFSET
+ position&
, Bck
D& = 0
D& = D& + 4
Paint (x
, y
), c~&
, Clr2~&
Sub arrow
(x0
, y0
, rAngle
, lngth
) pi = 3.14159265
x2
= x0
- lngth
* Cos(rAngle
) y2
= y0
- lngth
* Sin(rAngle
) drawLink x0, y0, .001 * lngth, x2, y2, .01 * lngth, &HFF00BB00
Line (x0
, y0
)-(x2
, y2
), &HFF00BB00 x2
= x0
- .1 * lngth
* Cos(rAngle
- .2 * pi
) y2
= y0
- .1 * lngth
* Sin(rAngle
- .2 * pi
) x1
= x0
- .1 * lngth
* Cos(rAngle
+ .2 * pi
) y1
= y0
- .1 * lngth
* Sin(rAngle
+ .2 * pi
) ftri x0, y0, x1, y1, x2, y2, &HFFFF8800
x1
= x0
- i
* Cos(rAngle
) y1
= y0
- i
* Sin(rAngle
) x2
= x1
- .1 * lngth
* Cos(rAngle
- .25 * pi
) y2
= y1
- .1 * lngth
* Sin(rAngle
- .25 * pi
) Line (x1
, y1
)-(x2
, y2
), &HFF0000FF x2
= x1
- .1 * lngth
* Cos(rAngle
+ .25 * pi
) y2
= y1
- .1 * lngth
* Sin(rAngle
+ .25 * pi
) Line (x1
, y1
)-(x2
, y2
), &HFF0000FF
Dim a
, a1
, a2
, x3
, x4
, x5
, x6
, y3
, y4
, y5
, y6
x3
= x1
+ r1
* Cos(a1
): y3
= y1
+ r1
* Sin(a1
) x4
= x1
+ r1
* Cos(a2
): y4
= y1
+ r1
* Sin(a2
) x5
= x2
+ r2
* Cos(a1
): y5
= y2
+ r2
* Sin(a1
) x6
= x2
+ r2
* Cos(a2
): y6
= y2
+ r2
* Sin(a2
) fquad x3, y3, x4, y4, x5, y5, x6, y6, c
'need 4 non linear points (not all on 1 line) list them clockwise so x2, y2 is opposite of x4, y4
ftri x1, y1, x2, y2, x4, y4, c
ftri x3, y3, x4, y4, x1, y1, c