skizzle/include/constants.hpp

28 lines
619 B
C++
Raw Normal View History

#ifndef __PTF_CONSTANTS_HPP__
#define __PTF_CONSTANTS_HPP__
#include <SFML/System.hpp>
namespace Constants {
/**
* Constante d'attraction. Utilisée dans la formule
* pour le calcul de l'attraction coulombienne entre
* deux objets
*/
static const float ATTRACTION = 2000000;
/**
* Correction positionnelle : pourcentage de correction
* et seuil de correction
*/
2016-04-08 13:53:30 +00:00
static const float CORRECTION_PERCENTAGE = .5f;
static const float CORRECTION_SLOP = .02f;
/**
* Taille de la grille des blocs en pixels
*/
static const float GRID = 32;
}
#endif