Skip to content

Commit

Permalink
More triangles
Browse files Browse the repository at this point in the history
  • Loading branch information
iHiD committed Jan 12, 2025
1 parent 0e25365 commit 596a383
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,11 @@ export default class DrawExercise extends Exercise {

return (
match(points[0], points[1], points[2]) ||
match(points[0], points[2], points[1]) ||
match(points[1], points[0], points[2]) ||
match(points[0], points[2], points[1])
match(points[1], points[2], points[0]) ||
match(points[2], points[0], points[1]) ||
match(points[2], points[1], points[0])
)
}
})
Expand Down

0 comments on commit 596a383

Please sign in to comment.