ofDocsexamples android androidAdvanced3DExample src Swarm.h
/*
 *  Swarm.h
 *  advanced3dExample
 *
 *  Created by Elliot Woods on 19/01/2011.
 *  Copyright 2011 Kimchi and Chips. All rights reserved.
 *
 */

#include "ofMain.h"

#define SPRING_CONSTANT 0.5

class Swarm : public ofNode
{
public:
	Swarm();
	void	init(int _nParticles, float positionDispersion, float velocityDispersion);
	
	
	void	customDraw();
	
	//light
	ofLight		light;
	
protected:
	
	//we call this update function ourselves
	//at the beginning of customDraw
	void	update();
	
	//useful variables
	int			nParticles;
	float		timeLastUpdate;
	
	//objects
	glm::vec3		*positions;
	glm::vec3		*velocities;
	ofColor		*colors;	
	
};