[PD-cvs] externals/sc4pd/source BrownNoise.cpp,1.2,1.3 ClipNoise.cpp,1.3,1.4 CoinGate.cpp,1.1,1.2 Crackle.cpp,1.2,1.3 Decay.cpp,1.1,1.2 Dust.cpp,1.3,1.4 Dust2.cpp,1.3,1.4 ExpRand.cpp,1.2,1.3 GrayNoise.cpp,1.2,1.3 Hasher.cpp,1.1.1.1,1.2 IRand.cpp,1.2,1.3 Impulse.cpp,1.1,1.2 Integrator.cpp,1.1,1.2 LFClipNoise.cpp,1.2,1.3 LFNoise0.cpp,1.2,1.3 LFNoise1.cpp,1.1,1.2 LFNoise2.cpp,1.1,1.2 LFPulse.cpp,1.1,1.2 LFSaw.cpp,1.1,1.2 Latoocarfian.cpp,1.2,1.3 LinCong.cpp,1.1,1.2 LinRand.cpp,1.1,1.2 Logistic.cpp,1.1,1.2 MantissaMask.cpp,1.1.1.1,1.2 Median.cpp,1.1.1.1,1.2 NRand.cpp,1.1,1.2 PinkNoise.cpp,1.2,1.3 Rand.cpp,1.2,1.3 TExpRand.cpp,1.2,1.3 TIRand.cpp,1.2,1.3 TRand.cpp,1.2,1.3 WhiteNoise.cpp,1.2,1.3 absdif.cpp,1.1,1.2 amclip.cpp,1.1,1.2 difsqr.cpp,1.1,1.2 excess.cpp,1.1,1.2 hypot.cpp,1.1,1.2 main.cpp,1.12,1.13 ring2.cpp,1.1,1.2 ring3.cpp,1.1,1.2 ring4.cpp,1.1,1.2 scaleneg.cpp,1.1,1.2 sqrdif.cpp,1.1,1.2 sqrsum.cpp,1.1,1.2 sumsqr.cpp,1.1,1.2 support.cpp,1.3,1.4 support.hpp,1.5,1.6

Tim Blechmann timblech at users.sourceforge.net
Mon Aug 2 21:18:25 CEST 2004


Update of /cvsroot/pure-data/externals/sc4pd/source
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11057

Modified Files:
	BrownNoise.cpp ClipNoise.cpp CoinGate.cpp Crackle.cpp 
	Decay.cpp Dust.cpp Dust2.cpp ExpRand.cpp GrayNoise.cpp 
	Hasher.cpp IRand.cpp Impulse.cpp Integrator.cpp 
	LFClipNoise.cpp LFNoise0.cpp LFNoise1.cpp LFNoise2.cpp 
	LFPulse.cpp LFSaw.cpp Latoocarfian.cpp LinCong.cpp LinRand.cpp 
	Logistic.cpp MantissaMask.cpp Median.cpp NRand.cpp 
	PinkNoise.cpp Rand.cpp TExpRand.cpp TIRand.cpp TRand.cpp 
	WhiteNoise.cpp absdif.cpp amclip.cpp difsqr.cpp excess.cpp 
	hypot.cpp main.cpp ring2.cpp ring3.cpp ring4.cpp scaleneg.cpp 
	sqrdif.cpp sqrsum.cpp sumsqr.cpp support.cpp support.hpp 
Log Message:
main header file

Index: main.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/main.cpp,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** main.cpp	1 Aug 2004 20:51:11 -0000	1.12
--- main.cpp	2 Aug 2004 19:18:22 -0000	1.13
***************
*** 35,44 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  #define SC4PD_VERSION "0.01"
--- 35,39 ----
  */
  
! #include "sc4pd.hpp"
  
  #define SC4PD_VERSION "0.01"

Index: TIRand.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/TIRand.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** TIRand.cpp	15 Jul 2004 19:05:05 -0000	1.2
--- TIRand.cpp	2 Aug 2004 19:18:22 -0000	1.3
***************
*** 36,47 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: BrownNoise.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/BrownNoise.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** BrownNoise.cpp	15 Jul 2004 19:05:05 -0000	1.2
--- BrownNoise.cpp	2 Aug 2004 19:18:22 -0000	1.3
***************
*** 36,48 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
! 
  
  /* ------------------------ BrownNoise~ -------------------------------*/
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  /* ------------------------ BrownNoise~ -------------------------------*/

