Page MenuHomec4science

planet.hh
No OneTemporary

File Metadata

Created
Sat, Aug 24, 02:19

planet.hh

class Planet {
public:
Planet(); // constructor
~Planet(); // destructor
void move(double delta[3]); // a method
private:
double coords[3]; // a member
};

Event Timeline