trick/trick_sims/SIM_contact/S_define
Alex Lin 496de8c7a9
Disambiguate python use #1250 (#1251)
* 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
2022-03-22 15:15:40 -05:00

24 lines
781 B
Plaintext

/************************************************************
PURPOSE:
( Simulation of Ball Contact. )
LIBRARY DEPENDENCIES:
((contact/src/Contact.cpp))
*************************************************************/
#include "sim_objects/default_trick_sys.sm"
##include "contact/include/Contact.hh"
class ContactSimObject : public Trick::SimObject {
public:
Contact contact;
ContactSimObject() {
("default_data") contact.default_data() ;
("initialization") contact.state_init() ;
("derivative") contact.state_deriv() ;
("integration") trick_ret = contact.state_integ() ;
("dynamic_event") contact.collision() ;
}
};
ContactSimObject dyn;
IntegLoop dyn_integloop(0.1) dyn;