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