QB64.org Forum

Active Forums => Programs => Topic started by: Qwerkey on July 22, 2018, 12:36:27 pm

Title: Calling All Members: May I use Your Avatar?
Post by: Qwerkey on July 22, 2018, 12:36:27 pm
I am working on a Jigsaw Puzzle program, and one of the pictures used will be constructed from members' avatar images.  See the attachment.  Please let me know if you would like to be included or, indeed, not included.

The members whose avatar images I have already used are:

Steve McNeill
Ashish
bplus
donaldfoster (your avatar is a little blurry)
eoredson
euklides
Fellippe
Fifi
johnno56
keybone
odin
Pete
Petr (your avatar is a little blurry)
rhosigma
roadbloc
STxAxTIC
tempodibasic
Unseen
v
Walter (who has already kindly agreed)

Clippy & Luke, you don't yet have a .org avatar, I think.

The picture will use 18 avatar images selected at random at run time.  Closing date will be 29th July.

Thanks, Richard
Title: Re: Calling All Members: May I use Your Avatar?
Post by: RhoSigma on July 22, 2018, 02:53:19 pm
Hi Qwerkey,
just feel free to use my avatar or any other image you find in my software collections (see signature). I'm curious to see the finished puzzle game then.
Title: Re: Calling All Members: May I use Your Avatar?
Post by: bplus on July 22, 2018, 03:19:54 pm
Hi Qwerkey,

Oh boy! my avatar was just grabbed off the Internet because it looked cool for a temporary forum site.

Who knew it would last more than a couple of days?

I have changed my avatar to a less legally ambiguous image, ie one I created myself, and was using @ TJP.

You can use that freely I am sure. :)



You all may also notice in my new signature, I have joined the next geberation! ;-D
Title: Re: Calling All Members: May I use Your Avatar?
Post by: TempodiBasic on July 22, 2018, 05:54:12 pm
Hi Qwerkey

I have adjourned my avatar because I haven't found original URL from which I have got it.
So now I have got another copy from this site https://www.coloradisegni.it/looney-tunes/daffy-duck-003.html (https://www.coloradisegni.it/looney-tunes/daffy-duck-003.html). Painting and cutting it I mod my version that now is my new avatar.
IMHO the original image is downloadable or printable as goal of the site.... so this modification made by Paint3D can be used by you.

Good Coding
Title: Re: Calling All Members: May I use Your Avatar?
Post by: johnno56 on July 23, 2018, 02:58:56 am
I have no objection... ;)

J
Title: Re: Calling All Members: May I use Your Avatar?
Post by: bplus on July 23, 2018, 10:11:11 am
Hi Qwerkey,

I have changed my avatar again, sorry but I thought one created in QB64 X64 code more appropriate.