Index: Latoocarfian.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/Latoocarfian.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Latoocarfian.cpp	23 Jul 2004 10:01:56 -0000	1.2
--- Latoocarfian.cpp	2 Aug 2004 19:18:22 -0000	1.3
***************
*** 36,47 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: Rand.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/Rand.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Rand.cpp	15 Jul 2004 19:05:05 -0000	1.2
--- Rand.cpp	2 Aug 2004 19:18:22 -0000	1.3
***************
*** 36,47 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: LFNoise0.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/LFNoise0.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** LFNoise0.cpp	16 Jul 2004 16:43:47 -0000	1.2
--- LFNoise0.cpp	2 Aug 2004 19:18:22 -0000	1.3
***************
*** 36,47 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: LinCong.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/LinCong.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** LinCong.cpp	23 Jul 2004 10:01:56 -0000	1.1
--- LinCong.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,47 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: Crackle.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/Crackle.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Crackle.cpp	17 Jul 2004 17:27:17 -0000	1.2
--- Crackle.cpp	2 Aug 2004 19:18:22 -0000	1.3
***************
*** 36,48 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
! 
  
  /* ------------------------ Crackle~ -------------------------------*/
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  /* ------------------------ Crackle~ -------------------------------*/

Index: WhiteNoise.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/WhiteNoise.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** WhiteNoise.cpp	15 Jul 2004 19:05:05 -0000	1.2
--- WhiteNoise.cpp	2 Aug 2004 19:18:22 -0000	1.3
***************
*** 36,47 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: MantissaMask.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/MantissaMask.cpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** MantissaMask.cpp	14 Jul 2004 16:21:44 -0000	1.1.1.1
--- MantissaMask.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,47 ****
  */
  
- #include <flext.h>
  #include "support.hpp"
- #include "SC_PlugIn.h"
- 
- 
- #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
- #error You need at least FLEXT version 0.4.6
- #endif
  
  /* ------------------------ MantissaMask~ -----------------------------*/
--- 36,40 ----

Index: Decay.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/Decay.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Decay.cpp	1 Aug 2004 20:51:11 -0000	1.1
--- Decay.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,47 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  /* ------------------------ Decay~ -----------------------------*/
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  /* ------------------------ Decay~ -----------------------------*/

Index: Dust.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/Dust.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Dust.cpp	15 Jul 2004 19:05:05 -0000	1.3
--- Dust.cpp	2 Aug 2004 19:18:22 -0000	1.4
***************
*** 35,45 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  /* ------------------------ Dust~ -------------------------------------*/
--- 35,39 ----
  */
  
! #include "sc4pd.hpp"
  
  /* ------------------------ Dust~ -------------------------------------*/

Index: support.hpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/support.hpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** support.hpp	1 Aug 2004 20:51:11 -0000	1.5
--- support.hpp	2 Aug 2004 19:18:22 -0000	1.6
***************
*** 96,103 ****
  
  
- /* this macro has to be redefined to work with flext */
- 
- // calculate a slope for control rate interpolation to audio rate.
- //#define CALCSLOPE(next,prev) ((next - prev) * unit->mRate->mSlopeFactor)
- #undef CALCSLOPE
- #define CALCSLOPE(next,prev) ((next - prev) * 1/Blocksize())
--- 96,97 ----

Index: GrayNoise.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/GrayNoise.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** GrayNoise.cpp	15 Jul 2004 19:05:05 -0000	1.2
--- GrayNoise.cpp	2 Aug 2004 19:18:22 -0000	1.3
***************
*** 36,48 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
! 
  
  /* ------------------------ GrayNoise~ -------------------------------*/
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  /* ------------------------ GrayNoise~ -------------------------------*/

