CodingTrain / CodingTrain/Nebula-AppleSoft-Basic
Rotation matrix may be computed just once
- Langage dominant
- BASIC
- Étoiles
- 51
- Forks
- 14
- Métriques de merge des PR
- Aucune PR mergée en 30 j
Description
This might speed up the simulation, but probably not enough to have an acceptable frame rate in real time. So I guess you would still need to make a time lapse. In that regard, I'm not sure this is worth the trouble.
What the code does now is increment the rotation angle every loop by 1 degree, construct a new rotation matrix and use that matrix only once. Alternatively, you could construct a rotation matrix just once, before the draw loop, with an angle of 1 degree. Then use that matrix every time to transform the current coordinates. This will have the same effect, cumulatively. So instead of using sin and cos every loop *and* do the matrix multiplication, you have only the multiplication left.
One slight complication is that matrix multiplication p' = R.p can't be done in-place, because the old values would be overwritten when you still need them. So in BASIC, this probably requires juggling with array indices where you transform p(0..7) into p(8..15) on one loop, and p(8..15) into p(0..7) on the next loop.
I hope this is clear and that it will be helpful. Cheers!
Guide de contribution
Aucun guide de contribution indexé pour ce dépôt
Piste de recherche
Commencez par la boucle de dessin et suivez l’utilisation de l’angle de rotation, de la matrice de rotation et des tableaux de coordonnées p(0..7) et p(8..15). Comparez la construction actuelle de la matrice à chaque itération avec la réutilisation d’une matrice fixe de 1 degré et l’alternance des tableaux de coordonnées ; le travail est terminé lorsque la rotation cumulée produit le même effet sans reconstruire la matrice à chaque itération.
Rédigé par le modèle d'indexation à partir du texte de l'issue.
Évaluation
- Domaine
- computer-graphics
- Type d'issue
- Refactorisation
- Difficulté
- 3/5
- Temps estimé
- 1-2 jours
- Activité
- À l'abandon
- Clarté
- Plutôt claire
- Accessibilité débutants
- 42/100