mirror of
https://github.com/thestk/stk
synced 2026-01-19 07:31:52 +00:00
Release 4.1.2 tarball
This commit is contained in:
committed by
Stephen Sinclair
parent
d12ef806ac
commit
5d63b50e85
@@ -5,47 +5,47 @@
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#FFFFFF">
|
||||
<CENTER>
|
||||
<img src="princeton.gif"> <img src="ccrma.gif"><P>
|
||||
<img src="princeton.gif"> <img src="ccrma.gif"> <img src="mcgill.gif"><P>
|
||||
<a class="qindex" href="index.html">Home</a> <a class="qindex" href="information.html">Information</a> <a class="qindex" href="classes.html">Classes</a> <a class="qindex" href="download.html">Download</a> <a class="qindex" href="usage.html">Usage</a> <a class="qindex" href="maillist.html">Mail List</a> <a class="qindex" href="system.html">Requirements</a> <a class="qindex" href="links.html">Links</a> <a class="qindex" href="tutorial.html">Tutorial</a></CENTER>
|
||||
<HR>
|
||||
<!-- Generated by Doxygen 1.2.8.1 -->
|
||||
<h1>Sitar.h</h1><div class="fragment"><pre>00001 <font class="comment">/***************************************************/</font>
|
||||
00018 <font class="comment">/***************************************************/</font>
|
||||
<!-- Generated by Doxygen 1.3.6 -->
|
||||
<h1>Sitar.h</h1><div class="fragment"><pre>00001 <span class="comment">/***************************************************/</span>
|
||||
00018 <span class="comment">/***************************************************/</span>
|
||||
00019
|
||||
00020 <font class="preprocessor">#if !defined(__SITAR_H)</font>
|
||||
00021 <font class="preprocessor"></font><font class="preprocessor">#define __SITAR_H</font>
|
||||
00022 <font class="preprocessor"></font>
|
||||
00023 <font class="preprocessor">#include "Instrmnt.h"</font>
|
||||
00024 <font class="preprocessor">#include "DelayA.h"</font>
|
||||
00025 <font class="preprocessor">#include "OneZero.h"</font>
|
||||
00026 <font class="preprocessor">#include "Noise.h"</font>
|
||||
00027 <font class="preprocessor">#include "ADSR.h"</font>
|
||||
00020 <span class="preprocessor">#if !defined(__SITAR_H)</span>
|
||||
00021 <span class="preprocessor"></span><span class="preprocessor">#define __SITAR_H</span>
|
||||
00022 <span class="preprocessor"></span>
|
||||
00023 <span class="preprocessor">#include "Instrmnt.h"</span>
|
||||
00024 <span class="preprocessor">#include "DelayA.h"</span>
|
||||
00025 <span class="preprocessor">#include "OneZero.h"</span>
|
||||
00026 <span class="preprocessor">#include "Noise.h"</span>
|
||||
00027 <span class="preprocessor">#include "ADSR.h"</span>
|
||||
00028
|
||||
00029 <font class="keyword">class </font><a class="code" href="classSitar.html">Sitar</a> : <font class="keyword">public</font> <a class="code" href="classInstrmnt.html">Instrmnt</a>
|
||||
<a name="l00029"></a><a class="code" href="classSitar.html">00029</a> <span class="keyword">class </span><a class="code" href="classSitar.html">Sitar</a> : <span class="keyword">public</span> <a class="code" href="classInstrmnt.html">Instrmnt</a>
|
||||
00030 {
|
||||
00031 <font class="keyword">public</font>:
|
||||
00031 <span class="keyword">public</span>:
|
||||
00033 <a class="code" href="classSitar.html#a0">Sitar</a>(MY_FLOAT lowestFrequency);
|
||||
00034
|
||||
00036 <a class="code" href="classSitar.html#a1">~Sitar</a>();
|
||||
00037
|
||||
00039 <font class="keywordtype">void</font> <a class="code" href="classSitar.html#a2">clear</a>();
|
||||
00039 <span class="keywordtype">void</span> <a class="code" href="classSitar.html#a2">clear</a>();
|
||||
00040
|
||||
00042 <font class="keywordtype">void</font> <a class="code" href="classInstrmnt.html#a4">setFrequency</a>(MY_FLOAT frequency);
|
||||
00042 <span class="keywordtype">void</span> <a class="code" href="classSitar.html#a3">setFrequency</a>(MY_FLOAT frequency);
|
||||
00043
|
||||
00045 <font class="keywordtype">void</font> <a class="code" href="classSitar.html#a4">pluck</a>(MY_FLOAT amplitude);
|
||||
00045 <span class="keywordtype">void</span> <a class="code" href="classSitar.html#a4">pluck</a>(MY_FLOAT amplitude);
|
||||
00046
|
||||
00048 <font class="keywordtype">void</font> <a class="code" href="classInstrmnt.html#a2">noteOn</a>(MY_FLOAT frequency, MY_FLOAT amplitude);
|
||||
00048 <span class="keywordtype">void</span> <a class="code" href="classSitar.html#a5">noteOn</a>(MY_FLOAT frequency, MY_FLOAT amplitude);
|
||||
00049
|
||||
00051 <font class="keywordtype">void</font> <a class="code" href="classInstrmnt.html#a3">noteOff</a>(MY_FLOAT amplitude);
|
||||
00051 <span class="keywordtype">void</span> <a class="code" href="classSitar.html#a6">noteOff</a>(MY_FLOAT amplitude);
|
||||
00052
|
||||
00054 MY_FLOAT <a class="code" href="classInstrmnt.html#a6">tick</a>();
|
||||
00054 MY_FLOAT <a class="code" href="classSitar.html#a7">tick</a>();
|
||||
00055
|
||||
00056 <font class="keyword">protected</font>:
|
||||
00056 <span class="keyword">protected</span>:
|
||||
00057 <a class="code" href="classDelayA.html">DelayA</a> *delayLine;
|
||||
00058 <a class="code" href="classOneZero.html">OneZero</a> *loopFilter;
|
||||
00059 <a class="code" href="classNoise.html">Noise</a> *noise;
|
||||
00060 <a class="code" href="classADSR.html">ADSR</a> *envelope;
|
||||
00061 <font class="keywordtype">long</font> length;
|
||||
00061 <span class="keywordtype">long</span> length;
|
||||
00062 MY_FLOAT loopGain;
|
||||
00063 MY_FLOAT amGain;
|
||||
00064 MY_FLOAT delay;
|
||||
@@ -53,13 +53,13 @@
|
||||
00066
|
||||
00067 };
|
||||
00068
|
||||
00069 <font class="preprocessor">#endif</font>
|
||||
00070 <font class="preprocessor"></font>
|
||||
00069 <span class="preprocessor">#endif</span>
|
||||
00070 <span class="preprocessor"></span>
|
||||
</pre></div><HR>
|
||||
|
||||
<table>
|
||||
<tr><td><A HREF="http://www-ccrma.stanford.edu/software/stk/"><I>The Synthesis ToolKit in C++ (STK)</I></A></td></tr>
|
||||
<tr><td>©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.</td></tr>
|
||||
<tr><td>©1995-2004 Perry R. Cook and Gary P. Scavone. All Rights Reserved.</td></tr>
|
||||
</table>
|
||||
|
||||
</BODY>
|
||||
|
||||
Reference in New Issue
Block a user