3rdparty/licenseReport: Add seperate LGPL checks
[haiku.git] / src / add-ons / screen_savers / gravity / GravitySource.h
blob057a397a2ba088820745852e7655e9f08e4225a2
1 /*
2 * Copyright 2012-2013 Tri-Edge AI <triedgeai@gmail.com>
3 * Copyright 2014 Haiku, Inc. All rights reserved.
5 * Distributed under the terms of the MIT license.
7 * Authors:
8 * Tri-Edge AI
9 * John Scipione, jscipione@gmail.com
12 #ifndef GRAVITY_SOURCE_H
13 #define GRAVITY_SOURCE_H
16 struct GravitySource {
17 float x;
18 float y;
19 float z;
20 float r;
22 float vx;
23 float vy;
24 float vz;
26 float tx;
27 float ty;
28 float tz;
30 GravitySource();
32 void Tick();
36 #endif // GRAVITY_SOURCE_H