Nsound  0.9.4
Macros | Functions
Kernel.cc File Reference
#include <Nsound/Buffer.h>
#include <Nsound/Kernel.h>
#include <Nsound/RngTausworthe.h>
#include <string.h>
#include <cmath>
#include <iomanip>
#include <iostream>
Include dependency graph for Kernel.cc:

Go to the source code of this file.

Macros

#define FORMAT   setw(12) << setprecision(9) << std::setiosflags(std::ios::fixed)
 

Functions

void swap_ (float64 &a, float64 &b)
 

Macro Definition Documentation

#define FORMAT   setw(12) << setprecision(9) << std::setiosflags(std::ios::fixed)

Referenced by Nsound::operator<<().

Function Documentation

void swap_ ( float64 a,
float64 b 
)

Definition at line 287 of file Kernel.cc.

Referenced by Nsound::Kernel::ga_interleave().

288 {
289  float64 temp = b;
290  b = a;
291  a = temp;
292 }
double float64
Definition: Nsound.h:146