From d0e393af25313c02a938df32d77c748abd185de6 Mon Sep 17 00:00:00 2001 From: alexb737 Date: Thu, 6 Oct 2022 10:47:09 +0200 Subject: [PATCH] =?UTF-8?q?definida=20clase=20est=C3=A1tica=20con=20consta?= =?UTF-8?q?ntes=20f=C3=ADsicas?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Q01-Cálculos/Physics.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Q01-Cálculos/Physics.cs diff --git a/Q01-Cálculos/Physics.cs b/Q01-Cálculos/Physics.cs new file mode 100644 index 0000000..2973a0d --- /dev/null +++ b/Q01-Cálculos/Physics.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Numerics; +using System.Text; +using System.Threading.Tasks; + +namespace Q01_Cálculos +{ + public class Physics + { + public static readonly Vector3 EarthMeanGravity = new(0, 0, -9.81f); + public static Vector3 DefaultGravity = EarthMeanGravity; + public static Vector3 CurrentGravity = DefaultGravity; + } +}