Skip to content

Commit

Permalink
Ajout du dossier _notes
Browse files Browse the repository at this point in the history
  • Loading branch information
nbourre committed Sep 8, 2023
1 parent be2a4c4 commit 53a9d1b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions _notes/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Classe avec forces
## Code de base
```java
//... autre code ...

// Code de base pour update
// adapter pour la classe
void update() {
velocity.add(acceleration);
velocity.limit(maxSpeed); // Si limite de vitesse
location.add(velocity);

acceleration.mult(0); // On remet l'accélération à 0
}

// Fonction pour ajouter une force à l'accélération
void applyForce(PVector force) {
var f = PVector.div(force, mass);
acceleration.add(f);
}

//... autre code ...
```

0 comments on commit 53a9d1b

Please sign in to comment.