mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 13:17:55 +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
24 lines
781 B
Plaintext
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;
|