Skip to content

Commit 61fa8da

Browse files
committedNov 3, 2017
Start on unit tests for interpolation classes
1 parent fe78611 commit 61fa8da

11 files changed

+526
-291
lines changed
 

‎src/analysis/interpolation/CloughTocherInterpolator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ void CloughTocherInterpolator::init( double x, double y )//version, which has th
227227

228228
if ( mTIN )
229229
{
230-
mTIN->getTriangle( x, y, &point1, &ptn1, &v1, &state1, &point2, &ptn2, &v2, &state2, &point3, &ptn3, &v3, &state3 );
230+
mTIN->getTriangle( x, y, point1, ptn1, &v1, &state1, point2, ptn2, &v2, &state2, point3, ptn3, &v3, &state3 );
231231

232232
if ( point1 == lpoint1 && point2 == lpoint2 && point3 == lpoint3 )//if we are in the same triangle as at the last run, we can leave 'init'
233233
{

0 commit comments

Comments
 (0)
Please sign in to comment.