Generation of arpeggio for .chan output.
Generating sound in Houdini.
Date Created:Sunday March 04th, 2007 04:49 PM
Date Modified:Saturday August 02nd, 2008 02:41 PM
#include <stdio.h>
int main()
{
int i;
int V;
int x;
int freq = 30;
int arpegio[12] = {1,5,8,13,17,20,22,18,15,10,6,3};
for (i=0;i<12;i++)
{
V = arpegio[i];
V += 48;
for (x=1; x<freq; x++)
{
printf("%d\n", V );
}
}
return 0;
}
Downloads:
Download: arpeggio.c 354 B
Please login or Click Here to register for downloads
Arpeggio by Dan Lynch
is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 United States License
Based on a work at www.3daet.com
Permissions beyond the scope of this license may be available at http://www.3daet.com
