public CSpanBehTrans(double Shallow, double Deep) { m_behTrans = new CBehaviorTransMatrix(); Setup(Shallow, Deep, MBSDEFAULTS.BEHAVIOR_INITIAL_TRANSLATION_MATRIX); }
public CSpanBehTrans(double Shallow, double Deep, CBehaviorMatrix BehaviorTransition) { m_behTrans = new CBehaviorTransMatrix(); Setup(Shallow, Deep, BehaviorTransition.matrix.a); }
public CSpanBehTrans() { m_behTrans = new CBehaviorTransMatrix(); Setup(0, 0, MBSDEFAULTS.BEHAVIOR_INITIAL_TRANSLATION_MATRIX); }