Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - GfxFreak

Pages: [1]
1
Hi my friends,
I have a question that I get is not even solved  ??? ??? ???

I will convert a image stripe for example 300*30 into a circular arrangement.


Like this...



Sorry for my bad english :)

2
Freebasic / Re: Floormapper problem :(
« on: August 20, 2013 »
@hellfire

Yes, I managed.
But i have problems with the different quad scale+moving  looks horrible.

3
Freebasic / Re: Floormapper problem :(
« on: August 19, 2013 »
Hi I would first like the technology behind the trailblazer.
The technic for the 3D Plane sounds like also interesting :)

4
Freebasic / Floormapper problem :(
« on: August 18, 2013 »
Hi there I have a question.

I wanted an old program effect (FloorMapper).
I just do not understand the algo.

Could someone explain to me how it works?

5
Freebasic / Zoom in Chessboard Algo?
« on: October 03, 2012 »
Hi , i have a problem in my Chessboard algo.

This is my code:

Code: [Select]
For x As Integer = 0 To screen_width -1

For y As Integer = 0 To screen_height-1

_color =255 *  ((((x+mx) Shr 4) And 1 )  xor (((y+my) Shr 4) And 1) )

SetPixelFast(x,y,RGB(_color,255-(x/2),155-(y/2)))

Next

Next

mx = Sin(timer) * 100
my = Cos(timer) * 100

How I can add a Zoom algo in it?

6
Freebasic / Re: Line_Color_Fader problems...
« on: August 16, 2012 »
It works perfect jim but i need an animation from left to right :(

7
Freebasic / Re: Line_Color_Fader problems...
« on: August 16, 2012 »
Thx...
This works so. well ever but I want the color of the left move to the right


8
Freebasic / Line_Color_Fader problems...
« on: August 15, 2012 »
Hi I have a question.
How do you program a line fader effect of oldschool demos?

Code: [Select]
For i As Integer = 0 To 255

line, (i +20.20) - (i, 30), RGB (r, g, b)

Next

Which algorithm for the colors should I use?

Pages: [1]