Index: Dust2.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/Dust2.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Dust2.cpp	15 Jul 2004 19:05:05 -0000	1.3
--- Dust2.cpp	2 Aug 2004 19:18:22 -0000	1.4
***************
*** 36,46 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  /* ------------------------ Dust2~ -------------------------------------*/
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  /* ------------------------ Dust2~ -------------------------------------*/

Index: LFSaw.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/LFSaw.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** LFSaw.cpp	1 Aug 2004 19:00:30 -0000	1.1
--- LFSaw.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,47 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: ClipNoise.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/ClipNoise.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ClipNoise.cpp	15 Jul 2004 21:34:12 -0000	1.3
--- ClipNoise.cpp	2 Aug 2004 19:18:22 -0000	1.4
***************
*** 36,47 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: ring4.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/ring4.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ring4.cpp	30 Jul 2004 21:27:07 -0000	1.1
--- ring4.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,45 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: sumsqr.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/sumsqr.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** sumsqr.cpp	30 Jul 2004 21:27:07 -0000	1.1
--- sumsqr.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,45 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: ring2.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/ring2.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ring2.cpp	30 Jul 2004 21:27:07 -0000	1.1
--- ring2.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,46 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
! 
  
  inline float sc_ring2 (float a, float b)
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  inline float sc_ring2 (float a, float b)

Index: Median.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/Median.cpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** Median.cpp	14 Jul 2004 16:21:44 -0000	1.1.1.1
--- Median.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,47 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  /* ------------------------ Median(~) ---------------------------------*/
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  /* ------------------------ Median(~) ---------------------------------*/

Index: hypot.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/hypot.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** hypot.cpp	30 Jul 2004 21:27:07 -0000	1.1
--- hypot.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,45 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: TExpRand.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/TExpRand.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** TExpRand.cpp	15 Jul 2004 19:05:05 -0000	1.2
--- TExpRand.cpp	2 Aug 2004 19:18:22 -0000	1.3
***************
*** 36,47 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: Integrator.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/Integrator.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Integrator.cpp	1 Aug 2004 20:51:11 -0000	1.1
--- Integrator.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,47 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  /* ------------------------ Integrator~ -----------------------------*/
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  /* ------------------------ Integrator~ -----------------------------*/

Index: ExpRand.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/ExpRand.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** ExpRand.cpp	15 Jul 2004 21:34:12 -0000	1.2
--- ExpRand.cpp	2 Aug 2004 19:18:22 -0000	1.3
***************
*** 36,48 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
! 
  
  /* ------------------------ ExpRand~ -------------------------------*/
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  /* ------------------------ ExpRand~ -------------------------------*/

Index: LFNoise2.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/LFNoise2.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** LFNoise2.cpp	16 Jul 2004 16:43:48 -0000	1.1
--- LFNoise2.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,47 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: LFClipNoise.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/LFClipNoise.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** LFClipNoise.cpp	16 Jul 2004 16:43:47 -0000	1.2
--- LFClipNoise.cpp	2 Aug 2004 19:18:22 -0000	1.3
***************
*** 36,47 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: support.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/support.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** support.cpp	30 Jul 2004 08:43:43 -0000	1.3
--- support.cpp	2 Aug 2004 19:18:22 -0000	1.4
***************
*** 35,46 ****
  */
  
! #include <flext.h>
! #include <flsupport.h>
! #include "SC_PlugIn.h"
  
  
- #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
- #error You need at least FLEXT version 0.4.6
- #endif
  
  bool sc_add (flext::AtomList a)
--- 35,42 ----
  */
  
! #include "sc4pd.hpp"
  
+ #include <flsupport.h>
  
  
  bool sc_add (flext::AtomList a)

Index: ring3.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/ring3.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ring3.cpp	30 Jul 2004 21:27:07 -0000	1.1
--- ring3.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,46 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
! 
  
  inline float sc_ring3 (float a, float b)
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  inline float sc_ring3 (float a, float b)

