1
0

initialisation

This commit is contained in:
Alex_Hubert
2021-10-15 16:24:47 +02:00
parent f06e9e4455
commit 0c8bb87032

18
LeapFrog_1.0.py Normal file
View File

@@ -0,0 +1,18 @@
from math import *
import numpy as np
def main():
#initialisation
x1 = np.array([0, 0, 0])
x2 = np.array([1, 0, 0])
x3 = np.array([1, 0, 0])
v1 = np.array([0, 0, 0])
v2 = np.array([1, 0, 0])
v3 = np.array([1, 0, 0])
if __name__ == '__main__':
main()