-
Notifications
You must be signed in to change notification settings - Fork 0
/
homothetie.cpp
53 lines (48 loc) · 1.01 KB
/
homothetie.cpp
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
47
48
49
50
51
52
53
#include "homothetie.h"
///
/// \brief Homothetie::Homothetie
///
Homothetie::Homothetie() : Application()
{
//Le constructeur de Application est appellé et *this= Id
}
///
/// \brief Homothetie::Homothetie
/// Construit une Homothetie de rapport k
/// \param K Rapport de l'Homothetie
///
Homothetie::Homothetie(qreal K) : Application()
{
k = K;
}
///
/// \brief Homothetie::Homothetie
/// Construit une Homothetie de rapport k et de centre C
/// \param K Rapport de l'Homothetie
/// \param C Centre de l'Homothetie
///
Homothetie::Homothetie(qreal K, QPointF C) :Application()
{
k = K;
Centre = C;
}
///
/// \brief Homothetie::setHomothetie
/// Définie une Homothetie de rapport k
/// \param K Rapport de l'Homothetie
///
void Homothetie::setHomothetie(qreal K)
{
k = K;
}
///
/// \brief Homothetie::setHomothetie
/// Définie une Homothetie de rapport k et de centre C
/// \param K Rapport de l'Homothetie
/// \param C Centre de l'Homothetie
///
void Homothetie::setHomothetie(qreal K, QPointF C)
{
k = K;
Centre = C;
}