Search found 661 matches

by bluatigro
Sep 05, 2021 9:23
Forum: General
Topic: RASTERIZATON TRY
Replies: 7
Views: 1216

Re: RASTERIZATON TRY

@dafhi : thanks for help update : last sugestion build in i keep getting error's '' bluatigro 8 aug 2021 '' raserizor #include "t3s.bas" #include "matix.bas" ' ---- qsort #define direction < type qsort_type as ttriangle #macro ifswap(x,y,dotdef) if a(y)dotdef direction a(x)dotdef...
by bluatigro
Sep 03, 2021 11:09
Forum: General
Topic: RASTERIZATON TRY
Replies: 7
Views: 1216

Re: RASTERIZATON TRY

i have never worked whit marco's so this has a lot of error's please help '' bluatigro 8 aug 2021 '' raserizor #include "t3s.bas" #include "matix.bas" ' ---- qsort #define direction < #macro ifswap(x,y,dotdef) if a(y)dotdef direction a(x)dotdef then swap a(x),a(y) end if #EndMacr...
by bluatigro
Aug 30, 2021 7:46
Forum: General
Topic: RASTERIZATON TRY
Replies: 7
Views: 1216

Re: RASTERIZATON TRY

update : shading solved please : who want te build quick sort in this example ? '' bluatigro 30 aug 2021 '' raserizor #include "t3s.bas" #include "matix.bas" dim shared as integer scrnw , scrnh screen 20 , 32 , , fb.gfx_fullscreen screeninfo scrnw , scrnh dim shared as t3s pnt( 2...
by bluatigro
Aug 15, 2021 13:16
Forum: General
Topic: RASTERIZATON TRY
Replies: 7
Views: 1216

Re: RASTERIZATON TRY

update : supersphere , torus and banana '' bluatigro 8 aug 2021 '' raserizor #include "t3s.bas" #include "matix.bas" dim shared as integer scrnw , scrnh screen 20 , 32 , , fb.gfx_fullscreen screeninfo scrnw , scrnh dim shared as t3s pnt( 255 ) dim shared as t3s light = t3s( 1 , 1...
by bluatigro
Aug 15, 2021 9:37
Forum: General
Topic: RASTERIZATON TRY
Replies: 7
Views: 1216

RASTERIZATON TRY

this is a try at a rasterizor i get a image but it is a bit dark main '' bluatigro 8 aug 2021 '' raserizor #include "t3s.bas" #include "matix.bas" dim shared as integer scrnw , scrnh screen 20 , 32 , , fb.gfx_fullscreen screeninfo scrnw , scrnh dim shared as t3s pnt( 255 ) dim sh...
by bluatigro
Jan 17, 2021 11:06
Forum: Game Dev
Topic: looking for partner(s) to geme-dev together
Replies: 30
Views: 9390

Re: looking for partner(s) to geme-dev together

hello
i want to join
my specialities are graphics and ai
i m not good at inventing a new game
see my posts were i m capeble of
if you want to use my code do
but mention my name in the credits
greatings blua
by bluatigro
Jan 17, 2021 10:46
Forum: General
Topic: chain reaction
Replies: 3
Views: 790

Re: chain reaction

@marcov : no it is a sim of a chain reacition in a abombe update : neutrons have const speed const as integer total = 10000 const as double pi = atn( 1 ) * 4 dim as double x(total),y(total),dx(total),dy(total),v(total),dice screen 18 , 32 dim as integer sw , sh , tel , i screeninfo sw , sh randomize...
by bluatigro
Jan 16, 2021 14:02
Forum: General
Topic: chain reaction
Replies: 3
Views: 790

chain reaction

this is a try on whathappens in abombe it is not to scale inprovements are welkome const as integer total = 10000 dim as double x(total),y(total),dx(total),dy(total),v(total) screen 18 , 32 dim as integer sw , sh , tel , i screeninfo sw , sh randomize timer x( 0 ) = sw / 2 y( 0 ) = sh / 2 dx(0)=(rnd...
by bluatigro
Nov 06, 2020 9:39
Forum: Community Discussion
Topic: new animation : the beauty of math in nature
Replies: 1
Views: 711

new animation : the beauty of math in nature

it can be found on youtube [ titus krijgsman ]
it was made whit pov ray 3.6

please help me to get it viral
by bluatigro
May 05, 2020 13:07
Forum: Community Discussion
Topic: new computer animation
Replies: 1
Views: 810

new computer animation

the beauty of math in nature
https://www.youtube.com/channel/UCvsnwA ... aCOyNF5WuA

please help me to get this viral
by bluatigro
Apr 24, 2020 9:03
Forum: General
Topic: word function try
Replies: 4
Views: 992

word function try

i want to have a function that splits a sentice into seperate word's this is a function that is native to just - en liberty basic it is a verry handy function function word( zin as string , no as integer _ , cut as string = " " ) as string ''cut a sentence in parts whit cutting on 'cut' di...
by bluatigro
Apr 20, 2020 8:09
Forum: General
Topic: turing machine try
Replies: 2
Views: 835

Re: turing machine try

update : it works a little now error : i think the cardset's has a loop in it '' bluatigro 1 apr 2020 '' program puzle const as integer max = 50 dim as string code( 3 , 3 ) dim as string tape( max ) dim as integer i , j , k , plek for i = 1 to 3 for j = 1 to 3 read code( i , j ) next j next i '' b 0...
by bluatigro
Apr 13, 2020 6:54
Forum: General
Topic: puzle [1980] : change for a euro
Replies: 3
Views: 1054

puzle [1980] : change for a euro

puzle : give all different changes in cions for a euro this is my try : dim shared as integer coin(5) = { 1 , 2 , 5 , 10 , 20 , 50 } sub change( high as integer , rest as integer ) if high < 0 then exit sub dim as integer a = int( rest / coin( high ) ) , i for i = a to 1 step -1 rest = a * coin( hig...
by bluatigro
Apr 02, 2020 12:50
Forum: General
Topic: function draw
Replies: 2
Views: 784

Re: function draw

update : longer prog string in kleur() ''instructions : ''a function exist of list's and atom's ''eatch list exstist of a operator and 3 atom's ''a list begins whit a '[' and ends whhit a ']' ''a atom can be a number a var or a list ''betweenn '[' and operator and atom and ']' is 1 space ''a var can...
by bluatigro
Apr 02, 2020 12:39
Forum: General
Topic: square chalence
Replies: 4
Views: 983

Re: square chalence

more that 1 square is good