Skip to content

Commit 05a7937

Browse files
committed
Fixes processing/processing#3513 by adding missing parens
1 parent e15a753 commit 05a7937

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/examples/Topics/Simulate/ForcesWithVectors/ForcesWithVectors.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ void draw() {
3434
for (Mover mover : movers) {
3535

3636
// Is the Mover in the liquid?
37-
if (liquid.contains(mover) {
37+
if (liquid.contains(mover)) {
3838
// Calculate drag force
3939
PVector drag = liquid.drag(mover);
4040
// Apply drag force to Mover

0 commit comments

Comments
 (0)