blob: bc7a0e5276286573d8349b0c386077c30400a8cc (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/********
* Fichier: canevas.cpp
* Auteurs: C.-A. Brunet
* Date: 08 janvier 2018 (creation)
* Description: Implementation des methodes des classes decrites dans
* canevas.h. Ce fichier fait partie de la distribution de Graphicus.
********/
#include "canevas.h"
Canevas::Canevas() {
}
Canevas::~Canevas() {
}
bool Canevas::reinitialiser() {
return true;
}
bool Canevas::activerCouche(int index) {
return true;
}
bool Canevas::cacherCouche(int index) {
return true;
}
bool Canevas::ajouterForme(Forme *p_forme) {
return true;
}
bool Canevas::retirerForme(int index) {
return true;
}
double Canevas::aire() {
return 0.0;
}
bool Canevas::translater(int deltaX, int deltaY) {
return true;
}
void Canevas::afficher(ostream & s) {
}
|