Skip to content

Commit

Permalink
Merge pull request #53 from raspberrypilearning/draft
Browse files Browse the repository at this point in the history
Fix translation
  • Loading branch information
sashamishcheriakova authored Jan 15, 2024
2 parents 48cf714 + 5d5440d commit cfe6200
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fr-FR/code/rocket-launch-solution/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
fusee_y = 400
brule = 100
rayon_orbite = 250
orbite_y = taille_ecran = rayon_orbite
orbite_y = taille_ecran - rayon_orbite


# La fonction dessine_fusee vient ici
Expand Down Expand Up @@ -51,7 +51,7 @@ def dessine_arriere_plan():
no_fill()
stroke(255)
stroke_weight(2)
ellipse(width/2, height, rayon_orbite * 2, rayon_orbite*2)
ellipse(width/2, height, rayon_orbite * 2, rayon_orbite * 2)


def configuration():
Expand Down

0 comments on commit cfe6200

Please sign in to comment.