Index: amclip.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/amclip.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** amclip.cpp	30 Jul 2004 21:27:07 -0000	1.1
--- amclip.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,45 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: LFNoise1.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/LFNoise1.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** LFNoise1.cpp	16 Jul 2004 16:43:47 -0000	1.1
--- LFNoise1.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,47 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: IRand.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/IRand.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** IRand.cpp	15 Jul 2004 19:05:05 -0000	1.2
--- IRand.cpp	2 Aug 2004 19:18:22 -0000	1.3
***************
*** 36,48 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
! 
  
  /* ------------------------ IRand~ -------------------------------*/
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  /* ------------------------ IRand~ -------------------------------*/

Index: Logistic.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/Logistic.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Logistic.cpp	17 Jul 2004 17:27:17 -0000	1.1
--- Logistic.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,47 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: sqrdif.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/sqrdif.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** sqrdif.cpp	30 Jul 2004 21:27:07 -0000	1.1
--- sqrdif.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,45 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: Impulse.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/Impulse.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Impulse.cpp	1 Aug 2004 20:51:11 -0000	1.1
--- Impulse.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,47 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  /* todo: implement phase offset as in sc3
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  /* todo: implement phase offset as in sc3

Index: CoinGate.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/CoinGate.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** CoinGate.cpp	15 Jul 2004 19:03:22 -0000	1.1
--- CoinGate.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,48 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
! 
  
  /* ------------------------ CoinGate ---------------------------------*/
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  /* ------------------------ CoinGate ---------------------------------*/

Index: Hasher.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/Hasher.cpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** Hasher.cpp	14 Jul 2004 16:21:44 -0000	1.1.1.1
--- Hasher.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,47 ****
  */
  
- #include <flext.h>
  #include "support.hpp"
- #include "SC_PlugIn.h"
- 
- 
- #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
- #error You need at least FLEXT version 0.4.6
- #endif
  
  /* ------------------------ Hasher~ -----------------------------------*/
--- 36,40 ----

Index: LFPulse.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/LFPulse.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** LFPulse.cpp	1 Aug 2004 19:00:30 -0000	1.1
--- LFPulse.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,47 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: sqrsum.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/sqrsum.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** sqrsum.cpp	30 Jul 2004 21:27:07 -0000	1.1
--- sqrsum.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,45 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: LinRand.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/LinRand.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** LinRand.cpp	15 Jul 2004 19:03:22 -0000	1.1
--- LinRand.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,47 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: absdif.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/absdif.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** absdif.cpp	30 Jul 2004 21:27:07 -0000	1.1
--- absdif.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,45 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: NRand.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/NRand.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** NRand.cpp	15 Jul 2004 19:03:22 -0000	1.1
--- NRand.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,47 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: PinkNoise.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/PinkNoise.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** PinkNoise.cpp	15 Jul 2004 19:05:05 -0000	1.2
--- PinkNoise.cpp	2 Aug 2004 19:18:22 -0000	1.3
***************
*** 36,48 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
! 
  
  /* ------------------------ PinkNoise~ -------------------------------*/
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  /* ------------------------ PinkNoise~ -------------------------------*/

Index: scaleneg.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/scaleneg.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** scaleneg.cpp	30 Jul 2004 21:27:07 -0000	1.1
--- scaleneg.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,45 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: difsqr.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/difsqr.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** difsqr.cpp	30 Jul 2004 21:27:07 -0000	1.1
--- difsqr.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,45 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  

Index: excess.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/excess.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** excess.cpp	30 Jul 2004 21:27:07 -0000	1.1
--- excess.cpp	2 Aug 2004 19:18:22 -0000	1.2
***************
*** 36,46 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
! 
  
  /* ------------------------ excess~ -----------------------------*/
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  /* ------------------------ excess~ -----------------------------*/

Index: TRand.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/sc4pd/source/TRand.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** TRand.cpp	15 Jul 2004 19:05:05 -0000	1.2
--- TRand.cpp	2 Aug 2004 19:18:22 -0000	1.3
***************
*** 36,47 ****
  */
  
! #include <flext.h>
! #include "SC_PlugIn.h"
! #include "support.hpp"
! 
! 
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 406)
! #error You need at least FLEXT version 0.4.6
! #endif
  
  
--- 36,40 ----
  */
  
! #include "sc4pd.hpp"
  
  





More information about the Pd-cvs mailing list