Rotation et Transformations
Fermé
MartinNabi
Messages postés
1
Date d'inscription
vendredi 27 février 2015
Statut
Membre
Dernière intervention
26 avril 2015
-
26 avril 2015 à 19:00
Utilisateur anonyme - 27 avril 2015 à 15:48
Utilisateur anonyme - 27 avril 2015 à 15:48
A voir également:
- Rotation et Transformations
- Rotation ecran pc - Guide
- Rotation video - Guide
- Rotation calque photoshop ✓ - Forum Photoshop
- Problème rotation écran tablette lenovo - Forum Matériel & Système
- Tablette samsung rotation écran ne fonctionne plus - Forum Samsung
1 réponse
Utilisateur anonyme
27 avril 2015 à 15:48
27 avril 2015 à 15:48
Salut, tu as un problème de rotation lors de la rotation de la camera avec la souris ?
Voici mon algorithme:
Voici mon algorithme:
x = x - (screen_info[_x] / 2);
y = y - (screen_info[_y] / 2);
y *= -1;
add_angle[_x] = (y - prev_coord_mouse[_y]) / 2;
add_angle[_y] = (x - prev_coord_mouse[_x]) / 2;
angle_cam.v[_y] += add_angle[_y];
angle_cam.v[_x] += add_angle[_x];
prev_coord_mouse[_x] = x;
prev_coord_mouse[_y] = y;