Physics-Simulator
v1.4.0-beta.2
|
This file holds all of the references to variables declared in the Global namespace. See Main.cpp for more details. More...
Go to the source code of this file.
Namespaces | |
cannonballs | |
global | |
global::physics | |
global::equations | |
Typedefs | |
typedef unsigned char | uchar |
typedef unsigned int | uint |
typedef unsigned long | ulong |
Enumerations | |
enum | Collisions { CollideElastic = 0, CollideInelastic, CollidePerfectInelastic, CollideNone } |
enum | Tools { ToolRope = 0, ToolFire, ToolDrop, ToolDele, ToolDrag, ToolInfo } |
Variables | |
const bool | global::blnDebugMode = false |
clsConfig | global::config |
const float | global::physics::kMeterPixelRatio = 10 |
const float | global::physics::kBallDensity = 7850 |
const float | global::physics::kGravity = -9.81 |
const float | global::physics::kDragCofficient = 0.47 |
const float | global::physics::kKineticFriction = 0.36 |
const float | global::physics::kDensityAir = 1.2041 |
const float | global::physics::kMinVelocity = 0.0 |
const float | global::physics::kCoefficientRestitution = 0.76 |
uchar | global::physics::collisionmethod = CollideInelastic |
const double | global::physics::kAirDynViscosity = 2.22043 * pow(10,-5) |
const float | global::equations::kVelocityScalar = 0.1 |
const float | global::equations::kTimeSizeRatio = 0.025 |
const float | global::equations::kMassAlphaRatio = 41.166 |
const float | global::equations::kMassAlphaOffset = 130.84 |
const float | global::equations::kAlphaMinimum = 50 |
This file holds all of the references to variables declared in the Global namespace. See Main.cpp for more details.
typedef unsigned char uchar |
Rename unsigned char to uchar because I'm lazy.
typedef unsigned int uint |
Rename unsigned int to uint because I'm lazy.
typedef unsigned long ulong |
Rename unsigned long to ulong because I'm lazy.
enum Collisions |
The method of the collision (I just wanted to play around with some options.)
enum Tools |
The current tool being used in the toolbox.