6 lines
228 B
C++
6 lines
228 B
C++
#pragma once
|
|
namespace MbD {
|
|
enum ConstraintType { essential, displacement, perpendicular, redundant };
|
|
enum DiscontinuityType { TOUCHDOWN, REBOUND, LIFTOFF };
|
|
enum AnalysisType { INPUT, INITIALCONDITION, DYNAMIC, STATIC };
|
|
} |