physics_constants.h 159 Bytes
#ifndef __PHYSICS_CONSTANTS_H__
#define __PHYSICS_CONSTANTS_H__

// physics constants
const double SPRING_CONST = 8000;
const double DRAG_CONST = 1000;

#endif