Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Sound Wave Bar.....
#31
heh....*sigh* well I couldn't see it, QB said that your expression was too complex....doh! :x :lol:

But anyways...Rattra, I got past my laziness and wipped up something....I had to use the FOR delay cause TIMER was too slow + WAITs were too fast.

Yes I know it breaks so many rules of this competittion but its just soo cool.Big Grin

What you think?
[syntax="qbasic"]
'Wave Bar by Kevin(x.t.r.GRAPHICS)
'Redone by Mitth'raw'nuruodo

SCREEN 13
amp = 40 'Amplitude Ajust
sp = 300000 'speed adjust
Offset% = 0: angx = 0: angy = 0: angz = 0
rad = 3.141593 / 180
DO
Offset% = Offset% + 1
angx = (angx + 3) MOD 360: angy = (angy + 3) MOD 360
angz = (angz + 3) MOD 360
sx! = SIN(angx * rad): sy! = SIN(angy * rad)
sz! = SIN(angz * rad): cx! = COS(angx * rad)
cy! = COS(angy * rad): cz! = COS(angz * rad)
xx! = (cy! * cz!): xy! = ((sy! * cz! * sx!) - (cx! * sz!))
xz! = ((sy! * cz! * cx!) + (sx! * sz!))
yx! = (cy! * sz!): yy! = ((sx! * sy! * sz!) + (cx! * cz!))
yz! = ((cx! * sy! * sz!) - (sx! * cz!)): zx! = -sy!
zy! = (sx! * cy!): zz! = (cx! * cy!)
FOR j = 1 TO 3
FOR x = 1 TO 320
y! = amp * SIN(ang * 3.24 / 180)
x1 = x + Offset%
IF x1 > 319 THEN x1 = 0 + x
IF Offset% > 319 THEN
px! = x1
py! = y!
pz! = -20 - (j * 100)
fx1! = ((px! * xx!) + (py! * xy!) + (pz! * xz!))
fy1! = ((px! * yx!) + (py! * yy!) + (pz! * yz!))
fz1! = ((px! * zx!) + (py! * zy!) + (pz! * zz!)) - 500
distance% = 256 - fz1!
IF distance% > 0 THEN
fx = 160 + (256 * fx1! / distance%)
fy = 100 - (256 * fy1! / distance%)
PSET (fx, fy), 9
END IF
END IF
ang = ang + 1
NEXT x
NEXT j
IF Offset% > 319 THEN
WAIT &H3DA, 8
WAIT &H3DA, 8, 8
FOR i = 1 TO sp: NEXT i
CLS
END IF
LOOP
[/syntax]

Check! King me :king: :rotfl:
i]"But...it was so beautifully done"[/i]
Reply


