21 lines
480 B
C++
21 lines
480 B
C++
#pragma once
|
|
|
|
#include "DirectionCosineConstraintIqcJqc.h"
|
|
|
|
namespace MbD {
|
|
class DirectionCosineConstraintIqctJqc : public DirectionCosineConstraintIqcJqc
|
|
{
|
|
//pGpt ppGpEIpt ppGpEJpt ppGptpt
|
|
public:
|
|
DirectionCosineConstraintIqctJqc(EndFrmcptr frmi, EndFrmcptr frmj, int axisi, int axisj);
|
|
void initaAijIeJe() override;
|
|
MbD::ConstraintType type() override;
|
|
void preVelIC() override;
|
|
|
|
double pGpt;
|
|
FRowDsptr ppGpEIpt;
|
|
FRowDsptr ppGpEJpt;
|
|
double ppGptpt;
|
|
};
|
|
}
|