Section 2. Chapitre 2
single
Challenge: Translation
Glissez pour afficher le menu
Tâche
Glissez pour commencer à coder
Translate a polygon by a given vector.
Given a polygon represented as a list of (x, y) tuples and a translation vector (dx, dy), create a new list of tuples representing the translated polygon.
- For each point in
polygon, addvector[0]to the x-coordinate andvector[1]to the y-coordinate. - Return a new list containing all the translated points.
- The function must not modify the original
polygonlist.
Solution
Tout était clair ?
Merci pour vos commentaires !
Section 2. Chapitre 2
single
Demandez à l'IA
Demandez à l'IA
Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion