Page MenuHomec4science

planet.cpp
No OneTemporary

File Metadata

Created
Sat, Aug 24, 02:13

planet.cpp

#include "planet.hh"
void Planet::move(double delta[3]) {
// DO SOME CODE
}
Planet::Planet() {
coords[0] = 0.;
coords[1] = 1.;
coords[2] = 2.;
}
Planet::~Planet() {}
int main() {
// ...
}

Event Timeline