Files
stk/doc/doxygen/tutorial.txt
Gary Scavone 6e0d1955a8 Version 4.1.1
2013-09-29 23:05:09 +02:00

23 lines
1.1 KiB
Plaintext

/*! \page tutorial Tutorial
The Synthesis ToolKit is a set of C++ classes. In order to go beyond the simple example programs we provide, it is necessary to know some basics about programming in C or C++. STK's "target audience" includes people who:
<UL>
<LI>want to create audio DSP and/or synthesis programs</LI>
<LI>want to save some time by using our unit generators and input/output routines</LI>
<LI>want to learn about synthesis and processing algorithms</LI>
<LI>wish to teach real-time synthesis and processing, and wish to use some of our classes and examples</LI>
</UL>
Most ToolKit programmers will likely end up writing a class or two for their own particular needs, but this task is typically simplified by making use of pre-existing STK classes (filters, oscillators, etc.).
The following tutorial chapters describe many of the fundamental ToolKit concepts and classes. All tutorial programs are included in the <TT>projects/examples</TT> directory.
-# \ref hello
-# \ref compile
-# \ref realtime
-# \ref instruments
-# \ref controlin
-# \ref multichannel
-# \ref polyvoices
*/