Messages In This Thread
Sound Wave Bar..... - by Rattrapmax6 - 04-03-2005, 12:51 AM
Sound Wave Bar..... - by red_Marvin - 04-03-2005, 01:37 AM
Sound Wave Bar..... - by Rattrapmax6 - 04-03-2005, 01:52 AM
Sound Wave Bar..... - by Rattrapmax6 - 04-04-2005, 02:22 AM
Sound Wave Bar..... - by Mitth'raw'nuruodo - 04-04-2005, 06:23 AM
Sound Wave Bar..... - by Rattrapmax6 - 04-05-2005, 01:12 AM
Sound Wave Bar..... - by Mitth'raw'nuruodo - 04-05-2005, 01:26 AM
Sound Wave Bar..... - by Rattrapmax6 - 04-05-2005, 01:58 AM
Sound Wave Bar..... - by red_Marvin - 04-05-2005, 01:58 AM
Sound Wave Bar..... - by Rattrapmax6 - 04-05-2005, 02:02 AM
Sound Wave Bar..... - by xteraco - 04-05-2005, 03:11 AM
Sound Wave Bar..... - by Rattrapmax6 - 04-05-2005, 03:45 AM
Sound Wave Bar..... - by xteraco - 04-05-2005, 05:25 AM
Sound Wave Bar..... - by Rattrapmax6 - 04-05-2005, 05:38 AM
Sound Wave Bar..... - by shiftLynx - 04-05-2005, 06:05 AM
Sound Wave Bar..... - by xteraco - 04-05-2005, 06:56 AM
Sound Wave Bar..... - by xteraco - 04-05-2005, 08:23 AM
Sound Wave Bar..... - by Mitth'raw'nuruodo - 04-06-2005, 12:36 AM
Sound Wave Bar..... - by xteraco - 04-06-2005, 12:37 AM
Sound Wave Bar..... - by Mitth'raw'nuruodo - 04-06-2005, 12:41 AM
Sound Wave Bar..... - by Anonymous - 04-06-2005, 03:50 AM
Sound Wave Bar..... - by xteraco - 04-06-2005, 04:09 AM
Sound Wave Bar..... - by Rattrapmax6 - 04-06-2005, 04:41 AM
Sound Wave Bar..... - by Mitth'raw'nuruodo - 04-07-2005, 12:56 AM
Sound Wave Bar..... - by Rattrapmax6 - 04-07-2005, 01:12 AM
Sound Wave Bar..... - by Mitth'raw'nuruodo - 04-07-2005, 01:15 AM
Sound Wave Bar..... - by Rattrapmax6 - 04-07-2005, 01:44 AM
Sound Wave Bar..... - by Mitth'raw'nuruodo - 04-07-2005, 01:45 AM
Sound Wave Bar..... - by shiftLynx - 04-07-2005, 03:31 AM
Sound Wave Bar..... - by Rattrapmax6 - 04-07-2005, 03:37 AM
Sound Wave Bar..... - by Mitth'raw'nuruodo - 04-07-2005, 04:38 AM
Sound Wave Bar..... - by Rattrapmax6 - 04-07-2005, 04:57 AM
Sound Wave Bar..... - by Mitth'raw'nuruodo - 04-07-2005, 06:19 AM
Sound Wave Bar..... - by xteraco - 04-07-2005, 06:32 AM
Sound Wave Bar..... - by relsoft - 04-07-2005, 11:15 AM
Sound Wave Bar..... - by Anonymous - 04-07-2005, 11:34 AM
Sound Wave Bar..... - by shiftLynx - 04-07-2005, 08:23 PM
Sound Wave Bar..... - by Kylemc - 04-08-2005, 12:07 AM
Sound Wave Bar..... - by Mitth'raw'nuruodo - 04-08-2005, 12:14 AM
Sound Wave Bar..... - by Mitth'raw'nuruodo - 04-08-2005, 12:22 AM
Sound Wave Bar..... - by Rattrapmax6 - 04-08-2005, 02:38 AM
Sound Wave Bar..... - by xteraco - 04-08-2005, 04:28 AM
Sound Wave Bar..... - by relsoft - 04-08-2005, 02:48 PM
Sound Wave Bar..... - by Anonymous - 04-08-2005, 03:20 PM
Sound Wave Bar..... - by Rattrapmax6 - 04-08-2005, 10:10 PM
Sound Wave Bar..... - by Mitth'raw'nuruodo - 04-09-2005, 12:20 AM
Sound Wave Bar..... - by Rattrapmax6 - 04-09-2005, 12:54 AM
Sound Wave Bar..... - by Mitth'raw'nuruodo - 04-09-2005, 12:59 AM
Sound Wave Bar..... - by DefHo - 04-09-2005, 01:54 PM
Sound Wave Bar..... - by Rattrapmax6 - 04-09-2005, 08:23 PM
Narf! - by DefHo - 04-10-2005, 01:22 AM
Sound Wave Bar..... - by Rattrapmax6 - 04-10-2005, 03:25 AM
Sound Wave Bar..... - by Mitth'raw'nuruodo - 04-10-2005, 07:48 AM
Sound Wave Bar..... - by shiftLynx - 04-10-2005, 02:47 PM
Sound Wave Bar..... - by TheDarkJay - 04-10-2005, 03:11 PM
Sound Wave Bar..... - by Mitth'raw'nuruodo - 04-10-2005, 05:09 PM
Sound Wave Bar..... - by shiftLynx - 04-10-2005, 05:46 PM
Sound Wave Bar..... - by Rattrapmax6 - 04-10-2005, 07:56 PM
Sound Wave Bar..... - by Mitth'raw'nuruodo - 04-11-2005, 03:14 AM
Sound Wave Bar..... - by Rattrapmax6 - 04-11-2005, 03:27 AM
Sound Wave Bar..... - by Mitth'raw'nuruodo - 04-11-2005, 03:38 AM
Sound Wave Bar..... - by Rattrapmax6 - 04-12-2005, 05:11 AM
Sound Wave Bar..... - by Mitth'raw'nuruodo - 04-13-2005, 01:27 AM
Sound Wave Bar..... - by Kylemc - 04-16-2005, 01:06 AM
Sound Wave Bar..... - by Rattrapmax6 - 04-16-2005, 03:17 AM
Sound Wave Bar..... - by Kylemc - 04-16-2005, 02:06 PM
Sound Wave Bar..... - by TheDarkJay - 04-16-2005, 02:47 PM
Sound Wave Bar..... - by Kylemc - 04-16-2005, 03:55 PM
Sound Wave Bar..... - by TheDarkJay - 04-16-2005, 04:03 PM
Sound Wave Bar..... - by Mitth'raw'nuruodo - 04-16-2005, 05:33 PM
Sound Wave Bar..... - by Rattrapmax6 - 04-16-2005, 07:29 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)