-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlanet.h
executable file
·68 lines (58 loc) · 1.35 KB
/
Planet.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
* Planet.h
* Solar
*
* Created by Michael Robinson on 29/11/2010.
* Copyright 2010 . All rights reserved.
*
*/
#import <string>
#import "Colour.h"
using std::string;
class Planet {
private :
class Orbit {
public :
double aphelion;
double perihelion;
float period;
float inclination;
Orbit();
Orbit(const Orbit* newOrbit);
double getAverageDistance() const;
double getAphelion() const;
double setAphelion(double newAphelion);
double getPerihelion() const;
double setPerihelion(double newPerihelion);
float getPeriod() const;
float setPeriod(float newPeriod);
float getInclination() const;
float setInclination(float newInclination);
};
string name;
Orbit *orbit;
float radius;
float period;
float axialTilt;
Colour *colour;
int satellites;
public :
Planet();
~Planet();
Planet(const Planet& copyMe);
Planet& operator=(const Planet& assignFromMe);
string getName() const;
string setName(string newName);
Orbit* getOrbit() const;
Orbit* setOrbit(Orbit *newOrbit);
float getRadius() const;
float setRadius(float newRadius);
float getPeriod() const;
float setPeriod(float newPeriod);
float getAxialTilt() const;
float setAxialTilt(float newAxialTilt);
Colour* getColour() const;
Colour* setColour(Colour *newColour);
int getNumSatellites() const;
int setNumSatellites(int newNumSatellites);
};