// constructor
Shape::Shape(int newx, int newy) {
moveTo(newx, newy);
}
// accessors for x & y
int Shape::getX() { return x; }
int Shape::getY() { return y; }
void Shape::setX(int newx) { x = newx; }
void Shape::setY(int newy) { y = newy; }
// move the shape position
void Shape::moveTo(int newx, int newy) {
setX(newx);
setY(newy);
}
void Shape::rMoveTo(int deltax, int deltay) {
moveTo(getX() + deltax, getY() + deltay);
}
# C'est pas plutot
Posté par rlksirocco . Évalué à 4.
// constructor
Shape::Shape(int newx, int newy) {
moveTo(newx, newy);
}
// accessors for x & y
int Shape::getX() { return x; }
int Shape::getY() { return y; }
void Shape::setX(int newx) { x = newx; }
void Shape::setY(int newy) { y = newy; }
// move the shape position
void Shape::moveTo(int newx, int newy) {
setX(newx);
setY(newy);
}
void Shape::rMoveTo(int deltax, int deltay) {
moveTo(getX() + deltax, getY() + deltay);
}
// abstract draw method
void Shape::draw() {
}
# My diarhée...
Posté par Snarky . Évalué à 9.
[^] # Re: My diarhée...
Posté par NoKy . Évalué à -9.
[^] # Re: My diarhée...
Posté par chl (site web personnel) . Évalué à 0.
# J'ai loupé quoi...?
Posté par kowalsky . Évalué à 0.
[^] # Re: J'ai loupé quoi...?
Posté par Fabien Engels . Évalué à 2.
[^] # Re: J'ai loupé quoi...?
Posté par NoKy . Évalué à -3.
Suivre le flux des commentaires
Note : les commentaires appartiennent à celles et ceux qui les ont postés. Nous n’en sommes pas responsables.