mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 05:07:54 +00:00
496de8c7a9
* Disambiguate python use #1250 Changed all calls to /usr/bin/python to /usr/bin/env python3. Removed execute permissions on a lot of files that are not executable. closes #1250
34 lines
1.4 KiB
Python
34 lines
1.4 KiB
Python
execfile("Modified_data/realtime.py")
|
|
|
|
# Variable Server Data should be copied at top of frame.
|
|
trick.var_set_copy_mode(2)
|
|
|
|
dyn.contact.nballs = 3
|
|
dyn.contact.balls = trick.TMM_declare_var_1d("Ball*", dyn.contact.nballs)
|
|
# x, y, vx, vy, r, mass
|
|
dyn.contact.balls[0] = trick.make_Ball( -5.0, 2.0, 1.0, 0.0, 0.5, 1.0)
|
|
dyn.contact.balls[1] = trick.make_Ball( 5.0, 10.2, 0.0, 0.0, 10.0, 1000.0)
|
|
dyn.contact.balls[2] = trick.make_Ball( 5.0,-10.2, 0.0, 0.0, 10.0, 1000.0)
|
|
|
|
dyn_integloop.getIntegrator(trick.Euler, 2*dyn.contact.nballs)
|
|
|
|
# dyn.contact.nbounds = 5
|
|
# dyn.contact.bounds = trick.TMM_declare_var_1d("Boundary*", dyn.contact.nbounds)
|
|
|
|
#==========================================
|
|
# Start the Satellite Graphics Client
|
|
#==========================================
|
|
varServerPort = trick.var_server_get_port();
|
|
BallDisplay_path = "models/graphics/dist/BallDisplay.jar"
|
|
|
|
if (os.path.isfile(BallDisplay_path)) :
|
|
BallDisplay_cmd = "java -jar " \
|
|
+ BallDisplay_path \
|
|
+ " " + str(varServerPort) + " &" ;
|
|
print(BallDisplay_cmd)
|
|
os.system( BallDisplay_cmd);
|
|
else :
|
|
print('==================================================================================')
|
|
print('BallDisplay needs to be built. Please \"cd\" into ../models/graphics and type \"make\".')
|
|
print('==================================================================================')
|