capitalize filenames for consistency

This commit is contained in:
Stephen Birarda 2013-01-30 13:11:20 -08:00
parent 0ae91cd57e
commit a5dbbe2511
34 changed files with 246 additions and 246 deletions

View file

@ -11,7 +11,7 @@
#include <iostream>
#include "AudioSource.h"
#include "head.h"
#include "Head.h"
#include "UDPSocket.h"
class AudioData {

View file

@ -1,12 +1,12 @@
//
// marker_acquisition_view.cpp
// MarkerAcquisitionView.cpp
// interface
//
// Created by Kenneth Keiter on 12/12/12.
// Copyright (c) 2012 High Fidelity, Inc. All rights reserved.
//
#include "marker_acquisition_view.h"
#include "MarkerAcquisitionView.h"
#include <GLUT/glut.h>
#include <opencv2/opencv.hpp>

View file

@ -1,13 +1,13 @@
//
// marker_acquisition_view.h
// MarkerAcquisitionView.h
// interface
//
// Created by Kenneth Keiter on 12/12/12.
// Copyright (c) 2012 High Fidelity, Inc. All rights reserved.
//
#ifndef __interface__marker_acquisition_view__
#define __interface__marker_acquisition_view__
#ifndef __interface__MarkerAcquisitionView__
#define __interface__MarkerAcquisitionView__
#include <iostream>
#include <vector.h>
@ -15,7 +15,7 @@
#include <GLUT/glut.h>
#include <CVBlob/blob.h>
#include <CVBlob/BlobResult.h>
#include "markers.h"
#include "Markers.h"
#define ACQ_VIEW_RETICLE_RADIUS 10

View file

@ -3,8 +3,8 @@
//
#ifndef interface_SerialInterface_h
#define interface_SerialInterface_h
#ifndef __interface__SerialInterface__
#define __interface__SerialInterface__
int init_port (int baud);
int read_sensors(int first_measurement, float * avg_adc_channels, int * adc_channels, int * samples_averaged, int * LED_state);

View file

@ -1,5 +1,5 @@
//
// agent.cpp
// Agent.cpp
// interface
//
// Created by Philip Rosedale on 11/20/12.
@ -7,8 +7,8 @@
//
#include <iostream>
#include "agent.h"
#include "head.h"
#include "Agent.h"
#include "Head.h"
// Structure to hold references to other agents that are nearby

View file

@ -1,13 +1,13 @@
//
// agent.h
// Agent.h
// interface
//
// Created by Philip Rosedale on 11/20/12.
// Copyright (c) 2012 High Fidelity, Inc. All rights reserved.
//
#ifndef interface_agent_h
#define interface_agent_h
#ifndef __interface__Agent__
#define __interface__Agent__
#include "glm.hpp"
#include <sys/socket.h>
@ -15,7 +15,7 @@
#include <arpa/inet.h>
#include <fcntl.h>
#include <string.h>
#include "network.h"
#include "Network.h"
void update_agents(char * data, int length);
int add_agent(std::string * IP);

View file

@ -1,5 +1,5 @@
//
// audio.cpp
// Audio.cpp
// interface
//
// Created by Stephen Birarda on 1/22/13.
@ -9,8 +9,8 @@
#include <iostream>
#include <fstream>
#include <pthread.h>
#include "audio.h"
#include "util.h"
#include "Audio.h"
#include "Util.h"
#include "AudioSource.h"
#include "UDPSocket.h"

View file

@ -1,17 +1,17 @@
//
// audio.h
// Audio.h
// interface
//
// Created by Stephen Birarda on 1/22/13.
// Copyright (c) 2013 High Fidelity, Inc. All rights reserved.
//
#ifndef __interface__audio__
#define __interface__audio__
#ifndef __interface__Audio__
#define __interface__Audio__
#include <iostream>
#include "portaudio.h"
#include "head.h"
#include "Head.h"
#include "AudioData.h"
class Audio {

View file

@ -1,5 +1,5 @@
//
// cloud.cpp
// Cloud.cpp
// interface
//
// Created by Philip Rosedale on 11/17/12.
@ -7,8 +7,8 @@
//
#include <iostream>
#include "cloud.h"
#include "util.h"
#include "Cloud.h"
#include "Util.h"
#define COLOR_MIN 0.2f // minimum R/G/B value at 0,0,0 - also needs setting in field.cpp

View file

@ -1,15 +1,15 @@
//
// cloud.h
// Cloud.h
// interface
//
// Created by Philip Rosedale on 11/17/12.
// Copyright (c) 2012 High Fidelity, Inc. All rights reserved.
//
#ifndef interface_cloud_h
#define interface_cloud_h
#ifndef __interface__Cloud__
#define __interface__Cloud__
#include "field.h"
#include "Field.h"
class Cloud {
public:

View file

@ -1,12 +1,12 @@
//
// cube.cpp
// Cube.cpp
// interface
//
// Created by Philip on 12/31/12.
// Copyright (c) 2012 High Fidelity, Inc. All rights reserved.
//
#include "cube.h"
#include "Cube.h"
#define MAX_CUBES 250000
#define SMALLEST_CUBE 0.2

View file

@ -1,16 +1,16 @@
//
// cube.h
// Cube.h
// interface
//
// Created by Philip on 12/31/12.
// Copyright (c) 2012 High Fidelity, Inc. All rights reserved.
//
#ifndef interface_cube_h
#define interface_cube_h
#ifndef __interface__Cube__
#define __interface__Cube__
#include "glm.hpp"
#include "util.h"
#include "Util.h"
#include "world.h"
#include <GLUT/glut.h>
#include <iostream>

View file

@ -1,12 +1,12 @@
//
// field.cpp
// Field.cpp
// interface
//
// Created by Philip Rosedale on 8/23/12.
// Copyright (c) 2012 High Fidelity, Inc. All rights reserved.
//
#include "field.h"
#include "Field.h"
#include "glm.hpp"
#define FIELD_SCALE 0.00050
#define COLOR_DRIFT_RATE 0.001f // per-frame drift of particle color towards field element color

View file

@ -1,13 +1,13 @@
//
// field.h
// Field.h
// interface
//
// Created by Philip Rosedale on 8/23/12.
// Copyright (c) 2012 High Fidelity, Inc. All rights reserved.
//
#ifndef interface_field_h
#define interface_field_h
#ifndef __interface__Field__
#define __interface__Field__
#ifdef __APPLE__
#include <GLUT/glut.h>
@ -16,7 +16,7 @@
#endif
#include <iostream>
#include "world.h"
#include "util.h"
#include "Util.h"
#include "glm.hpp"
// Field is a lattice of vectors uniformly distributed FIELD_ELEMENTS^(1/3) on side

View file

@ -1,5 +1,5 @@
//
// finger.cpp
// Finger.cpp
// interface
//
// Created by Philip on 1/21/13.

View file

@ -1,16 +1,16 @@
//
// finger.h
// Finger.h
// interface
//
// Created by Philip on 1/21/13.
// Copyright (c) 2013 High Fidelity, Inc. All rights reserved.
//
#ifndef __interface__finger__
#define __interface__finger__
#ifndef __interface__Finger__
#define __interface__Finger__
#include "glm.hpp"
#include "util.h"
#include "Util.h"
#include "world.h"
#include <GLUT/glut.h>

View file

@ -1,12 +1,12 @@
//
// hand.cpp
// Hand.cpp
// interface
//
// Created by Philip Rosedale on 10/13/12.
// Copyright (c) 2012 High Fidelity, Inc. All rights reserved.
//
#include "hand.h"
#include "Hand.h"
const float DEFAULT_X = 0.0;
const float DEFAULT_Y = 0.0;

View file

@ -1,18 +1,18 @@
//
// hand.h
// Hand.h
// interface
//
// Created by Philip Rosedale on 10/13/12.
// Copyright (c) 2012 High Fidelity, Inc. All rights reserved.
//
#ifndef interface_hand_h
#define interface_hand_h
#ifndef __interface__Hand__
#define __interface__Hand__
#include "glm.hpp"
#include <iostream>
#include "util.h"
#include "field.h"
#include "Util.h"
#include "Field.h"
#include "world.h"
#include <GLUT/glut.h>

View file

@ -1,5 +1,5 @@
//
// head.cpp
// Head.cpp
// interface
//
// Created by Philip Rosedale on 9/11/12.
@ -7,8 +7,8 @@
//
#include <iostream>
#include "head.h"
#include "util.h"
#include "Head.h"
#include "Util.h"
#include "vector_angle.hpp"
float skinColor[] = {1.0, 0.84, 0.66};

View file

@ -1,16 +1,16 @@
//
// head.h
// Head.h
// interface
//
// Created by Philip Rosedale on 9/11/12.
// Copyright (c) 2012 High Fidelity, Inc. All rights reserved.
//
#ifndef interface_head_h
#define interface_head_h
#ifndef __interface__head__
#define __interface__head__
#include <iostream>
#include "field.h"
#include "Field.h"
#include "world.h"
#include <GLUT/glut.h>
#include "SerialInterface.h"

View file

@ -1,12 +1,12 @@
//
// lattice.cpp
// Lattice.cpp
// interface
//
// Created by Philip on 1/19/13.
// Copyright (c) 2013 High Fidelity, Inc. All rights reserved.
//
#include "lattice.h"
#include "Lattice.h"
Lattice::Lattice(int w, int h) {
width = w;

View file

@ -1,16 +1,16 @@
//
// lattice.h
// Lattice.h
// interface
//
// Created by Philip on 1/19/13.
// Copyright (c) 2013 High Fidelity, Inc. All rights reserved.
//
#ifndef __interface__lattice__
#define __interface__lattice__
#ifndef __interface__Lattice__
#define __interface__Lattice__
#include "glm.hpp"
#include "util.h"
#include "Util.h"
#include "world.h"
#include <GLUT/glut.h>
#include <iostream>

View file

@ -43,21 +43,21 @@
#include <opencv2/opencv.hpp>
#include "SerialInterface.h"
#include "field.h"
#include "Field.h"
#include "world.h"
#include "util.h"
#include "network.h"
#include "audio.h"
#include "head.h"
#include "hand.h"
#include "particle.h"
#include "texture.h"
#include "cloud.h"
#include "agent.h"
#include "markers.h"
#include "marker_acquisition_view.h"
#include "cube.h"
#include "lattice.h"
#include "Util.h"
#include "Network.h"
#include "Audio.h"
#include "Head.h"
#include "Hand.h"
#include "Particle.h"
#include "Texture.h"
#include "Cloud.h"
#include "Agent.h"
#include "Markers.h"
#include "MarkerAcquisitionView.h"
#include "Cube.h"
#include "Lattice.h"
#include "finger.h"
using namespace std;

View file

@ -1,12 +1,12 @@
//
// markers.cpp
// Markers.cpp
// interface
//
// Created by Kenneth Keiter <ken@kenkeiter.com> on 12/11/12.
// Copyright (c) 2012 High Fidelity, Inc. All rights reserved.
//
#include "markers.h"
#include "Markers.h"
#include <vector.h>
#include <time.h>
#include <math.h>

View file

@ -1,13 +1,13 @@
//
// markers.h
// Markers.h
// interface
//
// Created by Kenneth Keiter on 12/11/12.
// Copyright (c) 2012 High Fidelity, Inc. All rights reserved.
//
#ifndef __interface__markers__
#define __interface__markers__
#ifndef __interface__Markers__
#define __interface__Markers__
#include <iostream>
#include <vector.h>

View file

@ -1,5 +1,5 @@
//
// network.cpp
// Network.cpp
// interface
//
// Created by Philip Rosedale on 8/27/12.
@ -8,7 +8,7 @@
#include <iostream>
#include <stdio.h>
#include "network.h"
#include "Network.h"
// Implementation of optional delay behavior using a ring buffer

View file

@ -1,20 +1,20 @@
//
// network.h
// Network.h
// interface
//
// Created by Philip Rosedale on 8/27/12.
// Copyright (c) 2012 High Fidelity, Inc. All rights reserved.
//
#ifndef interface_network_h
#define interface_network_h
#ifndef __interface__Network__
#define __interface__Network__
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <fcntl.h>
#include <sys/time.h>
#include "util.h"
#include "Util.h"
// Port to use for communicating UDP with other nearby agents
const int MAX_PACKET_SIZE = 1500;

View file

@ -1,12 +1,12 @@
//
// particle.cpp
// Particle.cpp
// interface
//
// Created by Seiji Emery on 9/4/12.
// Copyright (c) 2012 High Fidelity, Inc. All rights reserved.
//
#include "particle.h"
#include "Particle.h"
#define NUM_ELEMENTS 4

View file

@ -1,16 +1,16 @@
//
// particle.h
// Particle.h
// interface
//
// Created by Seiji Emery on 9/4/12.
// Copyright (c) 2012 High Fidelity, Inc. All rights reserved.
//
#ifndef interface_particle_h
#define interface_particle_h
#ifndef __interface__Particle__
#define __interface__Particle__
#include "glm.hpp"
#include "util.h"
#include "Util.h"
#include "world.h"
#include <GLUT/glut.h>

View file

@ -1,12 +1,12 @@
//
// texture.cpp
// Texture.cpp
// interface
//
// Added by Yoz on 11/5/12.
//
// Code lifted from http://en.wikibooks.org/wiki/OpenGL_Programming/Intermediate/Textures
#include "texture.h"
#include "Texture.h"
#ifdef __APPLE__
#include <GLUT/glut.h>

View file

@ -1,13 +1,13 @@
//
// texture.h
// Texture.h
// interface
//
// Created by Yoz Work on 11/5/12.
//
//
#ifndef __interface__texture__
#define __interface__texture__
#ifndef __interface__Texture__
#define __interface__Texture__
#include <iostream>
#ifdef __APPLE__

View file

@ -1,13 +1,13 @@
//
// util.h
// Util.h
// interface
//
// Created by Philip Rosedale on 8/24/12.
// Copyright (c) 2012 High Fidelity, Inc. All rights reserved.
//
#ifndef interface_util_h
#define interface_util_h
#ifndef __interface__Util__
#define __interface__Util__
#include "glm.hpp"

View file

@ -8,8 +8,8 @@
// Simulation happens in positive cube with edge of size WORLD_SIZE
#ifndef interface_world_h
#define interface_world_h
#ifndef __interface__world__
#define __interface__world__
const float WORLD_SIZE = 10.0;
#define PI 3.14159265

View file

@ -7,25 +7,6 @@
objects = {
/* Begin PBXBuildFile section */
5325C25016AF4DBE0051A40B /* agent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C22916AF4DBE0051A40B /* agent.cpp */; };
5325C25216AF4DBE0051A40B /* cloud.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C22D16AF4DBE0051A40B /* cloud.cpp */; };
5325C25316AF4DBE0051A40B /* cube.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C22F16AF4DBE0051A40B /* cube.cpp */; };
5325C25416AF4DBE0051A40B /* field.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C23116AF4DBE0051A40B /* field.cpp */; };
5325C25516AF4DBE0051A40B /* finger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C23316AF4DBE0051A40B /* finger.cpp */; };
5325C25616AF4DBE0051A40B /* hand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C23516AF4DBE0051A40B /* hand.cpp */; };
5325C25716AF4DBE0051A40B /* head.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C23A16AF4DBE0051A40B /* head.cpp */; };
5325C25816AF4DBE0051A40B /* lattice.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C23C16AF4DBE0051A40B /* lattice.cpp */; };
5325C25A16AF4DBE0051A40B /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C24016AF4DBE0051A40B /* main.cpp */; };
5325C25B16AF4DBE0051A40B /* marker_acquisition_view.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C24116AF4DBE0051A40B /* marker_acquisition_view.cpp */; };
5325C25C16AF4DBE0051A40B /* markers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C24316AF4DBE0051A40B /* markers.cpp */; };
5325C25D16AF4DBE0051A40B /* network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C24516AF4DBE0051A40B /* network.cpp */; };
5325C25E16AF4DBE0051A40B /* particle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C24716AF4DBE0051A40B /* particle.cpp */; };
5325C25F16AF4DBE0051A40B /* SerialInterface.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C24916AF4DBE0051A40B /* SerialInterface.cpp */; };
5325C26016AF4DBE0051A40B /* texture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C24B16AF4DBE0051A40B /* texture.cpp */; };
5325C26116AF4DBE0051A40B /* util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C24D16AF4DBE0051A40B /* util.cpp */; };
5325C26416AF4E2C0051A40B /* audio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C26216AF4E2C0051A40B /* audio.cpp */; };
5328864616B87E040041A07C /* AudioSource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5328864416B87E040041A07C /* AudioSource.cpp */; };
5328864916B881710041A07C /* AudioData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5328864716B881710041A07C /* AudioData.cpp */; };
532C7AF216AF298D00B1A969 /* CVBlob.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 532C792A16AF298900B1A969 /* CVBlob.framework */; };
532C7CCC16AF301E00B1A969 /* grayson-particle.png in CopyFiles */ = {isa = PBXBuildFile; fileRef = 532C7AC316AF298D00B1A969 /* grayson-particle.png */; };
532C7CCD16AF301E00B1A969 /* int-texture256-v2.png in CopyFiles */ = {isa = PBXBuildFile; fileRef = 532C7AC416AF298D00B1A969 /* int-texture256-v2.png */; };
@ -56,7 +37,26 @@
533BF9D516B31A4700AC31BB /* jeska.raw in CopyFiles */ = {isa = PBXBuildFile; fileRef = 533BF9D316B31A3B00AC31BB /* jeska.raw */; };
535B821116B9BED400D18440 /* lodepng.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 535B820F16B9BED400D18440 /* lodepng.cpp */; };
538BA8A316B1B71E000BF99C /* love.raw in CopyFiles */ = {isa = PBXBuildFile; fileRef = 538BA8A216B1B719000BF99C /* love.raw */; };
539853CE16B765EE00B2D585 /* UDPSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 539853CC16B765EE00B2D585 /* UDPSocket.cpp */; };
53CF371716B9C039001FCB05 /* Agent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36EC16B9C039001FCB05 /* Agent.cpp */; };
53CF371816B9C039001FCB05 /* Audio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36EE16B9C039001FCB05 /* Audio.cpp */; };
53CF371916B9C039001FCB05 /* AudioData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36F016B9C039001FCB05 /* AudioData.cpp */; };
53CF371A16B9C039001FCB05 /* AudioSource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36F216B9C039001FCB05 /* AudioSource.cpp */; };
53CF371B16B9C039001FCB05 /* Cloud.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36F416B9C039001FCB05 /* Cloud.cpp */; };
53CF371C16B9C039001FCB05 /* Cube.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36F616B9C039001FCB05 /* Cube.cpp */; };
53CF371D16B9C039001FCB05 /* Field.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36F816B9C039001FCB05 /* Field.cpp */; };
53CF371E16B9C039001FCB05 /* Finger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36FA16B9C039001FCB05 /* Finger.cpp */; };
53CF371F16B9C039001FCB05 /* Hand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36FC16B9C039001FCB05 /* Hand.cpp */; };
53CF372016B9C039001FCB05 /* Head.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF370116B9C039001FCB05 /* Head.cpp */; };
53CF372116B9C039001FCB05 /* Lattice.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF370316B9C039001FCB05 /* Lattice.cpp */; };
53CF372216B9C039001FCB05 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF370516B9C039001FCB05 /* main.cpp */; };
53CF372316B9C039001FCB05 /* MarkerAcquisitionView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF370616B9C039001FCB05 /* MarkerAcquisitionView.cpp */; };
53CF372416B9C039001FCB05 /* Markers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF370816B9C039001FCB05 /* Markers.cpp */; };
53CF372516B9C039001FCB05 /* Network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF370A16B9C039001FCB05 /* Network.cpp */; };
53CF372616B9C039001FCB05 /* Particle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF370C16B9C039001FCB05 /* Particle.cpp */; };
53CF372716B9C039001FCB05 /* SerialInterface.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF370E16B9C039001FCB05 /* SerialInterface.cpp */; };
53CF372816B9C039001FCB05 /* Texture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF371016B9C039001FCB05 /* Texture.cpp */; };
53CF372916B9C039001FCB05 /* UDPSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF371216B9C039001FCB05 /* UDPSocket.cpp */; };
53CF372A16B9C039001FCB05 /* Util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF371416B9C039001FCB05 /* Util.cpp */; };
B6BDADE115F44A9D002A07DF /* CoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B6BDADDE15F444DB002A07DF /* CoreServices.framework */; };
B6BDADE215F44AA5002A07DF /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B6BDADD815F444C1002A07DF /* CoreAudio.framework */; };
B6BDADE315F44AB0002A07DF /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B6BDADDA15F444C9002A07DF /* AudioToolbox.framework */; };
@ -88,45 +88,6 @@
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
5325C22916AF4DBE0051A40B /* agent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = agent.cpp; sourceTree = "<group>"; };
5325C22A16AF4DBE0051A40B /* agent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = agent.h; sourceTree = "<group>"; };
5325C22D16AF4DBE0051A40B /* cloud.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cloud.cpp; sourceTree = "<group>"; };
5325C22E16AF4DBE0051A40B /* cloud.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cloud.h; sourceTree = "<group>"; };
5325C22F16AF4DBE0051A40B /* cube.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cube.cpp; sourceTree = "<group>"; };
5325C23016AF4DBE0051A40B /* cube.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cube.h; sourceTree = "<group>"; };
5325C23116AF4DBE0051A40B /* field.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = field.cpp; sourceTree = "<group>"; };
5325C23216AF4DBE0051A40B /* field.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = field.h; sourceTree = "<group>"; };
5325C23316AF4DBE0051A40B /* finger.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = finger.cpp; sourceTree = "<group>"; };
5325C23416AF4DBE0051A40B /* finger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = finger.h; sourceTree = "<group>"; };
5325C23516AF4DBE0051A40B /* hand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hand.cpp; sourceTree = "<group>"; };
5325C23616AF4DBE0051A40B /* hand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hand.h; sourceTree = "<group>"; };
5325C23916AF4DBE0051A40B /* head_hand.pde */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = head_hand.pde; sourceTree = "<group>"; };
5325C23A16AF4DBE0051A40B /* head.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = head.cpp; sourceTree = "<group>"; };
5325C23B16AF4DBE0051A40B /* head.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = head.h; sourceTree = "<group>"; };
5325C23C16AF4DBE0051A40B /* lattice.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lattice.cpp; sourceTree = "<group>"; };
5325C23D16AF4DBE0051A40B /* lattice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lattice.h; sourceTree = "<group>"; };
5325C24016AF4DBE0051A40B /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
5325C24116AF4DBE0051A40B /* marker_acquisition_view.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = marker_acquisition_view.cpp; sourceTree = "<group>"; };
5325C24216AF4DBE0051A40B /* marker_acquisition_view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = marker_acquisition_view.h; sourceTree = "<group>"; };
5325C24316AF4DBE0051A40B /* markers.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = markers.cpp; sourceTree = "<group>"; };
5325C24416AF4DBE0051A40B /* markers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = markers.h; sourceTree = "<group>"; };
5325C24516AF4DBE0051A40B /* network.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = network.cpp; sourceTree = "<group>"; };
5325C24616AF4DBE0051A40B /* network.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = network.h; sourceTree = "<group>"; };
5325C24716AF4DBE0051A40B /* particle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = particle.cpp; sourceTree = "<group>"; };
5325C24816AF4DBE0051A40B /* particle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = particle.h; sourceTree = "<group>"; };
5325C24916AF4DBE0051A40B /* SerialInterface.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SerialInterface.cpp; sourceTree = "<group>"; };
5325C24A16AF4DBE0051A40B /* SerialInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SerialInterface.h; sourceTree = "<group>"; };
5325C24B16AF4DBE0051A40B /* texture.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = texture.cpp; sourceTree = "<group>"; };
5325C24C16AF4DBE0051A40B /* texture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = texture.h; sourceTree = "<group>"; };
5325C24D16AF4DBE0051A40B /* util.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = util.cpp; sourceTree = "<group>"; };
5325C24E16AF4DBE0051A40B /* util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = util.h; sourceTree = "<group>"; };
5325C24F16AF4DBE0051A40B /* world.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = world.h; sourceTree = "<group>"; };
5325C26216AF4E2C0051A40B /* audio.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = audio.cpp; sourceTree = "<group>"; };
5325C26316AF4E2C0051A40B /* audio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audio.h; sourceTree = "<group>"; };
5328864416B87E040041A07C /* AudioSource.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AudioSource.cpp; sourceTree = "<group>"; };
5328864516B87E040041A07C /* AudioSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioSource.h; sourceTree = "<group>"; };
5328864716B881710041A07C /* AudioData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AudioData.cpp; sourceTree = "<group>"; };
5328864816B881710041A07C /* AudioData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioData.h; sourceTree = "<group>"; };
532C792A16AF298900B1A969 /* CVBlob.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CVBlob.framework; path = Frameworks/CVBlob.framework; sourceTree = "<group>"; };
532C7AC316AF298D00B1A969 /* grayson-particle.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "grayson-particle.png"; sourceTree = "<group>"; };
532C7AC416AF298D00B1A969 /* int-texture256-v2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "int-texture256-v2.png"; sourceTree = "<group>"; };
@ -516,8 +477,47 @@
535B820F16B9BED400D18440 /* lodepng.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lodepng.cpp; sourceTree = "<group>"; };
535B821016B9BED400D18440 /* lodepng.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lodepng.h; sourceTree = "<group>"; };
538BA8A216B1B719000BF99C /* love.raw */ = {isa = PBXFileReference; lastKnownFileType = file; path = love.raw; sourceTree = "<group>"; };
539853CC16B765EE00B2D585 /* UDPSocket.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UDPSocket.cpp; sourceTree = "<group>"; };
539853CD16B765EE00B2D585 /* UDPSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UDPSocket.h; sourceTree = "<group>"; };
53CF36EC16B9C039001FCB05 /* Agent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Agent.cpp; sourceTree = "<group>"; };
53CF36ED16B9C039001FCB05 /* Agent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Agent.h; sourceTree = "<group>"; };
53CF36EE16B9C039001FCB05 /* Audio.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Audio.cpp; sourceTree = "<group>"; };
53CF36EF16B9C039001FCB05 /* Audio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Audio.h; sourceTree = "<group>"; };
53CF36F016B9C039001FCB05 /* AudioData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AudioData.cpp; sourceTree = "<group>"; };
53CF36F116B9C039001FCB05 /* AudioData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioData.h; sourceTree = "<group>"; };
53CF36F216B9C039001FCB05 /* AudioSource.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AudioSource.cpp; sourceTree = "<group>"; };
53CF36F316B9C039001FCB05 /* AudioSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioSource.h; sourceTree = "<group>"; };
53CF36F416B9C039001FCB05 /* Cloud.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Cloud.cpp; sourceTree = "<group>"; };
53CF36F516B9C039001FCB05 /* Cloud.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Cloud.h; sourceTree = "<group>"; };
53CF36F616B9C039001FCB05 /* Cube.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Cube.cpp; sourceTree = "<group>"; };
53CF36F716B9C039001FCB05 /* Cube.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Cube.h; sourceTree = "<group>"; };
53CF36F816B9C039001FCB05 /* Field.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Field.cpp; sourceTree = "<group>"; };
53CF36F916B9C039001FCB05 /* Field.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Field.h; sourceTree = "<group>"; };
53CF36FA16B9C039001FCB05 /* Finger.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Finger.cpp; sourceTree = "<group>"; };
53CF36FB16B9C039001FCB05 /* Finger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Finger.h; sourceTree = "<group>"; };
53CF36FC16B9C039001FCB05 /* Hand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Hand.cpp; sourceTree = "<group>"; };
53CF36FD16B9C039001FCB05 /* Hand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Hand.h; sourceTree = "<group>"; };
53CF370016B9C039001FCB05 /* head_hand.pde */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = head_hand.pde; sourceTree = "<group>"; };
53CF370116B9C039001FCB05 /* Head.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Head.cpp; sourceTree = "<group>"; };
53CF370216B9C039001FCB05 /* Head.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = Head.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
53CF370316B9C039001FCB05 /* Lattice.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Lattice.cpp; sourceTree = "<group>"; };
53CF370416B9C039001FCB05 /* Lattice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Lattice.h; sourceTree = "<group>"; };
53CF370516B9C039001FCB05 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
53CF370616B9C039001FCB05 /* MarkerAcquisitionView.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MarkerAcquisitionView.cpp; sourceTree = "<group>"; };
53CF370716B9C039001FCB05 /* MarkerAcquisitionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MarkerAcquisitionView.h; sourceTree = "<group>"; };
53CF370816B9C039001FCB05 /* Markers.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Markers.cpp; sourceTree = "<group>"; };
53CF370916B9C039001FCB05 /* Markers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Markers.h; sourceTree = "<group>"; };
53CF370A16B9C039001FCB05 /* Network.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Network.cpp; sourceTree = "<group>"; };
53CF370B16B9C039001FCB05 /* Network.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = Network.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
53CF370C16B9C039001FCB05 /* Particle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Particle.cpp; sourceTree = "<group>"; };
53CF370D16B9C039001FCB05 /* Particle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = Particle.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
53CF370E16B9C039001FCB05 /* SerialInterface.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SerialInterface.cpp; sourceTree = "<group>"; };
53CF370F16B9C039001FCB05 /* SerialInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = SerialInterface.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
53CF371016B9C039001FCB05 /* Texture.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Texture.cpp; sourceTree = "<group>"; };
53CF371116B9C039001FCB05 /* Texture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Texture.h; sourceTree = "<group>"; };
53CF371216B9C039001FCB05 /* UDPSocket.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UDPSocket.cpp; sourceTree = "<group>"; };
53CF371316B9C039001FCB05 /* UDPSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UDPSocket.h; sourceTree = "<group>"; };
53CF371416B9C039001FCB05 /* Util.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Util.cpp; sourceTree = "<group>"; };
53CF371516B9C039001FCB05 /* Util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = Util.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
53CF371616B9C039001FCB05 /* world.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = world.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
8DD76F6C0486A84900D96B5E /* interface */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = interface; sourceTree = BUILT_PRODUCTS_DIR; };
B6BDADD815F444C1002A07DF /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
B6BDADDA15F444C9002A07DF /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
@ -600,67 +600,51 @@
5325C22816AF4DBE0051A40B /* Source */ = {
isa = PBXGroup;
children = (
5325C22916AF4DBE0051A40B /* agent.cpp */,
5325C22A16AF4DBE0051A40B /* agent.h */,
5325C26216AF4E2C0051A40B /* audio.cpp */,
5325C26316AF4E2C0051A40B /* audio.h */,
5325C22D16AF4DBE0051A40B /* cloud.cpp */,
5325C22E16AF4DBE0051A40B /* cloud.h */,
5325C22F16AF4DBE0051A40B /* cube.cpp */,
5325C23016AF4DBE0051A40B /* cube.h */,
5325C23116AF4DBE0051A40B /* field.cpp */,
5325C23216AF4DBE0051A40B /* field.h */,
5325C23316AF4DBE0051A40B /* finger.cpp */,
5325C23416AF4DBE0051A40B /* finger.h */,
5325C23516AF4DBE0051A40B /* hand.cpp */,
5325C23616AF4DBE0051A40B /* hand.h */,
5325C23716AF4DBE0051A40B /* hardware */,
5325C23A16AF4DBE0051A40B /* head.cpp */,
5325C23B16AF4DBE0051A40B /* head.h */,
5325C23C16AF4DBE0051A40B /* lattice.cpp */,
5325C23D16AF4DBE0051A40B /* lattice.h */,
5325C24016AF4DBE0051A40B /* main.cpp */,
5325C24116AF4DBE0051A40B /* marker_acquisition_view.cpp */,
5325C24216AF4DBE0051A40B /* marker_acquisition_view.h */,
5325C24316AF4DBE0051A40B /* markers.cpp */,
5325C24416AF4DBE0051A40B /* markers.h */,
5325C24516AF4DBE0051A40B /* network.cpp */,
5325C24616AF4DBE0051A40B /* network.h */,
5325C24716AF4DBE0051A40B /* particle.cpp */,
5325C24816AF4DBE0051A40B /* particle.h */,
5325C24916AF4DBE0051A40B /* SerialInterface.cpp */,
5325C24A16AF4DBE0051A40B /* SerialInterface.h */,
5325C24B16AF4DBE0051A40B /* texture.cpp */,
5325C24C16AF4DBE0051A40B /* texture.h */,
5325C24D16AF4DBE0051A40B /* util.cpp */,
5325C24E16AF4DBE0051A40B /* util.h */,
5325C24F16AF4DBE0051A40B /* world.h */,
539853CC16B765EE00B2D585 /* UDPSocket.cpp */,
539853CD16B765EE00B2D585 /* UDPSocket.h */,
5328864416B87E040041A07C /* AudioSource.cpp */,
5328864516B87E040041A07C /* AudioSource.h */,
5328864716B881710041A07C /* AudioData.cpp */,
5328864816B881710041A07C /* AudioData.h */,
53CF36EC16B9C039001FCB05 /* Agent.cpp */,
53CF36ED16B9C039001FCB05 /* Agent.h */,
53CF36EE16B9C039001FCB05 /* Audio.cpp */,
53CF36EF16B9C039001FCB05 /* Audio.h */,
53CF36F016B9C039001FCB05 /* AudioData.cpp */,
53CF36F116B9C039001FCB05 /* AudioData.h */,
53CF36F216B9C039001FCB05 /* AudioSource.cpp */,
53CF36F316B9C039001FCB05 /* AudioSource.h */,
53CF36F416B9C039001FCB05 /* Cloud.cpp */,
53CF36F516B9C039001FCB05 /* Cloud.h */,
53CF36F616B9C039001FCB05 /* Cube.cpp */,
53CF36F716B9C039001FCB05 /* Cube.h */,
53CF36F816B9C039001FCB05 /* Field.cpp */,
53CF36F916B9C039001FCB05 /* Field.h */,
53CF36FA16B9C039001FCB05 /* Finger.cpp */,
53CF36FB16B9C039001FCB05 /* Finger.h */,
53CF36FC16B9C039001FCB05 /* Hand.cpp */,
53CF36FD16B9C039001FCB05 /* Hand.h */,
53CF36FE16B9C039001FCB05 /* hardware */,
53CF370116B9C039001FCB05 /* Head.cpp */,
53CF370216B9C039001FCB05 /* Head.h */,
53CF370316B9C039001FCB05 /* Lattice.cpp */,
53CF370416B9C039001FCB05 /* Lattice.h */,
53CF370516B9C039001FCB05 /* main.cpp */,
53CF370616B9C039001FCB05 /* MarkerAcquisitionView.cpp */,
53CF370716B9C039001FCB05 /* MarkerAcquisitionView.h */,
53CF370816B9C039001FCB05 /* Markers.cpp */,
53CF370916B9C039001FCB05 /* Markers.h */,
53CF370A16B9C039001FCB05 /* Network.cpp */,
53CF370B16B9C039001FCB05 /* Network.h */,
53CF370C16B9C039001FCB05 /* Particle.cpp */,
53CF370D16B9C039001FCB05 /* Particle.h */,
53CF370E16B9C039001FCB05 /* SerialInterface.cpp */,
53CF370F16B9C039001FCB05 /* SerialInterface.h */,
53CF371016B9C039001FCB05 /* Texture.cpp */,
53CF371116B9C039001FCB05 /* Texture.h */,
53CF371216B9C039001FCB05 /* UDPSocket.cpp */,
53CF371316B9C039001FCB05 /* UDPSocket.h */,
53CF371416B9C039001FCB05 /* Util.cpp */,
53CF371516B9C039001FCB05 /* Util.h */,
53CF371616B9C039001FCB05 /* world.h */,
);
path = Source;
sourceTree = "<group>";
};
5325C23716AF4DBE0051A40B /* hardware */ = {
isa = PBXGroup;
children = (
5325C23816AF4DBE0051A40B /* head_hand */,
);
path = hardware;
sourceTree = "<group>";
};
5325C23816AF4DBE0051A40B /* head_hand */ = {
isa = PBXGroup;
children = (
5325C23916AF4DBE0051A40B /* head_hand.pde */,
);
path = head_hand;
sourceTree = "<group>";
};
532C7AC116AF298D00B1A969 /* Resources */ = {
isa = PBXGroup;
children = (
@ -1319,6 +1303,22 @@
path = audio;
sourceTree = "<group>";
};
53CF36FE16B9C039001FCB05 /* hardware */ = {
isa = PBXGroup;
children = (
53CF36FF16B9C039001FCB05 /* head_hand */,
);
path = hardware;
sourceTree = "<group>";
};
53CF36FF16B9C039001FCB05 /* head_hand */ = {
isa = PBXGroup;
children = (
53CF370016B9C039001FCB05 /* head_hand.pde */,
);
path = head_hand;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
@ -1373,27 +1373,27 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
5325C25016AF4DBE0051A40B /* agent.cpp in Sources */,
5325C25216AF4DBE0051A40B /* cloud.cpp in Sources */,
5325C25316AF4DBE0051A40B /* cube.cpp in Sources */,
5325C25416AF4DBE0051A40B /* field.cpp in Sources */,
5325C25516AF4DBE0051A40B /* finger.cpp in Sources */,
5325C25616AF4DBE0051A40B /* hand.cpp in Sources */,
5325C25716AF4DBE0051A40B /* head.cpp in Sources */,
5325C25816AF4DBE0051A40B /* lattice.cpp in Sources */,
5325C25A16AF4DBE0051A40B /* main.cpp in Sources */,
5325C25B16AF4DBE0051A40B /* marker_acquisition_view.cpp in Sources */,
5325C25C16AF4DBE0051A40B /* markers.cpp in Sources */,
5325C25D16AF4DBE0051A40B /* network.cpp in Sources */,
5325C25E16AF4DBE0051A40B /* particle.cpp in Sources */,
5325C25F16AF4DBE0051A40B /* SerialInterface.cpp in Sources */,
5325C26016AF4DBE0051A40B /* texture.cpp in Sources */,
5325C26116AF4DBE0051A40B /* util.cpp in Sources */,
5325C26416AF4E2C0051A40B /* audio.cpp in Sources */,
539853CE16B765EE00B2D585 /* UDPSocket.cpp in Sources */,
5328864616B87E040041A07C /* AudioSource.cpp in Sources */,
5328864916B881710041A07C /* AudioData.cpp in Sources */,
535B821116B9BED400D18440 /* lodepng.cpp in Sources */,
53CF371716B9C039001FCB05 /* Agent.cpp in Sources */,
53CF371816B9C039001FCB05 /* Audio.cpp in Sources */,
53CF371916B9C039001FCB05 /* AudioData.cpp in Sources */,
53CF371A16B9C039001FCB05 /* AudioSource.cpp in Sources */,
53CF371B16B9C039001FCB05 /* Cloud.cpp in Sources */,
53CF371C16B9C039001FCB05 /* Cube.cpp in Sources */,
53CF371D16B9C039001FCB05 /* Field.cpp in Sources */,
53CF371E16B9C039001FCB05 /* Finger.cpp in Sources */,
53CF371F16B9C039001FCB05 /* Hand.cpp in Sources */,
53CF372016B9C039001FCB05 /* Head.cpp in Sources */,
53CF372116B9C039001FCB05 /* Lattice.cpp in Sources */,
53CF372216B9C039001FCB05 /* main.cpp in Sources */,
53CF372316B9C039001FCB05 /* MarkerAcquisitionView.cpp in Sources */,
53CF372416B9C039001FCB05 /* Markers.cpp in Sources */,
53CF372516B9C039001FCB05 /* Network.cpp in Sources */,
53CF372616B9C039001FCB05 /* Particle.cpp in Sources */,
53CF372716B9C039001FCB05 /* SerialInterface.cpp in Sources */,
53CF372816B9C039001FCB05 /* Texture.cpp in Sources */,
53CF372916B9C039001FCB05 /* UDPSocket.cpp in Sources */,
53CF372A16B9C039001FCB05 /* Util.cpp in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};