Hello,
est-ce que quelqu'un pourrait m'indiquer comment s'obtient les matrices de rotation, translation, homothétie pour un point en 2D.
J'ai une classe Point :
class Point{
int x;
int y;
...
}
class Matrice{
double [2][2];
public void rotation(){
}
public void translation(){
}
public void homothetie(){
}
}
Merci

