summaryrefslogtreecommitdiff
path: root/forme.cpp
blob: f6a94159af1bc526e6c9ad1c3e872dcd153b6cad (plain)
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
/********
 * Fichier: forme.cpp
 * Auteurs: C.-A. Brunet
 * Date: 08 janvier 2018 (creation)
 * Description: Implementation des methodes des classes decrites dans
 *    forme.h. Les methodes de la classe Forme ne doivent pas etre
 *    modifiees. Ce fichier fait partie de la distribution de Graphicus.
********/

#include "forme.h"

Forme::Forme(int x1, int y1) {
  ancrage.x = x1;
  ancrage.y = y1;
}

Forme::~Forme() {
}

void Forme::translater(int deltaX, int deltaY) {
   ancrage.x += deltaX;
   ancrage.y += deltaY;
}

Coordonnee Forme::getAncrage() {
   return ancrage;
}

void Forme::setAncrage(Coordonnee c) {
   ancrage = c;
}