From 041a1236c091eb2d21c3cef9ffba36a620851126 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Oudin?= Date: Tue, 13 Feb 2018 21:06:44 +0100 Subject: [PATCH] missing interface in header file --- Ball.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Ball.hpp b/Ball.hpp index 7695011..52b2259 100644 --- a/Ball.hpp +++ b/Ball.hpp @@ -30,6 +30,7 @@ class Ball { double A, B, U, T; // Coefficients for the physical model. double v_x, v_z; void _compute_pos(double dt); + void _compute_parameters(); void _compute_v_x(Point normal); void _compute_v_z(Point normal); void _compute_A_n();