mirror of
https://github.com/nasa/trick.git
synced 2025-01-01 19:06:41 +00:00
40 lines
855 B
C++
40 lines
855 B
C++
|
/**
|
||
|
@file
|
||
|
|
||
|
@verbatim
|
||
|
PURPOSE:
|
||
|
(Ball model EOM state parameter definition.)
|
||
|
ICG: (No)
|
||
|
REFERENCES:
|
||
|
(((Bailey, R.W, and Paddock, E.J.)
|
||
|
(Trick Simulation Environment) (NASA:JSC #37943)
|
||
|
(JSC/Engineering Directorate/Automation, Robotics and Simulation Division)
|
||
|
(March 1997)))
|
||
|
ASSUMPTIONS AND LIMITATIONS:
|
||
|
((2 dimensional space)
|
||
|
(Translational EOM only))
|
||
|
LIBRARY DEPENDENCY:
|
||
|
()
|
||
|
PROGRAMMERS:
|
||
|
(((Robert W. Bailey) (Sweet Systems Inc) (March 1997) (Tutorial Lesson 1))
|
||
|
((Edwin Z. Crues)(Titan Systems Corp.)(Jan 2002)(Crude C++ translation)))
|
||
|
@endverbatim
|
||
|
*******************************************************************************/
|
||
|
|
||
|
/*
|
||
|
* $Id: NoICG.hh 1670 2011-06-06 22:13:14Z wwoodard $
|
||
|
*/
|
||
|
|
||
|
#ifndef _NOICG_HH_
|
||
|
#define _NOICG_HH_
|
||
|
|
||
|
class DoNotICG {
|
||
|
|
||
|
public:
|
||
|
int ii ;
|
||
|
|
||
|
} ;
|
||
|
|
||
|
#endif /* _BALL_HH_ */
|
||
|
|