I am also sorry the thumbprint can't show the exquisite detail as can be seen here:
Code: QB64: [Select]
  1. _TITLE "Sierpinski Circled by bplus"
  2. '2018-07-23 update some code tweaks learned when translating this to other BASIC flavors
  3. 'for new ORG avatar?
  4. CONST xmax = 740
  5. CONST ymax = 740
  6. SCREEN _NEWIMAGE(xmax, ymax, 32)
  7. DIM SHARED cx, cy, cr, ra, inc
  8. cx = xmax / 2: cy = ymax / 2: cr = ymax / 6: inc = _PI(1 / 360)
  9. COLOR _RGBA(100, 255, 100, 40), _RGB32(0, 0, 0)
  10. FOR n = 3 TO 8
  11.     a = 0
  12.     ra = _PI(2) / n
  13.     WHILE a < ra
  14.         CLS
  15.         levels = 12 - n
  16.         RecurringCircles cx, cy, cr, n, a, levels
  17.         a = a + inc
  18.         _DISPLAY
  19.         _LIMIT 200
  20.     WEND
  21.     CLS
  22.     RecurringCircles cx, cy, cr, n, 0, levels
  23.     _DISPLAY
  24.     _DELAY 5
  25. SUB RecurringCircles (x, y, r, n, rao, level)
  26.     fcirc x, y, r
  27.     IF level > 0 THEN
  28.         FOR i = 0 TO n - 1
  29.             x1 = x + 1.5 * r * COS(i * ra + rao + _PI(-.5))
  30.             y1 = y + 1.5 * r * SIN(i * ra + rao + _PI(-.5))
  31.             RecurringCircles x1, y1, r * .5, n, 2 * rao, level - 1
  32.         NEXT
  33.     END IF
  34.  
  35. 'Steve McNeil's  copied from his forum   note: Radius is too common a name
  36. SUB fcirc (CX AS LONG, CY AS LONG, R AS LONG)
  37.     DIM subRadius AS LONG, RadiusError AS LONG
  38.     DIM X AS LONG, Y AS LONG
  39.  
  40.     subRadius = ABS(R)
  41.     RadiusError = -subRadius
  42.     X = subRadius
  43.     Y = 0
  44.  
  45.     IF subRadius = 0 THEN PSET (CX, CY): EXIT SUB
  46.  
  47.     ' Draw the middle span here so we don't draw it twice in the main loop,
  48.     ' which would be a problem with blending turned on.
  49.     LINE (CX - X, CY)-(CX + X, CY), , BF
  50.  
  51.     WHILE X > Y
  52.         RadiusError = RadiusError + Y * 2 + 1
  53.         IF RadiusError >= 0 THEN
  54.             IF X <> Y + 1 THEN
  55.                 LINE (CX - Y, CY - X)-(CX + Y, CY - X), , BF
  56.                 LINE (CX - Y, CY + X)-(CX + Y, CY + X), , BF
  57.             END IF
  58.             X = X - 1
  59.             RadiusError = RadiusError - X * 2
  60.         END IF
  61.         Y = Y + 1
  62.         LINE (CX - X, CY - Y)-(CX + X, CY - Y), , BF
  63.         LINE (CX - X, CY + Y)-(CX + X, CY + Y), , BF
  64.     WEND
  65.  
Title: Re: Calling All Members: May I use Your Avatar?
Post by: Ashish on July 23, 2018, 10:20:44 am
Feel Free to use my avatar!
@bplus
Great Effect!
Title: Re: Calling All Members: May I use Your Avatar?
Post by: Qwerkey on July 23, 2018, 10:34:22 am
bplus, thanks for attached file.  As you have worked out, I generally get folks' avatar images from a PrintScreen with low resolution.  Steve McNeill has also provided me with his original, which I use in preference.

Thanks, Richard
Title: Re: Calling All Members: May I use Your Avatar?
Post by: FellippeHeitor on July 23, 2018, 01:33:16 pm
I had probably already given you the original file for my avatar, but here it is once again. Not that much bigger anyway.
Title: Re: Calling All Members: May I use Your Avatar?
Post by: Qwerkey on July 24, 2018, 04:33:12 am
Thanks Fellippe.  If I had thought this through properly, I would have asked for members' orignal images in the first place.  Richard
Title: Re: Calling All Members: May I use Your Avatar?
Post by: Todd_Bevins on July 25, 2018, 02:13:51 pm
Feel free to use mine as well.

Thanks
Title: Re: Calling All Members: May I use Your Avatar?
Post by: johnno56 on July 25, 2018, 04:49:25 pm
Sorry... Forgot to attach.... lol

J
Title: Re: Calling All Members: May I use Your Avatar?
Post by: euklides on July 27, 2018, 04:50:42 am
Yes, of course, you can use my french frog...
Title: Re: Calling All Members: May I use Your Avatar?
Post by: eoredson on July 27, 2018, 11:01:16 pm
Feel free to use my Avatar : I got it from the internet anyway..

Erik.
Title: Re: Calling All Members: May I use Your Avatar?
Post by: eoredson on July 28, 2018, 01:09:57 am
Another avatar I use:
Title: Re: Calling All Members: May I use Your Avatar?
Post by: keybone on August 02, 2018, 05:59:59 pm
My avatar is from a movie, I can't claim it... So pretty much you can do whatever u want with it.