https://www.youtube.com/watch?v=2ls2ZaTeS3s
https://www.youtube.com/watch?v=1f1JpdfZEkk
https://www.youtube.com/watch?v=hbyL7FtmW7s
Search found 7 matches
- 17 Aug 2014 16:56
- Forum: General Discussion
- Topic: When Balls Collide
- Replies: 5
- Views: 1879
- 16 Aug 2014 12:45
- Forum: General Discussion
- Topic: When Balls Collide
- Replies: 5
- Views: 1879
Re: When Balls Collide
That's make me think about a idea of sequencer.
I draw a sketch, look at the attachment.
Inputs are welcome
Thanks to pay attention,
Best
RG
- 19 Jan 2014 10:15
- Forum: General Discussion
- Topic: array
- Replies: 6
- Views: 1621
Re: array
I use a 17 note KEYBOARD I have 16 Steps and 16 Paternes This script show how to record my notes in regards to the steps and the Paternes //NOTES// decl i; i=firstof(KEYBOARD.Steps.x); decl j; j=firstof(Paternes.x); if(KEYBOARD.note0.x==1) Notes[i+(j*17)]=0; else if(KEYBOARD.note1.x==1) Notes[i+(j ...
- 19 Jan 2014 08:54
- Forum: General Discussion
- Topic: array
- Replies: 6
- Views: 1621
Re: array
Ok after some experimentation I understand that the notion of more than 1D array doesn't work. Using VECTORALL[j]={vect0, vect1, vect2, ect..} simply create a single vector with concatenation of vect0, vect1,vect2, etc... starting at j. The way to manage this collection is the subarray(obj, start ...
- 18 Jan 2014 19:08
- Forum: General Discussion
- Topic: array
- Replies: 6
- Views: 1621
Re: array
Thanks Softcore and oldgearguy, that's works!
- 15 Jan 2014 23:15
- Forum: General Discussion
- Topic: array
- Replies: 6
- Views: 1621
array
Hello, I'm looking to create a vector of vector. exemple: Tab.0={0,0,0}; Tab.1={0,0,1}; Tab.2={0,1,0}; Tab.3={0,1,1}; what I want to do: decl val; TAB[0]=Tab.0; val=TAB[0]; */val={0,0,1} /* If you could help me to manage "array of array" or "vector of vector" would be very nice;) Regards,