Difference between revisions of "ManyEarsPackages"

From IntRoLab
(OSC Format)
Line 25: Line 25:
  
 
= OSC Format =
 
= OSC Format =
 +
<pre>
 +
 +
//HEADER CONTAINS 24 BYTES
 +
char header[12] = {'/','m','a','n','y','e','a','r','s', '\0', '\0','\0'};
 +
char tags[12] = {',','i','f','f','f','f','f','f','f','\0','\0','\0'};
 +
 +
//DATA CONTAINS 32 BYTES
 +
BinIO::write<int>(outputString,&id,1);
 +
BinIO::write<float>(outputString,&x,1);
 +
BinIO::write<float>(outputString,&y,1);
 +
BinIO::write<float>(outputString,&z,1);
 +
BinIO::write<float>(outputString,&strength,1);
 +
BinIO::write<float>(outputString,&theta,1);
 +
BinIO::write<float>(outputString,&phi,1);
 +
BinIO::write<float>(outputString,&distance,1);
 +
 +
 +
//TOTAL = 56 BYTES
 +
</pre>

Revision as of 15:55, 5 June 2009

WIN32 Packages

  1. Install the FlowDesigner Package
    1. Download and install File:FlowDesigner-0.10.0-win32.rar
    2. FlowDesigner must be added to the PATH
  2. Install the ManyEars Package
    1. Download and install File:ManyEars-0.2.rar


Notes :

June 5 2009. Packages uploaded.

OSX Packages

Planar Array Configuration for 3D

Standard Array Configuration

OSC Format


//HEADER CONTAINS 24 BYTES
char header[12] = {'/','m','a','n','y','e','a','r','s', '\0', '\0','\0'};
char tags[12] = {',','i','f','f','f','f','f','f','f','\0','\0','\0'};

//DATA CONTAINS 32 BYTES
BinIO::write<int>(outputString,&id,1);
BinIO::write<float>(outputString,&x,1);
BinIO::write<float>(outputString,&y,1);
BinIO::write<float>(outputString,&z,1);
BinIO::write<float>(outputString,&strength,1);
BinIO::write<float>(outputString,&theta,1);
BinIO::write<float>(outputString,&phi,1);
BinIO::write<float>(outputString,&distance,1);


//TOTAL = 56 BYTES