Corrected. Radians, not degrees.Code: QB64: [Select]
Corrected, mine is about 50% slower. Adapted mine to circle clip and it clips to circle equal to the lesser of height or width of an image. On mars.png, it's roughly 46.875ms. Good for that. Circle fill for same size is 19-24ms. You win, but maybe my circle clip will prevail somewhere.
Slower than Steve's but this fills a regular polygon that approaches a circle as increase the number of sides. It fills the circle with an image and the image is based according to location of mouse (or where ever you want a circular part of image).
This is a circle fill method based on _MAPTRIANGLE, I think it is fast enough to impress!Code: QB64: [Select]
Attached is code with Stars.png for testing with image file.
Petr, Using this line is causing a line of distortion on y axis right down the 270 to 90 degree line from center??? for my system when I move the mouse around. Using the image as I had directly was better (for my system anyway).
Does anyone else see it? It's seems about 2-4 (maybe more) pixels wide.
about the LINE BF,Code: QB64: [Select]instead of
Code: QB64: [Select]should save you half of the LINE calls
Ah, didn't think about that.about the LINE BF,Code: QB64: [Select]instead of
Code: QB64: [Select]should save you half of the LINE calls
Yes, but if you are using alpha coloring, the overlapping boxes might NOT give you an even shade.
Steve, can you please look to this source, why it is so slow? https://www.qb64.org/forum/index.php?topic=287.msg1756#msg1756
Fellippe, when you started with comparing time, which is very beneficial to all, I give this code here. I made the analogy of the LINE command via MEMPUT. Even though I expected great speed, but the result is to cry. It's a terrible lemur lazy. Could you tell me what I was doing here bad again? Thank you.Code: QB64: [Select]
SCREEN J& T = TIMER NEXT test x0 = R y0 = 0 e = 0 y0 = y0 + 1 MEM_LINE x - x0, y + y0, x + x0, y + y0, C MEM_LINE x - x0, y - y0, x + x0, y - y0, C e = e + 2 * y0 MEM_LINE x - y0, y - x0, x + y0, y - x0, C MEM_LINE x - y0, y + x0, x + y0, y + x0, C x0 = x0 - 1 e = e - 2 * x0 MEM_LINE x - R, y, x + R, y, C DEFLNG A-Z dX = x2 - x1 dY = y2 - y1 x = x1: y = y1 x = x + 1 y = y + (dY / dX) x = x1: y = y1 x = x + (dX / dY) y = y + 1 NEXT d NEXT d
I've been thinking and I think I know why BF is faster.
without BF: multiple line segments that need to be calculated using floating point math. (as line can be of any angle)
with BF: Y horizontal lines of length_X that only require integral math.(for initializing the drawing loop)
You're also losing a lot of 'cycles' calling the sub from within the circlefill inner loop. The sub has a bunch of comparisons and such that could be worked into the circlefill algorithm. Either way, I highly doubt memput is ever going to be faster than line bf. ;)
Hi zigzag,
Yes! First thing I ever tried. Apparently the SQR function takes allot of time!
Also, it has been recently discussed, counter to our intuition that a line is faster with BF than without.
I think Steve's "Gold Standard" method comes from here:
https://en.wikipedia.org/wiki/Midpoint_circle_algorithm