2015-02-26 15:02:31 +00:00
|
|
|
/************************TRICK HEADER*************************
|
|
|
|
PURPOSE:
|
2016-10-27 19:37:14 +00:00
|
|
|
(Cannon Numeric)
|
2015-02-26 15:02:31 +00:00
|
|
|
LIBRARY DEPENDENCIES:
|
|
|
|
(
|
|
|
|
(cannon/gravity/src/cannon_init.c)
|
2016-11-17 22:04:07 +00:00
|
|
|
(cannon/gravity/src/cannon_numeric.c)
|
2015-02-26 15:02:31 +00:00
|
|
|
)
|
|
|
|
*************************************************************/
|
|
|
|
|
|
|
|
#include "sim_objects/default_trick_sys.sm"
|
2016-11-01 23:16:26 +00:00
|
|
|
##include "cannon/gravity/include/cannon_numeric.h"
|
2015-02-26 15:02:31 +00:00
|
|
|
|
|
|
|
class CannonSimObject : public Trick::SimObject {
|
|
|
|
|
|
|
|
public:
|
|
|
|
CANNON cannon ;
|
|
|
|
|
|
|
|
CannonSimObject() {
|
|
|
|
("default_data") cannon_default_data( &cannon ) ;
|
|
|
|
("initialization") cannon_init( &cannon ) ;
|
2016-10-21 00:12:31 +00:00
|
|
|
("derivative") cannon_deriv( &cannon ) ;
|
2015-02-26 15:02:31 +00:00
|
|
|
("integration") trick_ret = cannon_integ( &cannon ) ;
|
|
|
|
("dynamic_event") cannon_impact( &cannon) ;
|
|
|
|
}
|
|
|
|
} ;
|
|
|
|
|
|
|
|
// Instantiations
|
|
|
|
CannonSimObject dyn ;
|
|
|
|
|
|
|
|
IntegLoop dyn_integloop (0.01) dyn;
|