Hi to all ,
:BangHead: now for days how to :sign0161::sign0104:
is there a way to make this more flexible ?
instead having all s(0),a(0).... as fixed
something like this
coords = Array As Float(s(0),a(0),s(1),a(1)..... s(n),a(n))
thanks AH
:BangHead: now for days how to :sign0161::sign0104:
is there a way to make this more flexible ?
instead having all s(0),a(0).... as fixed
something like this
coords = Array As Float(s(0),a(0),s(1),a(1)..... s(n),a(n))
B4X:
Dim s(9) As Float
Dim a(9) As Float
s(0)="0.000"
s(1)="17.000"
s(2)="19.105"
s(3)="21.253"
s(4)="24.097"
s(5)="30.500"
s(6)="32.916"
s(7)="39.513"
s(8)="41.860"
'...
'S(99)="xxxxx"
a(0)="0.000"
a(1)="0.000"
a(2)="1.997"
a(3)="42.997"
a(4)="43.000"
a(5)="43.000"
a(6)="44.956"
a(7)="75.998"
a(8)="76.000"
'.....
'a(99)="xxxx"
coords = Array As Float(s(0),a(0),s(1),a(1),s(2),a(2),s(3),a(3),s(4),a(4),s(5),a(5),s(6),a(6),s(7),a(7),s(8),a(8)' xxxxxx....)
'
'
'
'
'
'
thanks AH