Skip to content

Commit

Permalink
Bug compile cAppli_TriangleDeformation::mDImIntermediateOut
Browse files Browse the repository at this point in the history
  • Loading branch information
deseilligny committed Jul 26, 2024
1 parent 435f37c commit fdf8648
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions MMVII/src/CodedTarget/cCheckBoardTargetExtract.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ class cCdSadle;
class cCdSym;
class cCdRadiom;
class cTmpCdRadiomPos ;
class cCdEllipse ;


/* **************************************************** */
/* cCdSadle */
Expand Down Expand Up @@ -139,7 +141,7 @@ enum class eTPosCB
inline bool IsInside(eTPosCB aState) {return (aState==eTPosCB::eInsideBlack) || (aState==eTPosCB::eInsideWhite) ;}
inline bool IsOk(eTPosCB aState) {return aState!=eTPosCB::eUndef;}

/// Used temporary for compilation of radiom
/// Used temporary for theoreticall radiometric model compilation of radiom
class cTmpCdRadiomPos : public cCdRadiom
{
public :
Expand Down Expand Up @@ -293,8 +295,6 @@ bool cCdRadiom::PtIsOnLine(const cPt2dr & aPAbs,tREAL8 aTeta) const
if (std::abs(aPLoc.y()) <= 1.0 + std::abs(aPLoc.x()) /30.0)
return true;



return false;
}

Expand Down
2 changes: 1 addition & 1 deletion MMVII/src/MeshDisplacement/TriangleDeformation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ namespace MMVII
mDImDepY(nullptr),
mSzIntermediateImOut(tPt2di(1, 1)),
mImIntermediateOut(mSzIntermediateImOut),
mDImIntermediateOut(nullptr),
// mDImIntermediateOut(nullptr),
mSzImIntermediateDepX(tPt2di(1, 1)),
mImIntermediateDepX(mSzImIntermediateDepX),
mDImIntermediateDepX(nullptr),
Expand Down
2 changes: 1 addition & 1 deletion MMVII/src/MeshDisplacement/TriangleDeformation.h
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ namespace MMVII

tPt2di mSzIntermediateImOut; // size of image
tIm mImIntermediateOut; // memory representation of the image
tDIm *mDImIntermediateOut; // memory representation of the image
// tDIm *mDImIntermediateOut; // memory representation of the image :: MPD error compile Git-Linux (unused private)

tPt2di mSzImIntermediateDepX; // size of image
tIm mImIntermediateDepX; // memory representation of the image
Expand Down

0 comments on commit fdf8648

Please sign in to comment.