mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 05:07:54 +00:00
0c84b8ad08
Moved SIM_events, test_dp, test_dr, and abstract. refs #191
13 lines
293 B
Python
13 lines
293 B
Python
|
|
def main():
|
|
ball.ball_ptr = trick.TMM_declare_var_s("Soccerball[1]")
|
|
ball.ball_ptr.thisown = 0
|
|
ball.ball_ptr[0].print_type()
|
|
ball.ball_ptr.print_type()
|
|
trick.add_read(0.5 , 'ball.ball_ptr = trick.TMM_declare_var_s("Baseball[1]")')
|
|
|
|
if __name__ == "__main__":
|
|
main()
|
|
|
|
|