21 lines
499 B
C++
21 lines
499 B
C++
#pragma once
|
|
|
|
#include "DirectionCosineConstraintIJ.h"
|
|
|
|
namespace MbD {
|
|
class DirectionCosineConstraintIqcJc : public DirectionCosineConstraintIJ
|
|
{
|
|
//pGpEI ppGpEIpEI iqEI
|
|
public:
|
|
DirectionCosineConstraintIqcJc(EndFrmcptr frmi, EndFrmcptr frmj, int axisi, int axisj);
|
|
void initialize();
|
|
void initaAijIeJe() override;
|
|
void calcPostDynCorrectorIteration() override;
|
|
|
|
FRowDsptr pGpEI;
|
|
FMatDsptr ppGpEIpEI;
|
|
int iqEI;
|
|
};
|
|
}
|
|
|