20 lines
319 B
C++
20 lines
319 B
C++
#include "ConstraintIJ.h"
|
|
#include "EndFramec.h"
|
|
|
|
using namespace MbD;
|
|
|
|
ConstraintIJ::ConstraintIJ(EndFrmsptr frmi, EndFrmsptr frmj) : frmI(frmi), frmJ(frmj)
|
|
{
|
|
}
|
|
|
|
void ConstraintIJ::initialize()
|
|
{
|
|
Constraint::initialize();
|
|
aConstant = 0.0;
|
|
}
|
|
|
|
void MbD::ConstraintIJ::setConstant(double value)
|
|
{
|
|
aConstant = value;
|
|
}
|