From f34116f1da8465851d684620b6b94e0a3f3c0fbc Mon Sep 17 00:00:00 2001 From: Matthew Kosarek Date: Tue, 22 Jun 2021 20:23:33 -0400 Subject: Impulses, and entirely finished with rigid body demo #1 --- 2d/rigidbody/rigidbody_1/snippet1.cpp | 1 - 1 file changed, 1 deletion(-) (limited to '2d/rigidbody/rigidbody_1/snippet1.cpp') diff --git a/2d/rigidbody/rigidbody_1/snippet1.cpp b/2d/rigidbody/rigidbody_1/snippet1.cpp index 77a81b7..dd07254 100644 --- a/2d/rigidbody/rigidbody_1/snippet1.cpp +++ b/2d/rigidbody/rigidbody_1/snippet1.cpp @@ -1,7 +1,6 @@ struct Rigidbody { Vector2 force = { 0, 0 }; - Vector2 acceleration = { 0, 0 }; Vector2 velocity = { 0, 0 }; Vector2 position = { 0, 0 }; float32 mass = 1.f; -- cgit v1.2.1