Home
last modified time | relevance | path

Searched refs:Planet (Results 1 – 25 of 2100) sorted by relevance

12345678910>>...84

/dports/astro/marble/marble-21.12.3/src/lib/marble/
H A DPlanet.cpp50 Planet::Planet() in Planet() function in Marble::Planet
56 Planet::Planet( const QString& id ) in Planet() function in Marble::Planet
63 Planet::Planet( const Planet& other ) in Planet() function in Marble::Planet
72 Planet::~Planet() in ~Planet()
80 qreal Planet::M_0() const in M_0()
84 qreal Planet::M_1() const in M_1()
90 qreal Planet::C_1() const in C_1()
94 qreal Planet::C_2() const in C_2()
98 qreal Planet::C_3() const in C_3()
116 qreal Planet::Pi() const in Pi()
[all …]
/dports/games/freeorion/freeorion-0.4.10.2/universe/
H A DPlanet.cpp51 Planet::Planet() : in Planet() function in Planet
61 Planet::Planet(PlanetType type, PlanetSize size) : in Planet() function in Planet
72 Planet::Init(); in Planet()
81 Planet* Planet::Clone(int empire_id) const { in Clone()
87 Planet* retval = new Planet(); in Clone()
223 void Planet::Init() { in Init()
417 float Planet::AxialTilt() const in AxialTilt()
596 void Planet::Reset() { in Reset()
627 void Planet::Depopulate() { in Depopulate()
809 void Planet::ClearGiveToEmpire() in ClearGiveToEmpire()
[all …]
/dports/games/endless-sky/endless-sky-0.9.14/source/
H A DPlanet.cpp236 bool Planet::IsValid() const in IsValid()
245 const string &Planet::Name() const in Name()
304 const string &Planet::Noun() const in Noun()
320 bool Planet::HasSpaceport() const in HasSpaceport()
337 bool Planet::IsInhabited() const in IsInhabited()
345 bool Planet::HasShipyard() const in HasShipyard()
365 bool Planet::HasOutfitter() const in HasOutfitter()
411 double Planet::Security() const in Security()
461 bool Planet::IsWormhole() const in IsWormhole()
540 bool Planet::CanLand() const in CanLand()
[all …]
/dports/games/qonk/qonk-0.3.1/src/
H A Dplanets.h16 class Planet {
25 Planet* mother;
32 Planet(); // make a planet
34 void makeMoon( Planet* );
48 double distance( Planet* planet );
91 Planet* getRandomPlanet();
92 Planet* getRandomEnemyPlanet( Player* );
93 Planet* getRandomFriendlyPlanet( Player* );
94 Planet* getRandomNearbyPlanet( Planet* );
100 Planet *planet;
[all …]
H A Dplanets.cpp22 Planet::Planet() : nearestPlanet(false), owner(), mother() in Planet() function in Planet
42 Planet::makeMoon( Planet* mother ) { in makeMoon()
210 Planet::distance( Planet* planet ) { in distance()
316 Planet *p = new Planet(); in addMoons()
335 Planet*
349 Planet*
408 Planet*
417 Planet*
422 Planet*
425 Planet* result; in getRandomNearbyPlanet()
[all …]
/dports/games/konquest/konquest-21.12.3/src/
H A Dplanet.cc23 Planet::Planet( const QString &planetName, Sector *sector, Player *initialOwner, in Planet() function in Planet
36 connect(&m_homeFleet, &DefenseFleet::update, this, &Planet::update); in Planet()
40 Planet::~Planet() { m_sector->removePlanet(); } in ~Planet()
43 Planet *
44 Planet::createPlayerPlanet( Sector *sector, Player *initialOwner, in createPlayerPlanet()
47 return new Planet( planetName, sector, initialOwner, 10, 0.400 ); in createPlayerPlanet()
51 Planet *
52 Planet::createNeutralPlanet( Sector *sector, Player *initialOwner, in createNeutralPlanet()
58 return new Planet( planetName, sector, in createNeutralPlanet()
63 Planet::conquer( AttackFleet *conqueringFleet ) in conquer()
[all …]
/dports/games/freeorion/freeorion-0.4.10.2/default/scripting/
H A Dmonster_fleets.inf11 Planet
27 Planet
45 Planet
64 Planet
79 Planet
94 Planet
110 Planet
126 Planet
142 Planet
157 Planet
[all …]
/dports/games/freeorion/freeorion-0.4.10.2/default/scripting/species/common/
H A Dpopulation.macros15 Planet
68 Planet
77 Planet
86 Planet
95 Planet
124 Planet
131 Planet
146 Planet
158 Planet
172 Planet
[all …]
/dports/games/emptyepsilon/EmptyEpsilon-EE-2021.06.23/src/spaceObjects/
H A Dplanet.cpp108 REGISTER_SCRIPT_SUBCLASS(Planet, SpaceObject) in REGISTER_SCRIPT_SUBCLASS() argument
123 REGISTER_MULTIPLAYER_CLASS(Planet, "Planet");
124 Planet::Planet() in Planet() function in Planet
180 float Planet::getPlanetRadius() in getPlanetRadius()
185 float Planet::getCollisionSize() in getCollisionSize()
190 void Planet::setPlanetRadius(float size) in setPlanetRadius()
221 void Planet::update(float delta) in update()
250 void Planet::draw3D() in draw3D()
288 void Planet::draw3DTransparent() in draw3DTransparent()
385 void Planet::updateCollisionSize() in updateCollisionSize()
[all …]
/dports/lang/gcc6-aux/gcc-6-20180516/libgo/go/sort/
H A Dexample_keys_test.go17 type Planet struct { struct
24 type By func(p1, p2 *Planet) bool
27 func (by By) Sort(planets []Planet) { argument
37 planets []Planet
38 by func(p1, p2 *Planet) bool // Closure used in the Less method.
56 var planets = []Planet{
66 name := func(p1, p2 *Planet) bool {
69 mass := func(p1, p2 *Planet) bool {
72 distance := func(p1, p2 *Planet) bool {
75 decreasingDistance := func(p1, p2 *Planet) bool {
/dports/lang/gcc12-devel/gcc-12-20211205/libgo/go/sort/
H A Dexample_keys_test.go17 type Planet struct { struct
24 type By func(p1, p2 *Planet) bool
27 func (by By) Sort(planets []Planet) { argument
37 planets []Planet
38 by func(p1, p2 *Planet) bool // Closure used in the Less method.
56 var planets = []Planet{
66 name := func(p1, p2 *Planet) bool {
69 mass := func(p1, p2 *Planet) bool {
72 distance := func(p1, p2 *Planet) bool {
75 decreasingDistance := func(p1, p2 *Planet) bool {
/dports/lang/gcc8/gcc-8.5.0/libgo/go/sort/
H A Dexample_keys_test.go17 type Planet struct { struct
24 type By func(p1, p2 *Planet) bool
27 func (by By) Sort(planets []Planet) { argument
37 planets []Planet
38 by func(p1, p2 *Planet) bool // Closure used in the Less method.
56 var planets = []Planet{
66 name := func(p1, p2 *Planet) bool {
69 mass := func(p1, p2 *Planet) bool {
72 distance := func(p1, p2 *Planet) bool {
75 decreasingDistance := func(p1, p2 *Planet) bool {
/dports/lang/gcc48/gcc-4.8.5/libgo/go/sort/
H A Dexample_keys_test.go17 type Planet struct { struct
24 type By func(p1, p2 *Planet) bool
27 func (by By) Sort(planets []Planet) { argument
37 planets []Planet
38 by func(p1, p2 *Planet) bool // Closure used in the Less method.
56 var planets = []Planet{
66 name := func(p1, p2 *Planet) bool {
69 mass := func(p1, p2 *Planet) bool {
72 distance := func(p1, p2 *Planet) bool {
75 decreasingDistance := func(p1, p2 *Planet) bool {
/dports/net/google-cloud-sdk-app-engine-go/platform/google_appengine/goroot-1.9/src/sort/
H A Dexample_keys_test.go17 type Planet struct { struct
24 type By func(p1, p2 *Planet) bool
27 func (by By) Sort(planets []Planet) { argument
37 planets []Planet
38 by func(p1, p2 *Planet) bool // Closure used in the Less method.
56 var planets = []Planet{
66 name := func(p1, p2 *Planet) bool {
69 mass := func(p1, p2 *Planet) bool {
72 distance := func(p1, p2 *Planet) bool {
75 decreasingDistance := func(p1, p2 *Planet) bool {
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libgo/go/sort/
H A Dexample_keys_test.go17 type Planet struct { struct
24 type By func(p1, p2 *Planet) bool
27 func (by By) Sort(planets []Planet) { argument
37 planets []Planet
38 by func(p1, p2 *Planet) bool // Closure used in the Less method.
56 var planets = []Planet{
66 name := func(p1, p2 *Planet) bool {
69 mass := func(p1, p2 *Planet) bool {
72 distance := func(p1, p2 *Planet) bool {
75 decreasingDistance := func(p1, p2 *Planet) bool {
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/sort/
H A Dexample_keys_test.go17 type Planet struct { struct
24 type By func(p1, p2 *Planet) bool
27 func (by By) Sort(planets []Planet) { argument
37 planets []Planet
38 by func(p1, p2 *Planet) bool // Closure used in the Less method.
56 var planets = []Planet{
66 name := func(p1, p2 *Planet) bool {
69 mass := func(p1, p2 *Planet) bool {
72 distance := func(p1, p2 *Planet) bool {
75 decreasingDistance := func(p1, p2 *Planet) bool {
/dports/lang/gcc11/gcc-11.2.0/libgo/go/sort/
H A Dexample_keys_test.go17 type Planet struct { struct
24 type By func(p1, p2 *Planet) bool
27 func (by By) Sort(planets []Planet) { argument
37 planets []Planet
38 by func(p1, p2 *Planet) bool // Closure used in the Less method.
56 var planets = []Planet{
66 name := func(p1, p2 *Planet) bool {
69 mass := func(p1, p2 *Planet) bool {
72 distance := func(p1, p2 *Planet) bool {
75 decreasingDistance := func(p1, p2 *Planet) bool {
/dports/lang/gcc10/gcc-10.3.0/libgo/go/sort/
H A Dexample_keys_test.go17 type Planet struct { struct
24 type By func(p1, p2 *Planet) bool
27 func (by By) Sort(planets []Planet) { argument
37 planets []Planet
38 by func(p1, p2 *Planet) bool // Closure used in the Less method.
56 var planets = []Planet{
66 name := func(p1, p2 *Planet) bool {
69 mass := func(p1, p2 *Planet) bool {
72 distance := func(p1, p2 *Planet) bool {
75 decreasingDistance := func(p1, p2 *Planet) bool {
/dports/lang/gcc11-devel/gcc-11-20211009/libgo/go/sort/
H A Dexample_keys_test.go17 type Planet struct { struct
24 type By func(p1, p2 *Planet) bool
27 func (by By) Sort(planets []Planet) { argument
37 planets []Planet
38 by func(p1, p2 *Planet) bool // Closure used in the Less method.
56 var planets = []Planet{
66 name := func(p1, p2 *Planet) bool {
69 mass := func(p1, p2 *Planet) bool {
72 distance := func(p1, p2 *Planet) bool {
75 decreasingDistance := func(p1, p2 *Planet) bool {
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/go4.org/sort/
H A Dexample_keys_test.go17 type Planet struct { struct
24 type By func(p1, p2 *Planet) bool
27 func (by By) Sort(planets []Planet) { argument
37 planets []Planet
38 by func(p1, p2 *Planet) bool // Closure used in the Less method.
56 var planets = []Planet{
66 name := func(p1, p2 *Planet) bool {
69 mass := func(p1, p2 *Planet) bool {
72 distance := func(p1, p2 *Planet) bool {
75 decreasingDistance := func(p1, p2 *Planet) bool {
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/libgo/go/sort/
H A Dexample_keys_test.go17 type Planet struct { struct
24 type By func(p1, p2 *Planet) bool
27 func (by By) Sort(planets []Planet) { argument
37 planets []Planet
38 by func(p1, p2 *Planet) bool // Closure used in the Less method.
56 var planets = []Planet{
66 name := func(p1, p2 *Planet) bool {
69 mass := func(p1, p2 *Planet) bool {
72 distance := func(p1, p2 *Planet) bool {
75 decreasingDistance := func(p1, p2 *Planet) bool {
/dports/lang/gcc9-devel/gcc-9-20211007/libgo/go/sort/
H A Dexample_keys_test.go17 type Planet struct { struct
24 type By func(p1, p2 *Planet) bool
27 func (by By) Sort(planets []Planet) { argument
37 planets []Planet
38 by func(p1, p2 *Planet) bool // Closure used in the Less method.
56 var planets = []Planet{
66 name := func(p1, p2 *Planet) bool {
69 mass := func(p1, p2 *Planet) bool {
72 distance := func(p1, p2 *Planet) bool {
75 decreasingDistance := func(p1, p2 *Planet) bool {
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/libgo/go/sort/
H A Dexample_keys_test.go17 type Planet struct { struct
24 type By func(p1, p2 *Planet) bool
27 func (by By) Sort(planets []Planet) { argument
37 planets []Planet
38 by func(p1, p2 *Planet) bool // Closure used in the Less method.
56 var planets = []Planet{
66 name := func(p1, p2 *Planet) bool {
69 mass := func(p1, p2 *Planet) bool {
72 distance := func(p1, p2 *Planet) bool {
75 decreasingDistance := func(p1, p2 *Planet) bool {
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/libgo/go/sort/
H A Dexample_keys_test.go17 type Planet struct { struct
24 type By func(p1, p2 *Planet) bool
27 func (by By) Sort(planets []Planet) { argument
37 planets []Planet
38 by func(p1, p2 *Planet) bool // Closure used in the Less method.
56 var planets = []Planet{
66 name := func(p1, p2 *Planet) bool {
69 mass := func(p1, p2 *Planet) bool {
72 distance := func(p1, p2 *Planet) bool {
75 decreasingDistance := func(p1, p2 *Planet) bool {
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libgo/go/sort/
H A Dexample_keys_test.go17 type Planet struct { struct
24 type By func(p1, p2 *Planet) bool
27 func (by By) Sort(planets []Planet) { argument
37 planets []Planet
38 by func(p1, p2 *Planet) bool // Closure used in the Less method.
56 var planets = []Planet{
66 name := func(p1, p2 *Planet) bool {
69 mass := func(p1, p2 *Planet) bool {
72 distance := func(p1, p2 *Planet) bool {
75 decreasingDistance := func(p1, p2 *Planet) bool {

12345678910>>...84