diff --git a/src/swt.c b/src/swt.c index f3b5871..c8477e7 100755 --- a/src/swt.c +++ b/src/swt.c @@ -136,7 +136,7 @@ int Interpolate(float WavComb[], int numberlines, float WavFilt[], float depth[] if (WavComb[f] > 0) { /*Gradient for the line under the object*/ - /*printf("Extrapolate under object centred on f*/ + /*Extrapolate under object centred on f*/ /*Limits depth[WavCombLeft[f]], distance[WavCombLeft[f]], depth[WavCombRight[f]], distance[WavCombRight[f]]);*/ gradient = (depth[WavCombLeft[f]]-depth[WavCombRight[f]])/(distance[WavCombLeft[f]]-distance[WavCombRight[f]]); /*And do the interpolation*/ @@ -368,8 +368,8 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] InsidePosnLHS++; } LHSgradient = (depth[InsidePosnLHS]-depth[(WavCombLeft[f] - moveL)])/(distance[InsidePosnLHS]-distance[(WavCombLeft[f] - moveL)]); - printf("Summit location: %d\n", summitlocation[f]); - printf("WavCombLeft[%d] %d InsidePosnLHS: %d LHSgradient %f \n",f,WavCombLeft[f]-moveL,InsidePosnLHS, LHSgradient); + /*"Summit location: %d\n", summitlocation[f]*/ + /*"WavCombLeft[%d] %d InsidePosnLHS: %d LHSgradient %f \n",f,WavCombLeft[f]-moveL,InsidePosnLHS, LHSgradient*/ /*Check that the object hasn't expanded too far*/ TooBig = 0; @@ -379,7 +379,7 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] if (distance[WavCombLeft[f] - moveL] < distance[summitlocation[f]] - ((WavCombScale[f]/4.0)*ScaleMulLimit)) { TooBig = 1; - printf("TOO BIG to left\n"); + /*"TOO BIG to left\n*/ } /*Check that one side hasn't gone down too far*/ TooDeep = 0; @@ -389,13 +389,13 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] if (diffratio > HeightDiffFract) { TooDeep = 1; - printf("TOO DEEP to left\n"); + /*TOO DEEP to left\n*/ } /*correction so that data resolution doesn't unduly affect this*/ if(diffLside-diffRside < difftoosmall && diffLside-diffRside > 0) { TooDeep = 0; - printf(".... but too small a difference to worry about\n"); + /*".... but too small a difference to worry about\n*/ } /*if the ratio is better.....*/ @@ -404,9 +404,9 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] /*change maxratio*/ maxratio = ratio; /*and move the edge of the object*/ - printf("WavCombLeft[%d] %d\n",f,WavCombLeft[f]); + /*WavCombLeft[%d] %d\n",f,WavCombLeft[f]*/ WavCombLeft[f] = WavCombLeft[f] - moveL; - printf("WavCombLeft[%d] %d\n",f,WavCombLeft[f]); + /*WavCombLeft[%d] %d\n",f,WavCombLeft[f]*/ /*and get out of the loopright loop on first success*/ loopleft = 0; /*and note the change so that stay in main loop*/ @@ -435,11 +435,11 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] MoveMax = LowestMaxMove; } Move = distance[WavCombLeft[f]]-(distance[WavCombLeft[f]-(moveL+1)]); - printf("width: %f MoveMax %f Move %f \n", (distance[WavCombRight[f]]-distance[WavCombLeft[f]]), MoveMax, Move); + /*"width: %f MoveMax %f Move %f \n", (distance[WavCombRight[f]]-distance[WavCombLeft[f]]), MoveMax, Move*/ if (Move > MoveMax) { criteriaFulfilled = 0; - printf("FAIL 2: Ties to move by more than %f of object width\n",widthFract); + /*FAIL 2: Ties to move by more than %f of object width\n",widthFract*/ } /*Criterion 3*/ /*if potenital move places it within another larger feature, then disallow*/ @@ -452,7 +452,7 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] /*is between the limits of a larger object - in terms of its original coefficient*/ if ((WavCombLeft[f]-(moveL+1)) < WavCombRight[c] && (WavCombLeft[f]-(moveL+1)) > WavCombLeft[c] && WavComb[c] > WavComb[f]) { - printf("FAIL 3: Tries to move inside other larger object\n"); + /*printf("FAIL 3: Tries to move inside other larger object*/ criteriaFulfilled = 0; } } @@ -479,7 +479,6 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] /*Try Moving the righht hand limit*/ /*Always move on first success*/ - printf("Trying to move the right hand limit\n"); loopright = 1; moveR = 1; while (loopright == 1) @@ -489,23 +488,21 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] area = 0; /*Print some details*/ - printf("Limits are (%f,%f) (%f,%f)\n",depth[WavCombLeft[f]],distance[WavCombLeft[f]],depth[(WavCombRight[f]+moveR)],distance[(WavCombRight[f]+moveR)]); + /*Limits are (%f,%f) (%f,%f)\n",depth[WavCombLeft[f]],distance[WavCombLeft[f]],depth[(WavCombRight[f]+moveR)],distance[(WavCombRight[f]+moveR)]*/ /*Work out the properties*/ /*gradient of line under feature*/ gradient = (depth[WavCombLeft[f]]-depth[(WavCombRight[f]+moveR)])/(distance[WavCombLeft[f]]-distance[(WavCombRight[f]+moveR)]); - printf("gradient is %f\n",gradient); /*The length of the outline*/ for (i = WavCombLeft[f];i < (WavCombRight[f]+moveR); i++) { /*over the top - use pythag*/ extradist = sqrt(((depth[i]-depth[i+1])*(depth[i]-depth[i+1]))+((distance[i]-distance[i+1])*(distance[i]-distance[i+1]))); outline = outline + extradist; - /*printf("[%d] outline %f extradist %f\n",i, outline, extradist);*/ } /*and the line underneath - use pythag*/ outline = outline + sqrt(((depth[WavCombLeft[f]]-depth[(WavCombRight[f]+moveR)])*(depth[WavCombLeft[f]]-depth[(WavCombRight[f]+moveR)]))+((distance[WavCombLeft[f]]-distance[(WavCombRight[f]+moveR)])*(distance[WavCombLeft[f]]-distance[(WavCombRight[f]+moveR)]))); - printf("[%d] total outline (inc. base) %f \n",f, outline); + /*[%d] total outline (inc. base) %f \n",f, outline*/ /*The area of the feature*/ /*There is no exception where the measured line crosses the extrapolated*/ for (j = WavCombLeft[f];j < (WavCombRight[f]+moveR); j++ ) @@ -514,14 +511,13 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] depthInterpR = depth[WavCombLeft[f]] + ((distance[j+1]-distance[WavCombLeft[f]])*gradient); extraarea = 0.5*((depth[j]-depthInterpL) + (depth [j+1] - depthInterpR))*(distance[j+1]-distance[j]); area = area + extraarea; - /*printf("[%d] area %f extraarea %f\n",j, area, extraarea);*/ } - printf("[%d] total area %f \n",f, area); + /*[%d] total area %f \n",f, area*/ ratio = area/outline; - printf("area/outline %f\n",ratio); + /*"area/outline %f\n",ratio*/ /*print current state of movement*/ - printf("moveR %d\n", moveR); + /*moveR %d\n", moveR*/ /*Check that the gradient of the outside portion of the proposed move is not too flat*/ /*Make the proportion with respect to the summit*/ @@ -545,13 +541,13 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] /*Make sure that the object hasn't expanded too much*/ TooBig = 0; - printf("proposed right limit: %f\n", distance[WavCombRight[f] + moveR]); - printf("summit %f km \n", distance[summitlocation[f]]); - printf("size of extension allowed %f km\n", ((WavCombScale[f]/4.0)*ScaleMulLimit) ); + /*proposed right limit: %f\n", distance[WavCombRight[f] + moveR]*/ + /*"summit %f km \n", distance[summitlocation[f]]*/ + /*"size of extension allowed %f km\n", ((WavCombScale[f]/4.0)*ScaleMulLimit)*/ if (distance[WavCombRight[f] + moveR] > distance[summitlocation[f]] + ((WavCombScale[f]/4.0)*ScaleMulLimit)) { TooBig = 1; - printf("TOO BIG to right\n"); + /*TOO BIG to right*/ } /*Check that one side hasn't gone down too far*/ TooDeep = 0; @@ -561,13 +557,13 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] if (diffratio > HeightDiffFract) { TooDeep = 1; - printf("TOO DEEP to right\n"); + /*TOO DEEP to right*/ } /*correction so that data resolution doesn't unduly affect this*/ if(diffRside-diffLside < difftoosmall && diffRside-diffLside > 0) { TooDeep = 0; - printf(".... but too small a difference to worry about\n"); + /*".... but too small a difference to worry about\n"*/ } @@ -579,9 +575,7 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] /*change maxratio*/ maxratio = ratio; /*and move the edge of the object*/ - printf("WavCombRight[%d] %d\n",f,WavCombRight[f]); WavCombRight[f] = WavCombRight[f] + moveR; - printf("WavCombRight[%d] %d\n",f,WavCombRight[f]); /*and get out of the loopright loop - 1st success*/ loopright = 0; /*and note the change so that stay in main loop*/ @@ -598,7 +592,7 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] if (WavCombRight[f] + (moveR +1) >= numberlines) { criteriaFulfilled = 0; - printf("FAIL 1: Tries to move outside data\n"); + /*FAIL 1: Tries to move outside data*/ } /*Criterion 2*/ /*Version from book16p26*/ @@ -610,11 +604,11 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] MoveMax = LowestMaxMove; } Move = (distance[WavCombRight[f]+(moveR + 1)])-distance[WavCombRight[f]]; - printf("width: %f MoveMax %f Move %f\n", (distance[WavCombRight[f]]-distance[WavCombLeft[f]]), MoveMax, Move); + /*"width: %f MoveMax %f Move %f\n", (distance[WavCombRight[f]]-distance[WavCombLeft[f]]), MoveMax, Move)*/ if (Move > MoveMax) { criteriaFulfilled = 0; - printf("FAIL 2: Ties to move by more than %f of object width\n",widthFract); + /*FAIL 2: Ties to move by more than %f of object width\n",widthFract*/ } /*Criterion 3*/ /*if potenital move places it within another larger feature, then disallow*/ @@ -628,7 +622,7 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] if ((WavCombRight[f]+(moveR+1)) < WavCombRight[c] && (WavCombRight[f]+(moveR+1)) > WavCombLeft[c] && WavComb[c] > WavComb[f]) { criteriaFulfilled = 0; - printf("FAIL 3: Tries to move inside other larger object\n"); + /*FAIL 3: Tries to move inside other larger object*/ } } } @@ -662,23 +656,21 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] area = 0; /*Print some details*/ - printf("Limits are (%f,%f) (%f,%f)\n",depth[WavCombLeft[f]-1],distance[WavCombLeft[f]-1],depth[(WavCombRight[f]+1)],distance[(WavCombRight[f]+1)]); + /*"Limits are (%f,%f) (%f,%f)\n",depth[WavCombLeft[f]-1],distance[WavCombLeft[f]-1],depth[(WavCombRight[f]+1)],distance[(WavCombRight[f]+1)])*/ /*Work out the properties*/ /*gradient of line under feature*/ gradient = (depth[WavCombLeft[f]-1]-depth[(WavCombRight[f]+1)])/(distance[WavCombLeft[f]-1]-distance[(WavCombRight[f]+1)]); - printf("gradient is %f\n",gradient); /*The length of the outline*/ for (i = (WavCombLeft[f]-1);i < (WavCombRight[f]+1); i++) { /*over the top - use pythag*/ extradist = sqrt(((depth[i]-depth[i+1])*(depth[i]-depth[i+1]))+((distance[i]-distance[i+1])*(distance[i]-distance[i+1]))); outline = outline + extradist; - /*printf("[%d] outline %f extradist %f\n",i, outline, extradist);*/ } /*and the line underneath - use pythag*/ outline = outline + sqrt(((depth[WavCombLeft[f]-1]-depth[(WavCombRight[f]+1)])*(depth[WavCombLeft[f]-1]-depth[(WavCombRight[f]+1)]))+((distance[WavCombLeft[f]-1]-distance[(WavCombRight[f]+1)])*(distance[WavCombLeft[f]-1]-distance[(WavCombRight[f]+1)]))); - printf("[%d] total outline (inc. base) %f \n",f, outline); + /*[%d] total outline (inc. base) %f \n",f, outline*/ /*The area of the feature*/ /*There is no exception where the measured line crosses the extrapolated*/ for (j = (WavCombLeft[f]-1);j < (WavCombRight[f]+1); j++ ) @@ -687,14 +679,13 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] depthInterpR = depth[WavCombLeft[f]-1] + ((distance[j+1]-distance[WavCombLeft[f]-1])*gradient); extraarea = 0.5*((depth[j]-depthInterpL) + (depth [j+1] - depthInterpR))*(distance[j+1]-distance[j]); area = area + extraarea; - /*printf("[%d] area %f extraarea %f\n",j, area, extraarea);*/ } - printf("[%d] total area %f \n",f, area); + /*[%d] total area %f \n",f, area*/ ratio = area/outline; - printf("area/outline %f\n",ratio); + /*"area/outline %f\n",ratio*/ /*print current state of movement*/ - printf("Trying to move BOTH at once\n"); + /*"Trying to move BOTH at once\n"*/ /*Check that the gradient of the outside portion of the proposed move is not too flat*/ /*Make the proportion with respect to the summit*/ @@ -713,8 +704,8 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] InsidePosnLHS++; } LHSgradient = (depth[InsidePosnLHS]-depth[(WavCombLeft[f] - 1)])/(distance[InsidePosnLHS]-distance[(WavCombLeft[f] - 1)]); - printf("Summit location: %d\n", summitlocation[f]); - printf("WavCombLeft[%d] %d InsidePosnLHS: %d LHSgradient %f \n",f,WavCombLeft[f]-1,InsidePosnLHS, LHSgradient); + /*Summit location: %d\n", summitlocation[f]*/ + /*"WavCombLeft[%d] %d InsidePosnLHS: %d LHSgradient %f \n",f,WavCombLeft[f]-1,InsidePosnLHS, LHSgradient*/ /*And the right hand side*/ /*work out how far back towards the centre to take the outside part*/ @@ -730,8 +721,8 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] InsidePosnRHS--; } RHSgradient = (depth[InsidePosnRHS]-depth[(WavCombRight[f] + 1)])/(distance[(WavCombRight[f] + 1)]-distance[InsidePosnRHS]); - printf("Summit location: %d\n", summitlocation[f]); - printf("WavCombRight[%d] %d InsidePosnRHS: %d RHSgradient %f \n",f,WavCombRight[f]+1,InsidePosnRHS, RHSgradient); + /*Summit location: %d\n", summitlocation[f]*/ + /*WavCombRight[%d] %d InsidePosnRHS: %d RHSgradient %f \n",f,WavCombRight[f]+1,InsidePosnRHS, RHSgradient*/ /*Test to see if object has expanded too much*/ @@ -739,12 +730,12 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] if (distance[WavCombRight[f] +1] > distance[summitlocation[f]] + ((WavCombScale[f]/4.0)*ScaleMulLimit)) { criteriaFulfilled = 0; - printf("FAIL 4: Tries to expand too much\n"); + /*FAIL 4: Tries to expand too much\n*/ } if (distance[WavCombLeft[f] - 1] < distance[summitlocation[f]] - ((WavCombScale[f]/4.0)*ScaleMulLimit)) { criteriaFulfilled = 0; - printf("FAIL 4: Tries to expand too much\n"); + /*FAIL 4: Tries to expand too much\n*/ } /*Check that one side hasn't gone down too far*/ @@ -755,13 +746,13 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] if (diffratio > HeightDiffFract || (1/diffratio) > HeightDiffFract) { TooDeep = 1; - printf("TOO DEEP to one side when both moved\n"); + /*TOO DEEP to one side when both moved\n*/ } /*correction so that data resolution doesn't unduly affect this*/ if(sqrt((diffRside-diffLside)*(diffRside-diffLside)) < difftoosmall) { TooDeep = 0; - printf(".... but too small a difference to worry about\n"); + /*".... but too small a difference to worry about\n"*/ } /*if the ratio is better, gradient doesn't get too shallow*/ @@ -771,25 +762,19 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] /*change maxratio*/ maxratio = ratio; /*and move the edges of the object*/ - printf("WavCombRight[%d] %d\n",f,WavCombRight[f]); WavCombRight[f] = WavCombRight[f] + 1; - printf("WavCombRight[%d] %d\n",f,WavCombRight[f]); - printf("WavCombLeft[%d] %d\n",f,WavCombLeft[f]); WavCombLeft[f] = WavCombLeft[f] -1; - printf("WavCombLeft[%d] %d\n",f,WavCombLeft[f]); /*and note the change so that stay in main loop*/ changes++; } if (ratio <= maxratio || RHSgradient < mingradient || LHSgradient < mingradient || criteriaFulfilled == 0 || TooDeep == 1) { - printf("Didn't work\n"); + /*"Didn't work\n*/ } } - - - printf("Changes %d\n", changes); + /*Changes %d\n", changes*/ mainloop = 0; if (changes > 0) { @@ -812,7 +797,7 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] if (d >= WavCombLeft[f] && d <= WavCombRight[f]) { /*and get rid of it*/ - printf("lhs edge at [%d] rhs edge at [%d] so REMOVED object at [%d]\n",WavCombLeft[f],WavCombRight[f],d); + /*lhs edge at [%d] rhs edge at [%d] so REMOVED object at [%d]\n",WavCombLeft[f],WavCombRight[f],d*/ objToDo[d] = 0; WavComb[d] = 0; WavCombLeft[d] = 0; @@ -824,13 +809,13 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] { /*correct the initial range of the smaller object to avoid the clash*/ WavCombLeft[d] = WavCombRight[f]; - printf("ADJUSTED lhs of object at [%d]\n",d); + /*ADJUSTED lhs of object at [%d]\n",d*/ } if (WavCombRight[d] > WavCombLeft[f] && WavCombRight[d] < WavCombRight[f] && objToDo[d] > 0) { /*correct the initial range of the smaller object to avoid the clash*/ WavCombRight[d] = WavCombLeft[f]; - printf("ADJUSTED rhs object at [%d]\n",d); + /*ADJUSTED rhs object at [%d]\n",d*/ } } } @@ -844,7 +829,7 @@ int PostProcess(float WavComb[], int numberlines, float WavFilt[], float depth[] ObjectsCount++; } } - printf("%d objects remain\n\n\n", ObjectsCount); + /*%d objects remain\n\n\n", ObjectsCount*/ /*alter the loopobjects logic*/ loopobjects = 0; diff --git a/test/output.txt b/test/output.txt new file mode 100644 index 0000000..b314068 --- /dev/null +++ b/test/output.txt @@ -0,0 +1,6866 @@ + +Current scale = 0.1 km + +Current scale = 0.2 km + +Current scale = 0.3 km + +Current scale = 0.4 km + +Current scale = 0.5 km + +Current scale = 0.6 km + +Current scale = 0.7 km + +Current scale = 0.8 km + +Current scale = 0.9 km + +Current scale = 2.0 km + +Current scale = 3.0 km + +Current scale = 4.0 km + +Current scale = 5.0 km + +Current scale = 6.0 km + +Current scale = 7.0 km + +Current scale = 8.0 km + +Current scale = 9.0 km + +Current scale = 10.0 km + +Current scale = 11.0 km + +Current scale = 12.0 km + +Current scale = 13.0 km + +Current scale = 14.0 km + +Current scale = 15.0 km + +Current scale = 16.0 km + +Current scale = 17.0 km + +Current scale = 18.0 km + +Current scale = 19.0 km + +Current scale = 20.0 km + +Current scale = 21.0 km + +Current scale = 22.0 km + +Current scale = 23.0 km + +Current scale = 24.0 km + +Current scale = 30.0 km + +Current scale = 35.0 km + +Current scale = 40.0 km + +Current scale = 45.0 km + +Current scale = 50.0 km + +Current scale = 55.0 km + +Current scale = 60.0 km + +Current scale = 65.0 km + +Current scale = 70.0 km + +Current scale = 75.0 km + +Current scale = 80.0 km + +Current scale = 85.0 km + +Current scale = 90.0 km + +Current scale = 95.0 km + +Current scale = 110.0 km + +Current scale = 120.0 km + +Current scale = 130.0 km + +Current scale = 140.0 km + +Current scale = 150.0 km + +Current scale = 160.0 km + +Current scale = 170.0 km + +Current scale = 180.0 km + +Current scale = 190.0 km + +Current scale = 200.0 km + +Current scale = 210.0 km + +Current scale = 220.0 km + +Current scale = 230.0 km + +Current scale = 240.0 km + +Current scale = 250.0 km + +Current scale = 260.0 km + +Current scale = 270.0 km + +Current scale = 280.0 km + +Current scale = 290.0 km + +Current scale = 300.0 km + +Current scale = 310.0 km + +Current scale = 320.0 km + +Current scale = 330.0 km + +Current scale = 340.0 km + +Current scale = 350.0 km + +Current scale = 360.0 km + +Current scale = 370.0 km + +Current scale = 380.0 km + +Current scale = 390.0 km + +Current scale = 400.0 km + +Current scale = 410.0 km + +Current scale = 420.0 km + +Current scale = 430.0 km + +Current scale = 440.0 km + +Current scale = 450.0 km + +Current scale = 460.0 km + +Current scale = 470.0 km + +Current scale = 480.0 km + +Current scale = 490.0 km + +Current scale = 600.0 km + +Current scale = 700.0 km + +Current scale = 800.0 km + +Current scale = 900.0 km + +Current scale = 1000.0 km + +Current scale = 1100.0 km + +Current scale = 1200.0 km + +Current scale = 1300.0 km + +Current scale = 1400.0 km + +Current scale = 1500.0 km + +Current scale = 1600.0 km + +Current scale = 1700.0 km + +Current scale = 1800.0 km + +Current scale = 1900.0 km + +Current scale = 2000.0 km + +Current scale = 2100.0 km + +Current scale = 2200.0 km + +Current scale = 2300.0 km + +Current scale = 2400.0 km + +Current scale = 2500.0 km + +Current scale = 2600.0 km + +Current scale = 2700.0 km + +Current scale = 2800.0 km + +Current scale = 2900.0 km + +Current scale = 3000.0 km +Combining information from all the scales........ + +Creating a regional filter from the objects at all scales +Finding the limits of the objects +No. OBJECTS is 82 + +Double-check that there is no overlap +WARNING - whilst centre points not in each other's ranges, ranges overlap +Left limit located at [601] is inside limits of object at [589] +2950.000000 (lhs of right object) 2950.000000 (rhs of left object) +WARNING - whilst centre points not in each other's ranges, ranges overlap +Right limit located at [589] is inside limits of object at [601] +2950.000000 (rhs of left object) 2950.000000 (lhs of right object) +WARNING - whilst centre points not in each other's ranges, ranges overlap +Left limit located at [963] is inside limits of object at [959] +4810.000000 (lhs of right object) 4810.000000 (rhs of left object) +WARNING - whilst centre points not in each other's ranges, ranges overlap +Right limit located at [959] is inside limits of object at [963] +4810.000000 (rhs of left object) 4810.000000 (lhs of right object) +WARNING - whilst centre points not in each other's ranges, ranges overlap +Left limit located at [1317] is inside limits of object at [1166] +5840.000000 (lhs of right object) 5890.000000 (rhs of left object) +WARNING - whilst centre points not in each other's ranges, ranges overlap +Right limit located at [1166] is inside limits of object at [1317] +5890.000000 (rhs of left object) 5840.000000 (lhs of right object) +WARNING - whilst centre points not in each other's ranges, ranges overlap +Left limit located at [1471] is inside limits of object at [1317] +7290.000000 (lhs of right object) 7330.000000 (rhs of left object) +WARNING - whilst centre points not in each other's ranges, ranges overlap +Right limit located at [1317] is inside limits of object at [1471] +7330.000000 (rhs of left object) 7290.000000 (lhs of right object) +WARNING - whilst centre points not in each other's ranges, ranges overlap +Left limit located at [1877] is inside limits of object at [1859] +9380.000000 (lhs of right object) 9380.000000 (rhs of left object) +WARNING - whilst centre points not in each other's ranges, ranges overlap +Right limit located at [1859] is inside limits of object at [1877] +9380.000000 (rhs of left object) 9380.000000 (lhs of right object) +WARNING - whilst centre points not in each other's ranges, ranges overlap +Left limit located at [2130] is inside limits of object at [2112] +10620.000000 (lhs of right object) 10645.000000 (rhs of left object) +WARNING - whilst centre points not in each other's ranges, ranges overlap +Right limit located at [2112] is inside limits of object at [2130] +10645.000000 (rhs of left object) 10620.000000 (lhs of right object) + +Doing initial interpolation....... +Calculating properties of the object +[45] total outline (inc. base) 20.227335 +[45] total area 2.833252 +area/outline 0.140070 +[57] total outline (inc. base) 20.017199 +[57] total area 1.024780 +area/outline 0.051195 +[69] total outline (inc. base) 20.079092 +[69] total area 2.804565 +area/outline 0.139676 +[116] total outline (inc. base) 229.663971 +[116] total area 1398.475220 +area/outline 6.089223 +[202] total outline (inc. base) 509.871643 +[202] total area 5882.665527 +area/outline 11.537542 +[282] total outline (inc. base) 488.439301 +[282] total area 6027.174316 +area/outline 12.339659 +[320] total outline (inc. base) 60.575119 +[320] total area 46.466675 +area/outline 0.767092 +[407] total outline (inc. base) 430.463043 +[407] total area 4083.135498 +area/outline 9.485450 +[477] total outline (inc. base) 437.179932 +[477] total area 3793.895996 +area/outline 8.678111 +[484] total outline (inc. base) 20.147408 +[484] total area 4.155273 +area/outline 0.206244 +[537] total outline (inc. base) 143.694489 +[537] total area 219.758911 +area/outline 1.529348 +[568] total outline (inc. base) 83.144936 +[568] total area 49.897461 +area/outline 0.600126 +[577] total outline (inc. base) 20.050333 +[577] total area 2.021179 +area/outline 0.100805 +[590] total outline (inc. base) 20.038486 +[590] total area 2.066650 +area/outline 0.103134 +[612] total outline (inc. base) 247.190063 +[612] total area 1795.544434 +area/outline 7.263821 +[647] total outline (inc. base) 197.501816 +[647] total area 1067.934326 +area/outline 5.407213 +[690] total outline (inc. base) 275.617859 +[690] total area 1971.798218 +area/outline 7.154102 +[722] total outline (inc. base) 174.979218 +[722] total area 1087.917847 +area/outline 6.217412 +[763] total outline (inc. base) 245.537247 +[763] total area 807.054443 +area/outline 3.286892 +[802] total outline (inc. base) 165.894699 +[802] total area 704.623047 +area/outline 4.247411 +[833] total outline (inc. base) 111.386795 +[833] total area 352.644348 +area/outline 3.165944 +[849] total outline (inc. base) 83.600807 +[849] total area 198.273621 +area/outline 2.371671 +[944] total outline (inc. base) 618.206909 +[944] total area 4498.513184 +area/outline 7.276711 +[962] total outline (inc. base) 60.024532 +[962] total area 2.562561 +area/outline 0.042692 +[964] total outline (inc. base) 20.066351 +[964] total area 1.789551 +area/outline 0.089182 +[980] total outline (inc. base) 81.736610 +[980] total area 133.825989 +area/outline 1.637283 +[992] total outline (inc. base) 60.090939 +[992] total area 7.907410 +area/outline 0.131591 +[1043] total outline (inc. base) 336.882721 +[1043] total area 3073.811279 +area/outline 9.124277 +[1072] total outline (inc. base) 81.867989 +[1072] total area 125.403442 +area/outline 1.531776 +[1088] total outline (inc. base) 20.222960 +[1088] total area 4.503784 +area/outline 0.222706 +[1117] total outline (inc. base) 40.235828 +[1117] total area 12.512207 +area/outline 0.310972 +[1131] total outline (inc. base) 40.206985 +[1131] total area 14.963989 +area/outline 0.372174 +[1153] total outline (inc. base) 40.010822 +[1153] total area 0.718689 +area/outline 0.017962 +[1178] total outline (inc. base) 240.296631 +[1178] total area 40.146179 +area/outline 0.167069 +[1466] total outline (inc. base) 2997.527344 +[1466] total area 6976.210938 +area/outline 2.327322 +[1484] total outline (inc. base) 263.104706 +[1484] total area 619.801331 +area/outline 2.355721 +[1511] total outline (inc. base) 120.384613 +[1511] total area -2.341003 +area/outline -0.019446 +[1530] total outline (inc. base) 20.111732 +[1530] total area 2.526855 +area/outline 0.125641 +[1579] total outline (inc. base) 228.941986 +[1579] total area 1240.641968 +area/outline 5.419024 +[1629] total outline (inc. base) 288.461578 +[1629] total area 245.840149 +area/outline 0.852246 +[1641] total outline (inc. base) 20.038572 +[1641] total area 1.872559 +area/outline 0.093448 +[1673] total outline (inc. base) 123.587570 +[1673] total area 307.466431 +area/outline 2.487843 +[1715] total outline (inc. base) 299.867950 +[1715] total area 2663.637451 +area/outline 8.882701 +[1753] total outline (inc. base) 194.423172 +[1753] total area 1006.314453 +area/outline 5.175898 +[1786] total outline (inc. base) 122.535400 +[1786] total area 299.238281 +area/outline 2.442056 +[1816] total outline (inc. base) 186.215759 +[1816] total area 770.854492 +area/outline 4.139577 +[1828] total outline (inc. base) 20.107641 +[1828] total area 3.405151 +area/outline 0.169346 +[1837] total outline (inc. base) 20.215961 +[1837] total area 4.548035 +area/outline 0.224972 +[1876] total outline (inc. base) 354.902466 +[1876] total area 2270.604492 +area/outline 6.397827 +[1878] total outline (inc. base) 20.047644 +[1878] total area 2.275085 +area/outline 0.113484 +[1904] total outline (inc. base) 20.102831 +[1904] total area 2.362976 +area/outline 0.117544 +[1970] total outline (inc. base) 595.588013 +[1970] total area 5037.203613 +area/outline 8.457530 +[1980] total outline (inc. base) 20.289158 +[1980] total area 3.975220 +area/outline 0.195928 +[2054] total outline (inc. base) 478.314209 +[2054] total area 4293.770020 +area/outline 8.976882 +[2129] total outline (inc. base) 362.984375 +[2129] total area 984.221008 +area/outline 2.711469 +[2136] total outline (inc. base) 129.641876 +[2136] total area 27.765503 +area/outline 0.214171 +[2166] total outline (inc. base) 84.596802 +[2166] total area 172.095032 +area/outline 2.034297 +[2175] total outline (inc. base) 40.275398 +[2175] total area 16.576538 +area/outline 0.411580 +[2185] total outline (inc. base) 41.758518 +[2185] total area 45.544434 +area/outline 1.090662 +[2237] total outline (inc. base) 346.060669 +[2237] total area 4141.139648 +area/outline 11.966514 +[2288] total outline (inc. base) 213.296936 +[2288] total area 1349.955811 +area/outline 6.328998 +[2296] total outline (inc. base) 20.005396 +[2296] total area 0.662842 +area/outline 0.033133 +[2327] total outline (inc. base) 200.897064 +[2327] total area 1383.392700 +area/outline 6.886077 +[2368] total outline (inc. base) 223.016388 +[2368] total area 1956.122314 +area/outline 8.771204 +[2412] total outline (inc. base) 302.778229 +[2412] total area 2978.267822 +area/outline 9.836466 +[2430] total outline (inc. base) 60.010639 +[2430] total area -4.716492 +area/outline -0.078594 +[2514] total outline (inc. base) 593.320312 +[2514] total area 3703.479980 +area/outline 6.241957 +[2530] total outline (inc. base) 20.033529 +[2530] total area 1.206665 +area/outline 0.060232 +[2539] total outline (inc. base) 20.007113 +[2539] total area 0.942688 +area/outline 0.047118 +[2556] total outline (inc. base) 121.213425 +[2556] total area 192.074280 +area/outline 1.584596 +[2590] total outline (inc. base) 80.705040 +[2590] total area 65.500793 +area/outline 0.811607 +[2652] total outline (inc. base) 296.986359 +[2652] total area 1439.215576 +area/outline 4.846066 +[2676] total outline (inc. base) 80.142944 +[2676] total area 35.954285 +area/outline 0.448627 +[2717] total outline (inc. base) 60.213505 +[2717] total area 26.418457 +area/outline 0.438746 +[2802] total outline (inc. base) 486.523163 +[2802] total area 2981.175293 +area/outline 6.127510 +[2888] total outline (inc. base) 407.050690 +[2888] total area 821.405640 +area/outline 2.017944 +[2897] total outline (inc. base) 60.273956 +[2897] total area 18.238525 +area/outline 0.302594 +[2936] total outline (inc. base) 226.831802 +[2936] total area 1219.061523 +area/outline 5.374297 +[2964] total outline (inc. base) 20.014774 +[2964] total area 1.034546 +area/outline 0.051689 +[3026] total outline (inc. base) 231.628250 +[3026] total area 1415.076172 +area/outline 6.109255 +[3068] total outline (inc. base) 140.414383 +[3068] total area 116.067505 +area/outline 0.826607 +[3092] total outline (inc. base) 60.901867 +[3092] total area 61.536255 +area/outline 1.010417 +Summit location: 1383 +WavCombRight[1317] 1467 InsidePosnRHS: 1447 RHSgradient -0.189037 +Summit location: 1383 +WavCombRight[1317] 1468 InsidePosnRHS: 1447 RHSgradient -0.183454 +Summit location: 1383 +WavCombRight[1317] 1469 InsidePosnRHS: 1448 RHSgradient -0.178260 +Summit location: 1383 +WavCombRight[1317] 1470 InsidePosnRHS: 1449 RHSgradient -0.166667 +Summit location: 1383 +WavCombRight[1317] 1471 InsidePosnRHS: 1450 RHSgradient -0.150028 +Summit location: 1383 +WavCombRight[1317] 1472 InsidePosnRHS: 1450 RHSgradient -0.137451 +Summit location: 1383 +WavCombRight[1317] 1473 InsidePosnRHS: 1451 RHSgradient -0.121416 +Summit location: 1383 +WavCombRight[1317] 1474 InsidePosnRHS: 1452 RHSgradient -0.105152 +Summit location: 1383 +WavCombRight[1317] 1475 InsidePosnRHS: 1453 RHSgradient -0.087828 +Summit location: 1383 +WavCombRight[1317] 1476 InsidePosnRHS: 1453 RHSgradient -0.078502 +Summit location: 1383 +WavCombRight[1317] 1477 InsidePosnRHS: 1454 RHSgradient -0.060275 +Summit location: 1383 +WavCombRight[1317] 1478 InsidePosnRHS: 1455 RHSgradient -0.041660 +Summit location: 1383 +WavCombRight[1317] 1479 InsidePosnRHS: 1456 RHSgradient -0.026659 +Summit location: 1383 +WavCombRight[1317] 1480 InsidePosnRHS: 1456 RHSgradient -0.017530 +Summit location: 1383 +WavCombRight[1317] 1481 InsidePosnRHS: 1457 RHSgradient -0.005688 +Summit location: 1383 +WavCombRight[1317] 1482 InsidePosnRHS: 1458 RHSgradient 0.004167 +Summit location: 1383 +WavCombRight[1317] 1483 InsidePosnRHS: 1459 RHSgradient 0.006159 +Summit location: 1383 +WavCombRight[1317] 1484 InsidePosnRHS: 1459 RHSgradient 0.006792 +Summit location: 1383 +WavCombRight[1317] 1485 InsidePosnRHS: 1460 RHSgradient 0.003461 +Summit location: 1383 +WavCombRight[1317] 1486 InsidePosnRHS: 1461 RHSgradient 0.006021 +Summit location: 1383 +WavCombRight[1317] 1487 InsidePosnRHS: 1462 RHSgradient 0.028671 +Summit location: 1383 +WavCombRight[1317] 1488 InsidePosnRHS: 1462 RHSgradient 0.034326 +Summit location: 1383 +WavCombRight[1317] 1489 InsidePosnRHS: 1463 RHSgradient 0.072833 +Summit location: 1383 +WavCombRight[1317] 1490 InsidePosnRHS: 1464 RHSgradient 0.100077 +Summit location: 1383 +WavCombRight[1317] 1491 InsidePosnRHS: 1465 RHSgradient 0.112828 +Summit location: 1383 +WavCombRight[1317] 1492 InsidePosnRHS: 1465 RHSgradient 0.117950 +Summit location: 1383 +WavCombRight[1317] 1493 InsidePosnRHS: 1466 RHSgradient 0.128971 +Summit location: 1383 +WavCombRight[1317] 1494 InsidePosnRHS: 1467 RHSgradient 0.137778 +Summit location: 1383 +WavCombRight[1317] 1495 InsidePosnRHS: 1468 RHSgradient 0.139941 +Summit location: 1383 +WavCombRight[1317] 1496 InsidePosnRHS: 1468 RHSgradient 0.126598 +Summit location: 1383 +WavCombRight[1317] 1497 InsidePosnRHS: 1469 RHSgradient 0.119258 +Summit location: 1383 +WavCombRight[1317] 1498 InsidePosnRHS: 1470 RHSgradient 0.106484 +Summit location: 1383 +WavCombRight[1317] 1499 InsidePosnRHS: 1471 RHSgradient 0.088974 +Summit location: 1383 +WavCombRight[1317] 1500 InsidePosnRHS: 1471 RHSgradient 0.078391 +Summit location: 1383 +WavCombRight[1317] 1501 InsidePosnRHS: 1472 RHSgradient 0.076912 +Summit location: 1383 +WavCombRight[1317] 1502 InsidePosnRHS: 1473 RHSgradient 0.080984 +Summit location: 1383 +WavCombRight[1317] 1503 InsidePosnRHS: 1474 RHSgradient 0.081839 +Summit location: 1383 +WavCombRight[1317] 1504 InsidePosnRHS: 1474 RHSgradient 0.079778 +Summit location: 1383 +WavCombRight[1317] 1505 InsidePosnRHS: 1475 RHSgradient 0.076222 +Summit location: 1383 +WavCombRight[1317] 1506 InsidePosnRHS: 1476 RHSgradient 0.072667 +Summit location: 1383 +WavCombRight[1317] 1507 InsidePosnRHS: 1477 RHSgradient 0.068414 +Summit location: 1383 +WavCombRight[1317] 1508 InsidePosnRHS: 1477 RHSgradient 0.066853 +Summit location: 1383 +WavCombRight[1317] 1509 InsidePosnRHS: 1478 RHSgradient 0.061877 +Summit location: 1383 +WavCombRight[1317] 1510 InsidePosnRHS: 1479 RHSgradient 0.056775 +Summit location: 1383 +WavCombRight[1317] 1511 InsidePosnRHS: 1480 RHSgradient 0.051212 +Summit location: 1383 +WavCombRight[1317] 1512 InsidePosnRHS: 1480 RHSgradient 0.050237 +Summit location: 1383 +WavCombRight[1317] 1513 InsidePosnRHS: 1481 RHSgradient 0.049192 +Summit location: 1383 +WavCombRight[1317] 1514 InsidePosnRHS: 1482 RHSgradient 0.054898 +Summit location: 1383 +WavCombRight[1317] 1515 InsidePosnRHS: 1483 RHSgradient 0.064050 +Summit location: 1383 +WavCombRight[1317] 1516 InsidePosnRHS: 1483 RHSgradient 0.072978 +Summit location: 1383 +WavCombRight[1317] 1517 InsidePosnRHS: 1484 RHSgradient 0.083673 +Summit location: 1383 +WavCombRight[1317] 1518 InsidePosnRHS: 1485 RHSgradient 0.092727 +Summit location: 1383 +WavCombRight[1317] 1519 InsidePosnRHS: 1486 RHSgradient 0.095511 +Summit location: 1383 +WavCombRight[1317] 1520 InsidePosnRHS: 1486 RHSgradient 0.094198 +Summit location: 1383 +WavCombRight[1317] 1521 InsidePosnRHS: 1487 RHSgradient 0.094579 +Summit location: 1383 +WavCombRight[1317] 1522 InsidePosnRHS: 1488 RHSgradient 0.097876 +Summit location: 1383 +WavCombRight[1317] 1523 InsidePosnRHS: 1489 RHSgradient 0.101894 +Summit location: 1383 +WavCombRight[1317] 1524 InsidePosnRHS: 1489 RHSgradient 0.111436 +Summit location: 1383 +WavCombRight[1317] 1525 InsidePosnRHS: 1490 RHSgradient 0.121187 +Summit location: 1383 +WavCombRight[1317] 1526 InsidePosnRHS: 1491 RHSgradient 0.134693 +Summit location: 1383 +WavCombRight[1317] 1527 InsidePosnRHS: 1492 RHSgradient 0.144825 +Summit location: 1383 +WavCombRight[1317] 1528 InsidePosnRHS: 1492 RHSgradient 0.146451 +Summit location: 1383 +WavCombRight[1317] 1529 InsidePosnRHS: 1493 RHSgradient 0.139218 +Summit location: 1383 +WavCombRight[1317] 1530 InsidePosnRHS: 1494 RHSgradient 0.138889 +Summit location: 1383 +WavCombRight[1317] 1531 InsidePosnRHS: 1495 RHSgradient 0.153270 +Summit location: 1383 +WavCombRight[1317] 1532 InsidePosnRHS: 1495 RHSgradient 0.166424 +Summit location: 1383 +WavCombRight[1317] 1533 InsidePosnRHS: 1496 RHSgradient 0.192623 +Summit location: 1383 +WavCombRight[1317] 1534 InsidePosnRHS: 1497 RHSgradient 0.226232 +Summit location: 1383 +WavCombRight[1317] 1535 InsidePosnRHS: 1498 RHSgradient 0.264850 +Summit location: 1383 +WavCombRight[1317] 1536 InsidePosnRHS: 1498 RHSgradient 0.280485 +Summit location: 1383 +WavCombRight[1317] 1537 InsidePosnRHS: 1499 RHSgradient 0.299092 +Summit location: 1383 +WavCombRight[1317] 1538 InsidePosnRHS: 1500 RHSgradient 0.307499 +Summit location: 1383 +WavCombRight[1317] 1539 InsidePosnRHS: 1501 RHSgradient 0.312532 +Summit location: 1383 +WavCombRight[1317] 1540 InsidePosnRHS: 1501 RHSgradient 0.319295 +Summit location: 1383 +WavCombRight[1317] 1541 InsidePosnRHS: 1502 RHSgradient 0.329158 +Summit location: 1383 +WavCombRight[1317] 1542 InsidePosnRHS: 1503 RHSgradient 0.338974 +Summit location: 1383 +WavCombRight[1317] 1543 InsidePosnRHS: 1504 RHSgradient 0.348956 +Summit location: 1383 +WavCombRight[1317] 1544 InsidePosnRHS: 1504 RHSgradient 0.349066 +Summit location: 1383 +WavCombRight[1317] 1545 InsidePosnRHS: 1505 RHSgradient 0.356000 +Summit location: 1383 +WavCombRight[1317] 1546 InsidePosnRHS: 1506 RHSgradient 0.361627 +Summit location: 1383 +WavCombRight[1317] 1547 InsidePosnRHS: 1507 RHSgradient 0.365320 +Summit location: 1383 +WavCombRight[1317] 1548 InsidePosnRHS: 1507 RHSgradient 0.357561 +Summit location: 1383 +WavCombRight[1317] 1549 InsidePosnRHS: 1508 RHSgradient 0.355326 +Summit location: 1383 +WavCombRight[1317] 1550 InsidePosnRHS: 1509 RHSgradient 0.350936 +Summit location: 1383 +WavCombRight[1317] 1551 InsidePosnRHS: 1510 RHSgradient 0.344390 +Summit location: 1383 +WavCombRight[1317] 1552 InsidePosnRHS: 1510 RHSgradient 0.329163 +Summit location: 1383 +WavCombRight[1317] 1553 InsidePosnRHS: 1511 RHSgradient 0.321436 +Summit location: 1383 +WavCombRight[1317] 1554 InsidePosnRHS: 1512 RHSgradient 0.313334 +Summit location: 1383 +WavCombRight[1317] 1555 InsidePosnRHS: 1513 RHSgradient 0.301262 +Summit location: 1383 +WavCombRight[1317] 1556 InsidePosnRHS: 1513 RHSgradient 0.286334 +Summit location: 1383 +WavCombRight[1317] 1557 InsidePosnRHS: 1514 RHSgradient 0.269844 +Summit location: 1383 +WavCombRight[1317] 1558 InsidePosnRHS: 1515 RHSgradient 0.252345 +Summit location: 1383 +WavCombRight[1317] 1559 InsidePosnRHS: 1516 RHSgradient 0.234595 +Summit location: 1383 +WavCombRight[1317] 1560 InsidePosnRHS: 1516 RHSgradient 0.219575 +Summit location: 1383 +WavCombRight[1317] 1561 InsidePosnRHS: 1517 RHSgradient 0.197413 +Summit location: 1383 +WavCombRight[1317] 1562 InsidePosnRHS: 1518 RHSgradient 0.172451 +Summit location: 1383 +WavCombRight[1317] 1563 InsidePosnRHS: 1519 RHSgradient 0.154036 +Summit location: 1383 +WavCombRight[1317] 1564 InsidePosnRHS: 1519 RHSgradient 0.142063 +Summit location: 1383 +WavCombRight[1317] 1565 InsidePosnRHS: 1520 RHSgradient 0.135847 +Summit location: 1383 +WavCombRight[1317] 1566 InsidePosnRHS: 1521 RHSgradient 0.130667 +Summit location: 1383 +WavCombRight[1317] 1567 InsidePosnRHS: 1522 RHSgradient 0.123606 +Summit location: 1383 +WavCombRight[1317] 1568 InsidePosnRHS: 1522 RHSgradient 0.122339 +Summit location: 1383 +WavCombRight[1317] 1569 InsidePosnRHS: 1523 RHSgradient 0.119041 +Summit location: 1383 +WavCombRight[1317] 1570 InsidePosnRHS: 1524 RHSgradient 0.117397 +Summit location: 1383 +WavCombRight[1317] 1571 InsidePosnRHS: 1525 RHSgradient 0.113380 +Summit location: 1383 +WavCombRight[1317] 1572 InsidePosnRHS: 1525 RHSgradient 0.120775 +Summit location: 1383 +WavCombRight[1317] 1573 InsidePosnRHS: 1526 RHSgradient 0.116594 +Summit location: 1383 +WavCombRight[1317] 1574 InsidePosnRHS: 1527 RHSgradient 0.115877 +Summit location: 1383 +WavCombRight[1317] 1489 InsidePosnRHS: 1463 RHSgradient 0.072833 +Summit location: 1383 +WavCombRight[1317] 1490 InsidePosnRHS: 1464 RHSgradient 0.100077 +Summit location: 1383 +WavCombRight[1317] 1491 InsidePosnRHS: 1465 RHSgradient 0.112828 +Summit location: 1383 +WavCombRight[1317] 1492 InsidePosnRHS: 1465 RHSgradient 0.117950 +Summit location: 1383 +WavCombRight[1317] 1493 InsidePosnRHS: 1466 RHSgradient 0.128971 +Summit location: 1383 +WavCombRight[1317] 1494 InsidePosnRHS: 1467 RHSgradient 0.137778 +Summit location: 1383 +WavCombRight[1317] 1495 InsidePosnRHS: 1468 RHSgradient 0.139941 +Summit location: 1383 +WavCombRight[1317] 1496 InsidePosnRHS: 1468 RHSgradient 0.126598 +Summit location: 1383 +WavCombRight[1317] 1497 InsidePosnRHS: 1469 RHSgradient 0.119258 +Summit location: 1383 +WavCombRight[1317] 1498 InsidePosnRHS: 1470 RHSgradient 0.106484 +Summit location: 1383 +WavCombRight[1317] 1499 InsidePosnRHS: 1471 RHSgradient 0.088974 +Summit location: 1383 +WavCombRight[1317] 1500 InsidePosnRHS: 1471 RHSgradient 0.078391 +Summit location: 1383 +WavCombRight[1317] 1501 InsidePosnRHS: 1472 RHSgradient 0.076912 +Summit location: 1383 +WavCombRight[1317] 1502 InsidePosnRHS: 1473 RHSgradient 0.080984 +Summit location: 1383 +WavCombRight[1317] 1503 InsidePosnRHS: 1474 RHSgradient 0.081839 +Summit location: 1383 +WavCombRight[1317] 1504 InsidePosnRHS: 1474 RHSgradient 0.079778 +Summit location: 1383 +WavCombRight[1317] 1505 InsidePosnRHS: 1475 RHSgradient 0.076222 +Summit location: 1383 +WavCombRight[1317] 1506 InsidePosnRHS: 1476 RHSgradient 0.072667 +Summit location: 1383 +WavCombRight[1317] 1507 InsidePosnRHS: 1477 RHSgradient 0.068414 +Summit location: 1383 +WavCombRight[1317] 1508 InsidePosnRHS: 1477 RHSgradient 0.066853 +Summit location: 1383 +WavCombRight[1317] 1509 InsidePosnRHS: 1478 RHSgradient 0.061877 +Summit location: 1383 +WavCombRight[1317] 1510 InsidePosnRHS: 1479 RHSgradient 0.056775 +Summit location: 1383 +WavCombRight[1317] 1511 InsidePosnRHS: 1480 RHSgradient 0.051212 +Summit location: 1383 +WavCombRight[1317] 1512 InsidePosnRHS: 1480 RHSgradient 0.050237 +Summit location: 1383 +WavCombRight[1317] 1513 InsidePosnRHS: 1481 RHSgradient 0.049192 +Summit location: 1383 +WavCombRight[1317] 1514 InsidePosnRHS: 1482 RHSgradient 0.054898 +Summit location: 1383 +WavCombRight[1317] 1515 InsidePosnRHS: 1483 RHSgradient 0.064050 +Summit location: 1383 +WavCombRight[1317] 1516 InsidePosnRHS: 1483 RHSgradient 0.072978 +Summit location: 1383 +WavCombRight[1317] 1517 InsidePosnRHS: 1484 RHSgradient 0.083673 +Summit location: 1383 +WavCombRight[1317] 1518 InsidePosnRHS: 1485 RHSgradient 0.092727 +Summit location: 1383 +WavCombRight[1317] 1519 InsidePosnRHS: 1486 RHSgradient 0.095511 +Summit location: 1383 +WavCombRight[1317] 1520 InsidePosnRHS: 1486 RHSgradient 0.094198 +Summit location: 1383 +WavCombRight[1317] 1521 InsidePosnRHS: 1487 RHSgradient 0.094579 +Summit location: 1383 +WavCombRight[1317] 1522 InsidePosnRHS: 1488 RHSgradient 0.097876 +Summit location: 1383 +WavCombRight[1317] 1523 InsidePosnRHS: 1489 RHSgradient 0.101894 +Summit location: 1383 +WavCombRight[1317] 1524 InsidePosnRHS: 1489 RHSgradient 0.111436 +Summit location: 1383 +WavCombRight[1317] 1525 InsidePosnRHS: 1490 RHSgradient 0.121187 +Summit location: 1383 +WavCombRight[1317] 1526 InsidePosnRHS: 1491 RHSgradient 0.134693 +Summit location: 1383 +WavCombRight[1317] 1527 InsidePosnRHS: 1492 RHSgradient 0.144825 +Summit location: 1383 +WavCombRight[1317] 1528 InsidePosnRHS: 1492 RHSgradient 0.146451 +Summit location: 1383 +WavCombRight[1317] 1529 InsidePosnRHS: 1493 RHSgradient 0.139218 +Summit location: 1383 +WavCombRight[1317] 1530 InsidePosnRHS: 1494 RHSgradient 0.138889 +Summit location: 1383 +WavCombRight[1317] 1531 InsidePosnRHS: 1495 RHSgradient 0.153270 +Summit location: 1383 +WavCombRight[1317] 1532 InsidePosnRHS: 1495 RHSgradient 0.166424 +Summit location: 1383 +WavCombRight[1317] 1533 InsidePosnRHS: 1496 RHSgradient 0.192623 +Summit location: 1383 +WavCombRight[1317] 1534 InsidePosnRHS: 1497 RHSgradient 0.226232 +Summit location: 1383 +WavCombRight[1317] 1535 InsidePosnRHS: 1498 RHSgradient 0.264850 +Summit location: 1383 +WavCombRight[1317] 1536 InsidePosnRHS: 1498 RHSgradient 0.280485 +Summit location: 1383 +WavCombRight[1317] 1537 InsidePosnRHS: 1499 RHSgradient 0.299092 +Summit location: 1383 +WavCombRight[1317] 1538 InsidePosnRHS: 1500 RHSgradient 0.307499 +Summit location: 1383 +WavCombRight[1317] 1539 InsidePosnRHS: 1501 RHSgradient 0.312532 +Summit location: 1383 +WavCombRight[1317] 1540 InsidePosnRHS: 1501 RHSgradient 0.319295 +Summit location: 1383 +WavCombRight[1317] 1541 InsidePosnRHS: 1502 RHSgradient 0.329158 +Summit location: 1383 +WavCombRight[1317] 1542 InsidePosnRHS: 1503 RHSgradient 0.338974 +Summit location: 1383 +WavCombRight[1317] 1543 InsidePosnRHS: 1504 RHSgradient 0.348956 +Summit location: 1383 +WavCombRight[1317] 1544 InsidePosnRHS: 1504 RHSgradient 0.349066 +Summit location: 1383 +WavCombRight[1317] 1545 InsidePosnRHS: 1505 RHSgradient 0.356000 +Summit location: 1383 +WavCombRight[1317] 1546 InsidePosnRHS: 1506 RHSgradient 0.361627 +Summit location: 1383 +WavCombRight[1317] 1547 InsidePosnRHS: 1507 RHSgradient 0.365320 +Summit location: 1383 +WavCombRight[1317] 1548 InsidePosnRHS: 1507 RHSgradient 0.357561 +Summit location: 1383 +WavCombRight[1317] 1549 InsidePosnRHS: 1508 RHSgradient 0.355326 +Summit location: 1383 +WavCombRight[1317] 1550 InsidePosnRHS: 1509 RHSgradient 0.350936 +Summit location: 1383 +WavCombRight[1317] 1551 InsidePosnRHS: 1510 RHSgradient 0.344390 +Summit location: 1383 +WavCombRight[1317] 1552 InsidePosnRHS: 1510 RHSgradient 0.329163 +Summit location: 1383 +WavCombRight[1317] 1553 InsidePosnRHS: 1511 RHSgradient 0.321436 +Summit location: 1383 +WavCombRight[1317] 1554 InsidePosnRHS: 1512 RHSgradient 0.313334 +Summit location: 1383 +WavCombRight[1317] 1555 InsidePosnRHS: 1513 RHSgradient 0.301262 +Summit location: 1383 +WavCombRight[1317] 1556 InsidePosnRHS: 1513 RHSgradient 0.286334 +Summit location: 1383 +WavCombRight[1317] 1557 InsidePosnRHS: 1514 RHSgradient 0.269844 +Summit location: 1383 +WavCombRight[1317] 1558 InsidePosnRHS: 1515 RHSgradient 0.252345 +Summit location: 1383 +WavCombRight[1317] 1559 InsidePosnRHS: 1516 RHSgradient 0.234595 +Summit location: 1383 +WavCombRight[1317] 1560 InsidePosnRHS: 1516 RHSgradient 0.219575 +Summit location: 1383 +WavCombRight[1317] 1561 InsidePosnRHS: 1517 RHSgradient 0.197413 +Summit location: 1383 +WavCombRight[1317] 1562 InsidePosnRHS: 1518 RHSgradient 0.172451 +Summit location: 1383 +WavCombRight[1317] 1563 InsidePosnRHS: 1519 RHSgradient 0.154036 +Summit location: 1383 +WavCombRight[1317] 1564 InsidePosnRHS: 1519 RHSgradient 0.142063 +Summit location: 1383 +WavCombRight[1317] 1565 InsidePosnRHS: 1520 RHSgradient 0.135847 +Summit location: 1383 +WavCombRight[1317] 1566 InsidePosnRHS: 1521 RHSgradient 0.130667 +Summit location: 1383 +WavCombRight[1317] 1567 InsidePosnRHS: 1522 RHSgradient 0.123606 +Summit location: 1383 +WavCombRight[1317] 1568 InsidePosnRHS: 1522 RHSgradient 0.122339 +Summit location: 1383 +WavCombRight[1317] 1569 InsidePosnRHS: 1523 RHSgradient 0.119041 +Summit location: 1383 +WavCombRight[1317] 1570 InsidePosnRHS: 1524 RHSgradient 0.117397 +Summit location: 1383 +WavCombRight[1317] 1571 InsidePosnRHS: 1525 RHSgradient 0.113380 +Summit location: 1383 +WavCombRight[1317] 1572 InsidePosnRHS: 1525 RHSgradient 0.120775 +Summit location: 1383 +WavCombRight[1317] 1573 InsidePosnRHS: 1526 RHSgradient 0.116594 +Summit location: 1383 +WavCombRight[1317] 1574 InsidePosnRHS: 1527 RHSgradient 0.115877 +Summit location: 1383 +WavCombRight[1317] 1489 InsidePosnRHS: 1463 RHSgradient 0.072833 +Summit location: 1383 +WavCombRight[1317] 1490 InsidePosnRHS: 1464 RHSgradient 0.100077 +Summit location: 1383 +WavCombRight[1317] 1491 InsidePosnRHS: 1465 RHSgradient 0.112828 +Summit location: 1383 +WavCombRight[1317] 1492 InsidePosnRHS: 1465 RHSgradient 0.117950 +Summit location: 1383 +WavCombRight[1317] 1493 InsidePosnRHS: 1466 RHSgradient 0.128971 +Summit location: 1383 +WavCombRight[1317] 1494 InsidePosnRHS: 1467 RHSgradient 0.137778 +Summit location: 1383 +WavCombRight[1317] 1495 InsidePosnRHS: 1468 RHSgradient 0.139941 +Summit location: 1383 +WavCombRight[1317] 1496 InsidePosnRHS: 1468 RHSgradient 0.126598 +Summit location: 1383 +WavCombRight[1317] 1497 InsidePosnRHS: 1469 RHSgradient 0.119258 +Summit location: 1383 +WavCombRight[1317] 1498 InsidePosnRHS: 1470 RHSgradient 0.106484 +Summit location: 1383 +WavCombRight[1317] 1499 InsidePosnRHS: 1471 RHSgradient 0.088974 +Summit location: 1383 +WavCombRight[1317] 1500 InsidePosnRHS: 1471 RHSgradient 0.078391 +Summit location: 1383 +WavCombRight[1317] 1501 InsidePosnRHS: 1472 RHSgradient 0.076912 +Summit location: 1383 +WavCombRight[1317] 1502 InsidePosnRHS: 1473 RHSgradient 0.080984 +Summit location: 1383 +WavCombRight[1317] 1503 InsidePosnRHS: 1474 RHSgradient 0.081839 +Summit location: 1383 +WavCombRight[1317] 1504 InsidePosnRHS: 1474 RHSgradient 0.079778 +Summit location: 1383 +WavCombRight[1317] 1505 InsidePosnRHS: 1475 RHSgradient 0.076222 +Summit location: 1383 +WavCombRight[1317] 1506 InsidePosnRHS: 1476 RHSgradient 0.072667 +Summit location: 1383 +WavCombRight[1317] 1507 InsidePosnRHS: 1477 RHSgradient 0.068414 +Summit location: 1383 +WavCombRight[1317] 1508 InsidePosnRHS: 1477 RHSgradient 0.066853 +Summit location: 1383 +WavCombRight[1317] 1509 InsidePosnRHS: 1478 RHSgradient 0.061877 +Summit location: 1383 +WavCombRight[1317] 1510 InsidePosnRHS: 1479 RHSgradient 0.056775 +Summit location: 1383 +WavCombRight[1317] 1511 InsidePosnRHS: 1480 RHSgradient 0.051212 +Summit location: 1383 +WavCombRight[1317] 1512 InsidePosnRHS: 1480 RHSgradient 0.050237 +Summit location: 1383 +WavCombRight[1317] 1513 InsidePosnRHS: 1481 RHSgradient 0.049192 +Summit location: 1383 +WavCombRight[1317] 1514 InsidePosnRHS: 1482 RHSgradient 0.054898 +Summit location: 1383 +WavCombRight[1317] 1515 InsidePosnRHS: 1483 RHSgradient 0.064050 +Summit location: 1383 +WavCombRight[1317] 1516 InsidePosnRHS: 1483 RHSgradient 0.072978 +Summit location: 1383 +WavCombRight[1317] 1517 InsidePosnRHS: 1484 RHSgradient 0.083673 +Summit location: 1383 +WavCombRight[1317] 1518 InsidePosnRHS: 1485 RHSgradient 0.092727 +Summit location: 1383 +WavCombRight[1317] 1519 InsidePosnRHS: 1486 RHSgradient 0.095511 +Summit location: 1383 +WavCombRight[1317] 1520 InsidePosnRHS: 1486 RHSgradient 0.094198 +Summit location: 1383 +WavCombRight[1317] 1521 InsidePosnRHS: 1487 RHSgradient 0.094579 +Summit location: 1383 +WavCombRight[1317] 1522 InsidePosnRHS: 1488 RHSgradient 0.097876 +Summit location: 1383 +WavCombRight[1317] 1523 InsidePosnRHS: 1489 RHSgradient 0.101894 +Summit location: 1383 +WavCombRight[1317] 1524 InsidePosnRHS: 1489 RHSgradient 0.111436 +Summit location: 1383 +WavCombRight[1317] 1525 InsidePosnRHS: 1490 RHSgradient 0.121187 +Summit location: 1383 +WavCombRight[1317] 1526 InsidePosnRHS: 1491 RHSgradient 0.134693 +Summit location: 1383 +WavCombRight[1317] 1527 InsidePosnRHS: 1492 RHSgradient 0.144825 +Summit location: 1383 +WavCombRight[1317] 1528 InsidePosnRHS: 1492 RHSgradient 0.146451 +Summit location: 1383 +WavCombRight[1317] 1529 InsidePosnRHS: 1493 RHSgradient 0.139218 +Summit location: 1383 +WavCombRight[1317] 1530 InsidePosnRHS: 1494 RHSgradient 0.138889 +Summit location: 1383 +WavCombRight[1317] 1531 InsidePosnRHS: 1495 RHSgradient 0.153270 +Summit location: 1383 +WavCombRight[1317] 1532 InsidePosnRHS: 1495 RHSgradient 0.166424 +Summit location: 1383 +WavCombRight[1317] 1533 InsidePosnRHS: 1496 RHSgradient 0.192623 +Summit location: 1383 +WavCombRight[1317] 1534 InsidePosnRHS: 1497 RHSgradient 0.226232 +Summit location: 1383 +WavCombRight[1317] 1535 InsidePosnRHS: 1498 RHSgradient 0.264850 +Summit location: 1383 +WavCombRight[1317] 1536 InsidePosnRHS: 1498 RHSgradient 0.280485 +Summit location: 1383 +WavCombRight[1317] 1537 InsidePosnRHS: 1499 RHSgradient 0.299092 +Summit location: 1383 +WavCombRight[1317] 1538 InsidePosnRHS: 1500 RHSgradient 0.307499 +Summit location: 1383 +WavCombRight[1317] 1539 InsidePosnRHS: 1501 RHSgradient 0.312532 +Summit location: 1383 +WavCombRight[1317] 1540 InsidePosnRHS: 1501 RHSgradient 0.319295 +Summit location: 1383 +WavCombRight[1317] 1541 InsidePosnRHS: 1502 RHSgradient 0.329158 +Summit location: 1383 +WavCombRight[1317] 1542 InsidePosnRHS: 1503 RHSgradient 0.338974 +Summit location: 1383 +WavCombRight[1317] 1543 InsidePosnRHS: 1504 RHSgradient 0.348956 +Summit location: 1383 +WavCombRight[1317] 1544 InsidePosnRHS: 1504 RHSgradient 0.349066 +Summit location: 1383 +WavCombRight[1317] 1545 InsidePosnRHS: 1505 RHSgradient 0.356000 +Summit location: 1383 +WavCombRight[1317] 1546 InsidePosnRHS: 1506 RHSgradient 0.361627 +Summit location: 1383 +WavCombRight[1317] 1547 InsidePosnRHS: 1507 RHSgradient 0.365320 +Summit location: 1383 +WavCombRight[1317] 1548 InsidePosnRHS: 1507 RHSgradient 0.357561 +Summit location: 1383 +WavCombRight[1317] 1549 InsidePosnRHS: 1508 RHSgradient 0.355326 +Summit location: 1383 +WavCombRight[1317] 1550 InsidePosnRHS: 1509 RHSgradient 0.350936 +Summit location: 1383 +WavCombRight[1317] 1551 InsidePosnRHS: 1510 RHSgradient 0.344390 +Summit location: 1383 +WavCombRight[1317] 1552 InsidePosnRHS: 1510 RHSgradient 0.329163 +Summit location: 1383 +WavCombRight[1317] 1553 InsidePosnRHS: 1511 RHSgradient 0.321436 +Summit location: 1383 +WavCombRight[1317] 1554 InsidePosnRHS: 1512 RHSgradient 0.313334 +Summit location: 1383 +WavCombRight[1317] 1555 InsidePosnRHS: 1513 RHSgradient 0.301262 +Summit location: 1383 +WavCombRight[1317] 1556 InsidePosnRHS: 1513 RHSgradient 0.286334 +Summit location: 1383 +WavCombRight[1317] 1557 InsidePosnRHS: 1514 RHSgradient 0.269844 +Summit location: 1383 +WavCombRight[1317] 1558 InsidePosnRHS: 1515 RHSgradient 0.252345 +Summit location: 1383 +WavCombRight[1317] 1559 InsidePosnRHS: 1516 RHSgradient 0.234595 +Summit location: 1383 +WavCombRight[1317] 1560 InsidePosnRHS: 1516 RHSgradient 0.219575 +Summit location: 1383 +WavCombRight[1317] 1561 InsidePosnRHS: 1517 RHSgradient 0.197413 +Summit location: 1383 +WavCombRight[1317] 1562 InsidePosnRHS: 1518 RHSgradient 0.172451 +Summit location: 1383 +WavCombRight[1317] 1563 InsidePosnRHS: 1519 RHSgradient 0.154036 +Summit location: 1383 +WavCombRight[1317] 1564 InsidePosnRHS: 1519 RHSgradient 0.142063 +Summit location: 1383 +WavCombRight[1317] 1565 InsidePosnRHS: 1520 RHSgradient 0.135847 +Summit location: 1383 +WavCombRight[1317] 1566 InsidePosnRHS: 1521 RHSgradient 0.130667 +Summit location: 1383 +WavCombRight[1317] 1567 InsidePosnRHS: 1522 RHSgradient 0.123606 +Summit location: 1383 +WavCombRight[1317] 1568 InsidePosnRHS: 1522 RHSgradient 0.122339 +Summit location: 1383 +WavCombRight[1317] 1569 InsidePosnRHS: 1523 RHSgradient 0.119041 +Summit location: 1383 +WavCombRight[1317] 1570 InsidePosnRHS: 1524 RHSgradient 0.117397 +Summit location: 1383 +WavCombRight[1317] 1571 InsidePosnRHS: 1525 RHSgradient 0.113380 +Summit location: 1383 +WavCombRight[1317] 1572 InsidePosnRHS: 1525 RHSgradient 0.120775 +Summit location: 1383 +WavCombRight[1317] 1573 InsidePosnRHS: 1526 RHSgradient 0.116594 +Summit location: 1383 +WavCombRight[1317] 1574 InsidePosnRHS: 1527 RHSgradient 0.115877 +Summit location: 1383 +WavCombRight[1317] 1575 InsidePosnRHS: 1528 RHSgradient 0.122056 +Summit location: 1383 +WavCombRight[1317] 1489 InsidePosnRHS: 1463 RHSgradient 0.072833 +Summit location: 1383 +WavCombRight[1317] 1490 InsidePosnRHS: 1464 RHSgradient 0.100077 +Summit location: 1383 +WavCombRight[1317] 1491 InsidePosnRHS: 1465 RHSgradient 0.112828 +Summit location: 1383 +WavCombRight[1317] 1492 InsidePosnRHS: 1465 RHSgradient 0.117950 +Summit location: 1383 +WavCombRight[1317] 1493 InsidePosnRHS: 1466 RHSgradient 0.128971 +Summit location: 1383 +WavCombRight[1317] 1494 InsidePosnRHS: 1467 RHSgradient 0.137778 +Summit location: 1383 +WavCombRight[1317] 1495 InsidePosnRHS: 1468 RHSgradient 0.139941 +Summit location: 1383 +WavCombRight[1317] 1496 InsidePosnRHS: 1468 RHSgradient 0.126598 +Summit location: 1383 +WavCombRight[1317] 1497 InsidePosnRHS: 1469 RHSgradient 0.119258 +Summit location: 1383 +WavCombRight[1317] 1498 InsidePosnRHS: 1470 RHSgradient 0.106484 +Summit location: 1383 +WavCombRight[1317] 1499 InsidePosnRHS: 1471 RHSgradient 0.088974 +Summit location: 1383 +WavCombRight[1317] 1500 InsidePosnRHS: 1471 RHSgradient 0.078391 +Summit location: 1383 +WavCombRight[1317] 1501 InsidePosnRHS: 1472 RHSgradient 0.076912 +Summit location: 1383 +WavCombRight[1317] 1502 InsidePosnRHS: 1473 RHSgradient 0.080984 +Summit location: 1383 +WavCombRight[1317] 1503 InsidePosnRHS: 1474 RHSgradient 0.081839 +Summit location: 1383 +WavCombRight[1317] 1504 InsidePosnRHS: 1474 RHSgradient 0.079778 +Summit location: 1383 +WavCombRight[1317] 1505 InsidePosnRHS: 1475 RHSgradient 0.076222 +Summit location: 1383 +WavCombRight[1317] 1506 InsidePosnRHS: 1476 RHSgradient 0.072667 +Summit location: 1383 +WavCombRight[1317] 1507 InsidePosnRHS: 1477 RHSgradient 0.068414 +Summit location: 1383 +WavCombRight[1317] 1508 InsidePosnRHS: 1477 RHSgradient 0.066853 +Summit location: 1383 +WavCombRight[1317] 1509 InsidePosnRHS: 1478 RHSgradient 0.061877 +Summit location: 1383 +WavCombRight[1317] 1510 InsidePosnRHS: 1479 RHSgradient 0.056775 +Summit location: 1383 +WavCombRight[1317] 1511 InsidePosnRHS: 1480 RHSgradient 0.051212 +Summit location: 1383 +WavCombRight[1317] 1512 InsidePosnRHS: 1480 RHSgradient 0.050237 +Summit location: 1383 +WavCombRight[1317] 1513 InsidePosnRHS: 1481 RHSgradient 0.049192 +Summit location: 1383 +WavCombRight[1317] 1514 InsidePosnRHS: 1482 RHSgradient 0.054898 +Summit location: 1383 +WavCombRight[1317] 1515 InsidePosnRHS: 1483 RHSgradient 0.064050 +Summit location: 1383 +WavCombRight[1317] 1516 InsidePosnRHS: 1483 RHSgradient 0.072978 +Summit location: 1383 +WavCombRight[1317] 1517 InsidePosnRHS: 1484 RHSgradient 0.083673 +Summit location: 1383 +WavCombRight[1317] 1518 InsidePosnRHS: 1485 RHSgradient 0.092727 +Summit location: 1383 +WavCombRight[1317] 1519 InsidePosnRHS: 1486 RHSgradient 0.095511 +Summit location: 1383 +WavCombRight[1317] 1520 InsidePosnRHS: 1486 RHSgradient 0.094198 +Summit location: 1383 +WavCombRight[1317] 1521 InsidePosnRHS: 1487 RHSgradient 0.094579 +Summit location: 1383 +WavCombRight[1317] 1522 InsidePosnRHS: 1488 RHSgradient 0.097876 +Summit location: 1383 +WavCombRight[1317] 1523 InsidePosnRHS: 1489 RHSgradient 0.101894 +Summit location: 1383 +WavCombRight[1317] 1524 InsidePosnRHS: 1489 RHSgradient 0.111436 +Summit location: 1383 +WavCombRight[1317] 1525 InsidePosnRHS: 1490 RHSgradient 0.121187 +Summit location: 1383 +WavCombRight[1317] 1526 InsidePosnRHS: 1491 RHSgradient 0.134693 +Summit location: 1383 +WavCombRight[1317] 1527 InsidePosnRHS: 1492 RHSgradient 0.144825 +Summit location: 1383 +WavCombRight[1317] 1528 InsidePosnRHS: 1492 RHSgradient 0.146451 +Summit location: 1383 +WavCombRight[1317] 1529 InsidePosnRHS: 1493 RHSgradient 0.139218 +Summit location: 1383 +WavCombRight[1317] 1530 InsidePosnRHS: 1494 RHSgradient 0.138889 +Summit location: 1383 +WavCombRight[1317] 1531 InsidePosnRHS: 1495 RHSgradient 0.153270 +Summit location: 1383 +WavCombRight[1317] 1532 InsidePosnRHS: 1495 RHSgradient 0.166424 +Summit location: 1383 +WavCombRight[1317] 1533 InsidePosnRHS: 1496 RHSgradient 0.192623 +Summit location: 1383 +WavCombRight[1317] 1534 InsidePosnRHS: 1497 RHSgradient 0.226232 +Summit location: 1383 +WavCombRight[1317] 1535 InsidePosnRHS: 1498 RHSgradient 0.264850 +Summit location: 1383 +WavCombRight[1317] 1536 InsidePosnRHS: 1498 RHSgradient 0.280485 +Summit location: 1383 +WavCombRight[1317] 1537 InsidePosnRHS: 1499 RHSgradient 0.299092 +Summit location: 1383 +WavCombRight[1317] 1538 InsidePosnRHS: 1500 RHSgradient 0.307499 +Summit location: 1383 +WavCombRight[1317] 1539 InsidePosnRHS: 1501 RHSgradient 0.312532 +Summit location: 1383 +WavCombRight[1317] 1540 InsidePosnRHS: 1501 RHSgradient 0.319295 +Summit location: 1383 +WavCombRight[1317] 1541 InsidePosnRHS: 1502 RHSgradient 0.329158 +Summit location: 1383 +WavCombRight[1317] 1542 InsidePosnRHS: 1503 RHSgradient 0.338974 +Summit location: 1383 +WavCombRight[1317] 1543 InsidePosnRHS: 1504 RHSgradient 0.348956 +Summit location: 1383 +WavCombRight[1317] 1544 InsidePosnRHS: 1504 RHSgradient 0.349066 +Summit location: 1383 +WavCombRight[1317] 1545 InsidePosnRHS: 1505 RHSgradient 0.356000 +Summit location: 1383 +WavCombRight[1317] 1546 InsidePosnRHS: 1506 RHSgradient 0.361627 +Summit location: 1383 +WavCombRight[1317] 1547 InsidePosnRHS: 1507 RHSgradient 0.365320 +Summit location: 1383 +WavCombRight[1317] 1548 InsidePosnRHS: 1507 RHSgradient 0.357561 +Summit location: 1383 +WavCombRight[1317] 1549 InsidePosnRHS: 1508 RHSgradient 0.355326 +Summit location: 1383 +WavCombRight[1317] 1550 InsidePosnRHS: 1509 RHSgradient 0.350936 +Summit location: 1383 +WavCombRight[1317] 1551 InsidePosnRHS: 1510 RHSgradient 0.344390 +Summit location: 1383 +WavCombRight[1317] 1552 InsidePosnRHS: 1510 RHSgradient 0.329163 +Summit location: 1383 +WavCombRight[1317] 1553 InsidePosnRHS: 1511 RHSgradient 0.321436 +Summit location: 1383 +WavCombRight[1317] 1554 InsidePosnRHS: 1512 RHSgradient 0.313334 +Summit location: 1383 +WavCombRight[1317] 1555 InsidePosnRHS: 1513 RHSgradient 0.301262 +Summit location: 1383 +WavCombRight[1317] 1556 InsidePosnRHS: 1513 RHSgradient 0.286334 +Summit location: 1383 +WavCombRight[1317] 1557 InsidePosnRHS: 1514 RHSgradient 0.269844 +Summit location: 1383 +WavCombRight[1317] 1558 InsidePosnRHS: 1515 RHSgradient 0.252345 +Summit location: 1383 +WavCombRight[1317] 1559 InsidePosnRHS: 1516 RHSgradient 0.234595 +Summit location: 1383 +WavCombRight[1317] 1560 InsidePosnRHS: 1516 RHSgradient 0.219575 +Summit location: 1383 +WavCombRight[1317] 1561 InsidePosnRHS: 1517 RHSgradient 0.197413 +Summit location: 1383 +WavCombRight[1317] 1562 InsidePosnRHS: 1518 RHSgradient 0.172451 +Summit location: 1383 +WavCombRight[1317] 1563 InsidePosnRHS: 1519 RHSgradient 0.154036 +Summit location: 1383 +WavCombRight[1317] 1564 InsidePosnRHS: 1519 RHSgradient 0.142063 +Summit location: 1383 +WavCombRight[1317] 1565 InsidePosnRHS: 1520 RHSgradient 0.135847 +Summit location: 1383 +WavCombRight[1317] 1566 InsidePosnRHS: 1521 RHSgradient 0.130667 +Summit location: 1383 +WavCombRight[1317] 1567 InsidePosnRHS: 1522 RHSgradient 0.123606 +Summit location: 1383 +WavCombRight[1317] 1568 InsidePosnRHS: 1522 RHSgradient 0.122339 +Summit location: 1383 +WavCombRight[1317] 1569 InsidePosnRHS: 1523 RHSgradient 0.119041 +Summit location: 1383 +WavCombRight[1317] 1570 InsidePosnRHS: 1524 RHSgradient 0.117397 +Summit location: 1383 +WavCombRight[1317] 1571 InsidePosnRHS: 1525 RHSgradient 0.113380 +Summit location: 1383 +WavCombRight[1317] 1572 InsidePosnRHS: 1525 RHSgradient 0.120775 +Summit location: 1383 +WavCombRight[1317] 1573 InsidePosnRHS: 1526 RHSgradient 0.116594 +Summit location: 1383 +WavCombRight[1317] 1574 InsidePosnRHS: 1527 RHSgradient 0.115877 +Summit location: 1383 +WavCombRight[1317] 1575 InsidePosnRHS: 1528 RHSgradient 0.122056 +Summit location: 1383 +WavCombRight[1317] 1576 InsidePosnRHS: 1528 RHSgradient 0.125696 +Summit location: 1383 +WavCombRight[1317] 1577 InsidePosnRHS: 1529 RHSgradient 0.129908 +Summit location: 1383 +WavCombRight[1317] 1578 InsidePosnRHS: 1530 RHSgradient 0.131250 +Summit location: 1383 +WavCombRight[1317] 1579 InsidePosnRHS: 1531 RHSgradient 0.129652 +Summit location: 1383 +WavCombRight[1317] 1580 InsidePosnRHS: 1531 RHSgradient 0.136868 +Summit location: 1383 +WavCombRight[1317] 1581 InsidePosnRHS: 1532 RHSgradient 0.130933 +Summit location: 1383 +WavCombRight[1317] 1582 InsidePosnRHS: 1533 RHSgradient 0.119657 +Summit location: 1383 +WavCombRight[1317] 1583 InsidePosnRHS: 1534 RHSgradient 0.102877 +Summit location: 1383 +WavCombRight[1317] 1584 InsidePosnRHS: 1534 RHSgradient 0.104188 +Summit location: 1383 +WavCombRight[1317] 1585 InsidePosnRHS: 1535 RHSgradient 0.086534 +Summit location: 1383 +WavCombRight[1317] 1586 InsidePosnRHS: 1536 RHSgradient 0.074131 +Summit location: 1383 +WavCombRight[1317] 1587 InsidePosnRHS: 1537 RHSgradient 0.070731 +Summit location: 1383 +WavCombRight[1317] 1588 InsidePosnRHS: 1537 RHSgradient 0.071195 +Summit location: 1383 +WavCombRight[1317] 1589 InsidePosnRHS: 1538 RHSgradient 0.070506 +Summit location: 1383 +WavCombRight[1317] 1590 InsidePosnRHS: 1539 RHSgradient 0.066275 +Summit location: 1383 +WavCombRight[1317] 1591 InsidePosnRHS: 1540 RHSgradient 0.056143 +Summit location: 1383 +WavCombRight[1317] 1592 InsidePosnRHS: 1540 RHSgradient 0.056089 +Summit location: 1383 +WavCombRight[1317] 1593 InsidePosnRHS: 1541 RHSgradient 0.044890 +Summit location: 1383 +WavCombRight[1317] 1594 InsidePosnRHS: 1542 RHSgradient 0.034822 +Summit location: 1383 +WavCombRight[1317] 1595 InsidePosnRHS: 1543 RHSgradient 0.025740 +Summit location: 1383 +WavCombRight[1317] 1596 InsidePosnRHS: 1543 RHSgradient 0.022466 +Summit location: 1383 +WavCombRight[1317] 1597 InsidePosnRHS: 1544 RHSgradient 0.011177 +Summit location: 1383 +WavCombRight[1317] 1598 InsidePosnRHS: 1545 RHSgradient -0.000391 +Summit location: 1383 +WavCombRight[1317] 1599 InsidePosnRHS: 1546 RHSgradient -0.011417 +Summit location: 1383 +WavCombRight[1317] 1600 InsidePosnRHS: 1546 RHSgradient -0.018833 +Summit location: 1383 +WavCombRight[1317] 1601 InsidePosnRHS: 1547 RHSgradient -0.030365 +Summit location: 1383 +WavCombRight[1317] 1602 InsidePosnRHS: 1548 RHSgradient -0.037408 +Summit location: 1383 +WavCombRight[1317] 1603 InsidePosnRHS: 1549 RHSgradient -0.037119 +Summit location: 1383 +WavCombRight[1317] 1604 InsidePosnRHS: 1549 RHSgradient -0.034509 +Summit location: 1383 +WavCombRight[1317] 1605 InsidePosnRHS: 1550 RHSgradient -0.031061 +Summit location: 1383 +WavCombRight[1317] 1606 InsidePosnRHS: 1551 RHSgradient -0.028431 +Summit location: 1383 +WavCombRight[1317] 1607 InsidePosnRHS: 1552 RHSgradient -0.025168 +Summit location: 1383 +WavCombRight[1317] 1608 InsidePosnRHS: 1552 RHSgradient -0.026515 +Summit location: 1383 +WavCombRight[1317] 1609 InsidePosnRHS: 1553 RHSgradient -0.022293 +Summit location: 1383 +WavCombRight[1317] 1610 InsidePosnRHS: 1554 RHSgradient -0.017264 +Summit location: 1383 +WavCombRight[1317] 1611 InsidePosnRHS: 1555 RHSgradient -0.011532 +Summit location: 1383 +WavCombRight[1317] 1612 InsidePosnRHS: 1555 RHSgradient -0.008634 +Summit location: 1383 +WavCombRight[1317] 1613 InsidePosnRHS: 1556 RHSgradient 0.002631 +Summit location: 1383 +WavCombRight[1317] 1614 InsidePosnRHS: 1557 RHSgradient 0.012281 +Summit location: 1383 +WavCombRight[1317] 1615 InsidePosnRHS: 1558 RHSgradient 0.019137 +Summit location: 1383 +WavCombRight[1317] 1616 InsidePosnRHS: 1558 RHSgradient 0.016404 +Summit location: 1383 +WavCombRight[1317] 1617 InsidePosnRHS: 1559 RHSgradient 0.016788 +Summit location: 1383 +WavCombRight[1317] 1618 InsidePosnRHS: 1560 RHSgradient 0.014200 +Summit location: 1383 +WavCombRight[1317] 1619 InsidePosnRHS: 1561 RHSgradient 0.013817 +Summit location: 1383 +WavCombRight[1317] 1620 InsidePosnRHS: 1561 RHSgradient 0.003394 +Summit location: 1383 +WavCombRight[1317] 1621 InsidePosnRHS: 1562 RHSgradient 0.006628 +Summit location: 1383 +WavCombRight[1317] 1622 InsidePosnRHS: 1563 RHSgradient 0.008225 +Summit location: 1383 +WavCombRight[1317] 1623 InsidePosnRHS: 1564 RHSgradient 0.006522 +Summit location: 1383 +WavCombRight[1317] 1624 InsidePosnRHS: 1564 RHSgradient 0.002306 +Summit location: 1383 +WavCombRight[1317] 1625 InsidePosnRHS: 1565 RHSgradient 0.007430 +Summit location: 1383 +WavCombRight[1317] 1626 InsidePosnRHS: 1566 RHSgradient 0.013667 +Summit location: 1383 +WavCombRight[1317] 1627 InsidePosnRHS: 1567 RHSgradient 0.020553 +Summit location: 1383 +WavCombRight[1317] 1628 InsidePosnRHS: 1567 RHSgradient 0.028787 +Summit location: 1383 +WavCombRight[1317] 1629 InsidePosnRHS: 1568 RHSgradient 0.038764 +Summit location: 1383 +WavCombRight[1317] 1630 InsidePosnRHS: 1569 RHSgradient 0.050482 +Summit location: 1383 +WavCombRight[1317] 1631 InsidePosnRHS: 1570 RHSgradient 0.062017 +Summit location: 1383 +WavCombRight[1317] 1632 InsidePosnRHS: 1570 RHSgradient 0.074189 +Summit location: 1383 +WavCombRight[1317] 1633 InsidePosnRHS: 1571 RHSgradient 0.076366 +Summit location: 1383 +WavCombRight[1317] 1634 InsidePosnRHS: 1572 RHSgradient 0.077476 +Summit location: 1383 +WavCombRight[1317] 1635 InsidePosnRHS: 1573 RHSgradient 0.077191 +Summit location: 1383 +WavCombRight[1317] 1636 InsidePosnRHS: 1573 RHSgradient 0.084117 +Summit location: 1383 +WavCombRight[1317] 1637 InsidePosnRHS: 1574 RHSgradient 0.082976 +Summit location: 1383 +WavCombRight[1317] 1638 InsidePosnRHS: 1575 RHSgradient 0.082540 +Summit location: 1383 +WavCombRight[1317] 1639 InsidePosnRHS: 1576 RHSgradient 0.080922 +Summit location: 1383 +WavCombRight[1317] 1640 InsidePosnRHS: 1576 RHSgradient 0.078996 +Summit location: 1383 +WavCombRight[1317] 1641 InsidePosnRHS: 1577 RHSgradient 0.077872 +Summit location: 1383 +WavCombRight[1317] 1642 InsidePosnRHS: 1578 RHSgradient 0.079659 +Summit location: 1383 +WavCombRight[1317] 1643 InsidePosnRHS: 1579 RHSgradient 0.079150 +Summit location: 1383 +WavCombRight[1317] 1644 InsidePosnRHS: 1579 RHSgradient 0.083267 +Summit location: 1383 +WavCombRight[1317] 1645 InsidePosnRHS: 1580 RHSgradient 0.080428 +Summit location: 1383 +WavCombRight[1317] 1646 InsidePosnRHS: 1581 RHSgradient 0.079369 +Summit location: 1383 +WavCombRight[1317] 1647 InsidePosnRHS: 1582 RHSgradient 0.079951 +Summit location: 1383 +WavCombRight[1317] 1648 InsidePosnRHS: 1582 RHSgradient 0.081266 +Summit location: 1383 +WavCombRight[1317] 1649 InsidePosnRHS: 1583 RHSgradient 0.081364 +Summit location: 1383 +WavCombRight[1317] 1650 InsidePosnRHS: 1584 RHSgradient 0.081212 +Summit location: 1383 +WavCombRight[1317] 1651 InsidePosnRHS: 1585 RHSgradient 0.080623 +Summit location: 1383 +WavCombRight[1317] 1652 InsidePosnRHS: 1585 RHSgradient 0.082385 +Summit location: 1383 +WavCombRight[1317] 1653 InsidePosnRHS: 1586 RHSgradient 0.081097 +Summit location: 1383 +WavCombRight[1317] 1654 InsidePosnRHS: 1587 RHSgradient 0.078405 +Summit location: 1383 +WavCombRight[1317] 1655 InsidePosnRHS: 1588 RHSgradient 0.074598 +Summit location: 1383 +WavCombRight[1317] 1656 InsidePosnRHS: 1588 RHSgradient 0.070671 +Summit location: 1383 +WavCombRight[1317] 1657 InsidePosnRHS: 1589 RHSgradient 0.067209 +Summit location: 1383 +WavCombRight[1317] 1658 InsidePosnRHS: 1590 RHSgradient 0.063666 +Summit location: 1383 +WavCombRight[1317] 1659 InsidePosnRHS: 1591 RHSgradient 0.059712 +Summit location: 1383 +WavCombRight[1317] 1660 InsidePosnRHS: 1591 RHSgradient 0.054726 +Summit location: 1383 +WavCombRight[1317] 1661 InsidePosnRHS: 1592 RHSgradient 0.049071 +Summit location: 1383 +WavCombRight[1317] 1662 InsidePosnRHS: 1593 RHSgradient 0.044058 +Summit location: 1383 +WavCombRight[1317] 1663 InsidePosnRHS: 1594 RHSgradient 0.040939 +Summit location: 1383 +WavCombRight[1317] 1548 InsidePosnRHS: 1507 RHSgradient 0.357561 +Summit location: 1383 +WavCombRight[1317] 1549 InsidePosnRHS: 1508 RHSgradient 0.355326 +Summit location: 1383 +WavCombRight[1317] 1550 InsidePosnRHS: 1509 RHSgradient 0.350936 +Summit location: 1383 +WavCombRight[1317] 1551 InsidePosnRHS: 1510 RHSgradient 0.344390 +Summit location: 1383 +WavCombRight[1317] 1552 InsidePosnRHS: 1510 RHSgradient 0.329163 +Summit location: 1383 +WavCombRight[1317] 1553 InsidePosnRHS: 1511 RHSgradient 0.321436 +Summit location: 1383 +WavCombRight[1317] 1554 InsidePosnRHS: 1512 RHSgradient 0.313334 +Summit location: 1383 +WavCombRight[1317] 1555 InsidePosnRHS: 1513 RHSgradient 0.301262 +Summit location: 1383 +WavCombRight[1317] 1556 InsidePosnRHS: 1513 RHSgradient 0.286334 +Summit location: 1383 +WavCombRight[1317] 1557 InsidePosnRHS: 1514 RHSgradient 0.269844 +Summit location: 1383 +WavCombRight[1317] 1558 InsidePosnRHS: 1515 RHSgradient 0.252345 +Summit location: 1383 +WavCombRight[1317] 1559 InsidePosnRHS: 1516 RHSgradient 0.234595 +Summit location: 1383 +WavCombRight[1317] 1560 InsidePosnRHS: 1516 RHSgradient 0.219575 +Summit location: 1383 +WavCombRight[1317] 1561 InsidePosnRHS: 1517 RHSgradient 0.197413 +Summit location: 1383 +WavCombRight[1317] 1562 InsidePosnRHS: 1518 RHSgradient 0.172451 +Summit location: 1383 +WavCombRight[1317] 1563 InsidePosnRHS: 1519 RHSgradient 0.154036 +Summit location: 1383 +WavCombRight[1317] 1564 InsidePosnRHS: 1519 RHSgradient 0.142063 +Summit location: 1383 +WavCombRight[1317] 1565 InsidePosnRHS: 1520 RHSgradient 0.135847 +Summit location: 1383 +WavCombRight[1317] 1566 InsidePosnRHS: 1521 RHSgradient 0.130667 +Summit location: 1383 +WavCombRight[1317] 1567 InsidePosnRHS: 1522 RHSgradient 0.123606 +Summit location: 1383 +WavCombRight[1317] 1568 InsidePosnRHS: 1522 RHSgradient 0.122339 +Summit location: 1383 +WavCombRight[1317] 1569 InsidePosnRHS: 1523 RHSgradient 0.119041 +Summit location: 1383 +WavCombRight[1317] 1570 InsidePosnRHS: 1524 RHSgradient 0.117397 +Summit location: 1383 +WavCombRight[1317] 1571 InsidePosnRHS: 1525 RHSgradient 0.113380 +Summit location: 1383 +WavCombRight[1317] 1572 InsidePosnRHS: 1525 RHSgradient 0.120775 +Summit location: 1383 +WavCombRight[1317] 1573 InsidePosnRHS: 1526 RHSgradient 0.116594 +Summit location: 1383 +WavCombRight[1317] 1574 InsidePosnRHS: 1527 RHSgradient 0.115877 +Summit location: 1383 +WavCombRight[1317] 1575 InsidePosnRHS: 1528 RHSgradient 0.122056 +Summit location: 1383 +WavCombRight[1317] 1576 InsidePosnRHS: 1528 RHSgradient 0.125696 +Summit location: 1383 +WavCombRight[1317] 1577 InsidePosnRHS: 1529 RHSgradient 0.129908 +Summit location: 1383 +WavCombRight[1317] 1578 InsidePosnRHS: 1530 RHSgradient 0.131250 +Summit location: 1383 +WavCombRight[1317] 1579 InsidePosnRHS: 1531 RHSgradient 0.129652 +Summit location: 1383 +WavCombRight[1317] 1580 InsidePosnRHS: 1531 RHSgradient 0.136868 +Summit location: 1383 +WavCombRight[1317] 1581 InsidePosnRHS: 1532 RHSgradient 0.130933 +Summit location: 1383 +WavCombRight[1317] 1582 InsidePosnRHS: 1533 RHSgradient 0.119657 +Summit location: 1383 +WavCombRight[1317] 1583 InsidePosnRHS: 1534 RHSgradient 0.102877 +Summit location: 1383 +WavCombRight[1317] 1584 InsidePosnRHS: 1534 RHSgradient 0.104188 +Summit location: 1383 +WavCombRight[1317] 1585 InsidePosnRHS: 1535 RHSgradient 0.086534 +Summit location: 1383 +WavCombRight[1317] 1586 InsidePosnRHS: 1536 RHSgradient 0.074131 +Summit location: 1383 +WavCombRight[1317] 1587 InsidePosnRHS: 1537 RHSgradient 0.070731 +Summit location: 1383 +WavCombRight[1317] 1588 InsidePosnRHS: 1537 RHSgradient 0.071195 +Summit location: 1383 +WavCombRight[1317] 1589 InsidePosnRHS: 1538 RHSgradient 0.070506 +Summit location: 1383 +WavCombRight[1317] 1590 InsidePosnRHS: 1539 RHSgradient 0.066275 +Summit location: 1383 +WavCombRight[1317] 1591 InsidePosnRHS: 1540 RHSgradient 0.056143 +Summit location: 1383 +WavCombRight[1317] 1592 InsidePosnRHS: 1540 RHSgradient 0.056089 +Summit location: 1383 +WavCombRight[1317] 1593 InsidePosnRHS: 1541 RHSgradient 0.044890 +Summit location: 1383 +WavCombRight[1317] 1594 InsidePosnRHS: 1542 RHSgradient 0.034822 +Summit location: 1383 +WavCombRight[1317] 1595 InsidePosnRHS: 1543 RHSgradient 0.025740 +Summit location: 1383 +WavCombRight[1317] 1596 InsidePosnRHS: 1543 RHSgradient 0.022466 +Summit location: 1383 +WavCombRight[1317] 1597 InsidePosnRHS: 1544 RHSgradient 0.011177 +Summit location: 1383 +WavCombRight[1317] 1598 InsidePosnRHS: 1545 RHSgradient -0.000391 +Summit location: 1383 +WavCombRight[1317] 1599 InsidePosnRHS: 1546 RHSgradient -0.011417 +Summit location: 1383 +WavCombRight[1317] 1600 InsidePosnRHS: 1546 RHSgradient -0.018833 +Summit location: 1383 +WavCombRight[1317] 1601 InsidePosnRHS: 1547 RHSgradient -0.030365 +Summit location: 1383 +WavCombRight[1317] 1602 InsidePosnRHS: 1548 RHSgradient -0.037408 +Summit location: 1383 +WavCombRight[1317] 1603 InsidePosnRHS: 1549 RHSgradient -0.037119 +Summit location: 1383 +WavCombRight[1317] 1604 InsidePosnRHS: 1549 RHSgradient -0.034509 +Summit location: 1383 +WavCombRight[1317] 1605 InsidePosnRHS: 1550 RHSgradient -0.031061 +Summit location: 1383 +WavCombRight[1317] 1606 InsidePosnRHS: 1551 RHSgradient -0.028431 +Summit location: 1383 +WavCombRight[1317] 1607 InsidePosnRHS: 1552 RHSgradient -0.025168 +Summit location: 1383 +WavCombRight[1317] 1608 InsidePosnRHS: 1552 RHSgradient -0.026515 +Summit location: 1383 +WavCombRight[1317] 1609 InsidePosnRHS: 1553 RHSgradient -0.022293 +Summit location: 1383 +WavCombRight[1317] 1610 InsidePosnRHS: 1554 RHSgradient -0.017264 +Summit location: 1383 +WavCombRight[1317] 1611 InsidePosnRHS: 1555 RHSgradient -0.011532 +Summit location: 1383 +WavCombRight[1317] 1612 InsidePosnRHS: 1555 RHSgradient -0.008634 +Summit location: 1383 +WavCombRight[1317] 1613 InsidePosnRHS: 1556 RHSgradient 0.002631 +Summit location: 1383 +WavCombRight[1317] 1614 InsidePosnRHS: 1557 RHSgradient 0.012281 +Summit location: 1383 +WavCombRight[1317] 1615 InsidePosnRHS: 1558 RHSgradient 0.019137 +Summit location: 1383 +WavCombRight[1317] 1616 InsidePosnRHS: 1558 RHSgradient 0.016404 +Summit location: 1383 +WavCombRight[1317] 1617 InsidePosnRHS: 1559 RHSgradient 0.016788 +Summit location: 1383 +WavCombRight[1317] 1618 InsidePosnRHS: 1560 RHSgradient 0.014200 +Summit location: 1383 +WavCombRight[1317] 1619 InsidePosnRHS: 1561 RHSgradient 0.013817 +Summit location: 1383 +WavCombRight[1317] 1620 InsidePosnRHS: 1561 RHSgradient 0.003394 +Summit location: 1383 +WavCombRight[1317] 1621 InsidePosnRHS: 1562 RHSgradient 0.006628 +Summit location: 1383 +WavCombRight[1317] 1622 InsidePosnRHS: 1563 RHSgradient 0.008225 +Summit location: 1383 +WavCombRight[1317] 1623 InsidePosnRHS: 1564 RHSgradient 0.006522 +Summit location: 1383 +WavCombRight[1317] 1624 InsidePosnRHS: 1564 RHSgradient 0.002306 +Summit location: 1383 +WavCombRight[1317] 1625 InsidePosnRHS: 1565 RHSgradient 0.007430 +Summit location: 1383 +WavCombRight[1317] 1626 InsidePosnRHS: 1566 RHSgradient 0.013667 +Summit location: 1383 +WavCombRight[1317] 1627 InsidePosnRHS: 1567 RHSgradient 0.020553 +Summit location: 1383 +WavCombRight[1317] 1628 InsidePosnRHS: 1567 RHSgradient 0.028787 +Summit location: 1383 +WavCombRight[1317] 1629 InsidePosnRHS: 1568 RHSgradient 0.038764 +Summit location: 1383 +WavCombRight[1317] 1630 InsidePosnRHS: 1569 RHSgradient 0.050482 +Summit location: 1383 +WavCombRight[1317] 1631 InsidePosnRHS: 1570 RHSgradient 0.062017 +Summit location: 1383 +WavCombRight[1317] 1632 InsidePosnRHS: 1570 RHSgradient 0.074189 +Summit location: 1383 +WavCombRight[1317] 1633 InsidePosnRHS: 1571 RHSgradient 0.076366 +Summit location: 1383 +WavCombRight[1317] 1634 InsidePosnRHS: 1572 RHSgradient 0.077476 +Summit location: 1383 +WavCombRight[1317] 1635 InsidePosnRHS: 1573 RHSgradient 0.077191 +Summit location: 1383 +WavCombRight[1317] 1636 InsidePosnRHS: 1573 RHSgradient 0.084117 +Summit location: 1383 +WavCombRight[1317] 1637 InsidePosnRHS: 1574 RHSgradient 0.082976 +Summit location: 1383 +WavCombRight[1317] 1638 InsidePosnRHS: 1575 RHSgradient 0.082540 +Summit location: 1383 +WavCombRight[1317] 1639 InsidePosnRHS: 1576 RHSgradient 0.080922 +Summit location: 1383 +WavCombRight[1317] 1640 InsidePosnRHS: 1576 RHSgradient 0.078996 +Summit location: 1383 +WavCombRight[1317] 1641 InsidePosnRHS: 1577 RHSgradient 0.077872 +Summit location: 1383 +WavCombRight[1317] 1642 InsidePosnRHS: 1578 RHSgradient 0.079659 +Summit location: 1383 +WavCombRight[1317] 1643 InsidePosnRHS: 1579 RHSgradient 0.079150 +Summit location: 1383 +WavCombRight[1317] 1644 InsidePosnRHS: 1579 RHSgradient 0.083267 +Summit location: 1383 +WavCombRight[1317] 1645 InsidePosnRHS: 1580 RHSgradient 0.080428 +Summit location: 1383 +WavCombRight[1317] 1646 InsidePosnRHS: 1581 RHSgradient 0.079369 +Summit location: 1383 +WavCombRight[1317] 1647 InsidePosnRHS: 1582 RHSgradient 0.079951 +Summit location: 1383 +WavCombRight[1317] 1648 InsidePosnRHS: 1582 RHSgradient 0.081266 +Summit location: 1383 +WavCombRight[1317] 1649 InsidePosnRHS: 1583 RHSgradient 0.081364 +Summit location: 1383 +WavCombRight[1317] 1650 InsidePosnRHS: 1584 RHSgradient 0.081212 +Summit location: 1383 +WavCombRight[1317] 1651 InsidePosnRHS: 1585 RHSgradient 0.080623 +Summit location: 1383 +WavCombRight[1317] 1652 InsidePosnRHS: 1585 RHSgradient 0.082385 +Summit location: 1383 +WavCombRight[1317] 1653 InsidePosnRHS: 1586 RHSgradient 0.081097 +Summit location: 1383 +WavCombRight[1317] 1654 InsidePosnRHS: 1587 RHSgradient 0.078405 +Summit location: 1383 +WavCombRight[1317] 1655 InsidePosnRHS: 1588 RHSgradient 0.074598 +Summit location: 1383 +WavCombRight[1317] 1656 InsidePosnRHS: 1588 RHSgradient 0.070671 +Summit location: 1383 +WavCombRight[1317] 1657 InsidePosnRHS: 1589 RHSgradient 0.067209 +Summit location: 1383 +WavCombRight[1317] 1658 InsidePosnRHS: 1590 RHSgradient 0.063666 +Summit location: 1383 +WavCombRight[1317] 1659 InsidePosnRHS: 1591 RHSgradient 0.059712 +Summit location: 1383 +WavCombRight[1317] 1660 InsidePosnRHS: 1591 RHSgradient 0.054726 +Summit location: 1383 +WavCombRight[1317] 1661 InsidePosnRHS: 1592 RHSgradient 0.049071 +Summit location: 1383 +WavCombRight[1317] 1662 InsidePosnRHS: 1593 RHSgradient 0.044058 +Summit location: 1383 +WavCombRight[1317] 1663 InsidePosnRHS: 1594 RHSgradient 0.040939 +Summit location: 1383 +WavCombRight[1317] 1548 InsidePosnRHS: 1507 RHSgradient 0.357561 +Summit location: 1383 +WavCombRight[1317] 1549 InsidePosnRHS: 1508 RHSgradient 0.355326 +Summit location: 1383 +WavCombRight[1317] 1550 InsidePosnRHS: 1509 RHSgradient 0.350936 +Summit location: 1383 +WavCombRight[1317] 1551 InsidePosnRHS: 1510 RHSgradient 0.344390 +Summit location: 1383 +WavCombRight[1317] 1552 InsidePosnRHS: 1510 RHSgradient 0.329163 +Summit location: 1383 +WavCombRight[1317] 1553 InsidePosnRHS: 1511 RHSgradient 0.321436 +Summit location: 1383 +WavCombRight[1317] 1554 InsidePosnRHS: 1512 RHSgradient 0.313334 +Summit location: 1383 +WavCombRight[1317] 1555 InsidePosnRHS: 1513 RHSgradient 0.301262 +Summit location: 1383 +WavCombRight[1317] 1556 InsidePosnRHS: 1513 RHSgradient 0.286334 +Summit location: 1383 +WavCombRight[1317] 1557 InsidePosnRHS: 1514 RHSgradient 0.269844 +Summit location: 1383 +WavCombRight[1317] 1558 InsidePosnRHS: 1515 RHSgradient 0.252345 +Summit location: 1383 +WavCombRight[1317] 1559 InsidePosnRHS: 1516 RHSgradient 0.234595 +Summit location: 1383 +WavCombRight[1317] 1560 InsidePosnRHS: 1516 RHSgradient 0.219575 +Summit location: 1383 +WavCombRight[1317] 1561 InsidePosnRHS: 1517 RHSgradient 0.197413 +Summit location: 1383 +WavCombRight[1317] 1562 InsidePosnRHS: 1518 RHSgradient 0.172451 +Summit location: 1383 +WavCombRight[1317] 1563 InsidePosnRHS: 1519 RHSgradient 0.154036 +Summit location: 1383 +WavCombRight[1317] 1564 InsidePosnRHS: 1519 RHSgradient 0.142063 +Summit location: 1383 +WavCombRight[1317] 1565 InsidePosnRHS: 1520 RHSgradient 0.135847 +Summit location: 1383 +WavCombRight[1317] 1566 InsidePosnRHS: 1521 RHSgradient 0.130667 +Summit location: 1383 +WavCombRight[1317] 1567 InsidePosnRHS: 1522 RHSgradient 0.123606 +Summit location: 1383 +WavCombRight[1317] 1568 InsidePosnRHS: 1522 RHSgradient 0.122339 +Summit location: 1383 +WavCombRight[1317] 1569 InsidePosnRHS: 1523 RHSgradient 0.119041 +Summit location: 1383 +WavCombRight[1317] 1570 InsidePosnRHS: 1524 RHSgradient 0.117397 +Summit location: 1383 +WavCombRight[1317] 1571 InsidePosnRHS: 1525 RHSgradient 0.113380 +Summit location: 1383 +WavCombRight[1317] 1572 InsidePosnRHS: 1525 RHSgradient 0.120775 +Summit location: 1383 +WavCombRight[1317] 1573 InsidePosnRHS: 1526 RHSgradient 0.116594 +Summit location: 1383 +WavCombRight[1317] 1574 InsidePosnRHS: 1527 RHSgradient 0.115877 +Summit location: 1383 +WavCombRight[1317] 1575 InsidePosnRHS: 1528 RHSgradient 0.122056 +Summit location: 1383 +WavCombRight[1317] 1576 InsidePosnRHS: 1528 RHSgradient 0.125696 +Summit location: 1383 +WavCombRight[1317] 1577 InsidePosnRHS: 1529 RHSgradient 0.129908 +Summit location: 1383 +WavCombRight[1317] 1578 InsidePosnRHS: 1530 RHSgradient 0.131250 +Summit location: 1383 +WavCombRight[1317] 1579 InsidePosnRHS: 1531 RHSgradient 0.129652 +Summit location: 1383 +WavCombRight[1317] 1580 InsidePosnRHS: 1531 RHSgradient 0.136868 +Summit location: 1383 +WavCombRight[1317] 1581 InsidePosnRHS: 1532 RHSgradient 0.130933 +Summit location: 1383 +WavCombRight[1317] 1582 InsidePosnRHS: 1533 RHSgradient 0.119657 +Summit location: 1383 +WavCombRight[1317] 1583 InsidePosnRHS: 1534 RHSgradient 0.102877 +Summit location: 1383 +WavCombRight[1317] 1584 InsidePosnRHS: 1534 RHSgradient 0.104188 +Summit location: 1383 +WavCombRight[1317] 1585 InsidePosnRHS: 1535 RHSgradient 0.086534 +Summit location: 1383 +WavCombRight[1317] 1586 InsidePosnRHS: 1536 RHSgradient 0.074131 +Summit location: 1383 +WavCombRight[1317] 1587 InsidePosnRHS: 1537 RHSgradient 0.070731 +Summit location: 1383 +WavCombRight[1317] 1588 InsidePosnRHS: 1537 RHSgradient 0.071195 +Summit location: 1383 +WavCombRight[1317] 1589 InsidePosnRHS: 1538 RHSgradient 0.070506 +Summit location: 1383 +WavCombRight[1317] 1590 InsidePosnRHS: 1539 RHSgradient 0.066275 +Summit location: 1383 +WavCombRight[1317] 1591 InsidePosnRHS: 1540 RHSgradient 0.056143 +Summit location: 1383 +WavCombRight[1317] 1592 InsidePosnRHS: 1540 RHSgradient 0.056089 +Summit location: 1383 +WavCombRight[1317] 1593 InsidePosnRHS: 1541 RHSgradient 0.044890 +Summit location: 1383 +WavCombRight[1317] 1594 InsidePosnRHS: 1542 RHSgradient 0.034822 +Summit location: 1383 +WavCombRight[1317] 1595 InsidePosnRHS: 1543 RHSgradient 0.025740 +Summit location: 1383 +WavCombRight[1317] 1596 InsidePosnRHS: 1543 RHSgradient 0.022466 +Summit location: 1383 +WavCombRight[1317] 1597 InsidePosnRHS: 1544 RHSgradient 0.011177 +Summit location: 1383 +WavCombRight[1317] 1598 InsidePosnRHS: 1545 RHSgradient -0.000391 +Summit location: 1383 +WavCombRight[1317] 1599 InsidePosnRHS: 1546 RHSgradient -0.011417 +Summit location: 1383 +WavCombRight[1317] 1600 InsidePosnRHS: 1546 RHSgradient -0.018833 +Summit location: 1383 +WavCombRight[1317] 1601 InsidePosnRHS: 1547 RHSgradient -0.030365 +Summit location: 1383 +WavCombRight[1317] 1602 InsidePosnRHS: 1548 RHSgradient -0.037408 +Summit location: 1383 +WavCombRight[1317] 1603 InsidePosnRHS: 1549 RHSgradient -0.037119 +Summit location: 1383 +WavCombRight[1317] 1604 InsidePosnRHS: 1549 RHSgradient -0.034509 +Summit location: 1383 +WavCombRight[1317] 1605 InsidePosnRHS: 1550 RHSgradient -0.031061 +Summit location: 1383 +WavCombRight[1317] 1606 InsidePosnRHS: 1551 RHSgradient -0.028431 +Summit location: 1383 +WavCombRight[1317] 1607 InsidePosnRHS: 1552 RHSgradient -0.025168 +Summit location: 1383 +WavCombRight[1317] 1608 InsidePosnRHS: 1552 RHSgradient -0.026515 +Summit location: 1383 +WavCombRight[1317] 1609 InsidePosnRHS: 1553 RHSgradient -0.022293 +Summit location: 1383 +WavCombRight[1317] 1610 InsidePosnRHS: 1554 RHSgradient -0.017264 +Summit location: 1383 +WavCombRight[1317] 1611 InsidePosnRHS: 1555 RHSgradient -0.011532 +Summit location: 1383 +WavCombRight[1317] 1612 InsidePosnRHS: 1555 RHSgradient -0.008634 +Summit location: 1383 +WavCombRight[1317] 1613 InsidePosnRHS: 1556 RHSgradient 0.002631 +Summit location: 1383 +WavCombRight[1317] 1614 InsidePosnRHS: 1557 RHSgradient 0.012281 +Summit location: 1383 +WavCombRight[1317] 1615 InsidePosnRHS: 1558 RHSgradient 0.019137 +Summit location: 1383 +WavCombRight[1317] 1616 InsidePosnRHS: 1558 RHSgradient 0.016404 +Summit location: 1383 +WavCombRight[1317] 1617 InsidePosnRHS: 1559 RHSgradient 0.016788 +Summit location: 1383 +WavCombRight[1317] 1618 InsidePosnRHS: 1560 RHSgradient 0.014200 +Summit location: 1383 +WavCombRight[1317] 1619 InsidePosnRHS: 1561 RHSgradient 0.013817 +Summit location: 1383 +WavCombRight[1317] 1620 InsidePosnRHS: 1561 RHSgradient 0.003394 +Summit location: 1383 +WavCombRight[1317] 1621 InsidePosnRHS: 1562 RHSgradient 0.006628 +Summit location: 1383 +WavCombRight[1317] 1622 InsidePosnRHS: 1563 RHSgradient 0.008225 +Summit location: 1383 +WavCombRight[1317] 1623 InsidePosnRHS: 1564 RHSgradient 0.006522 +Summit location: 1383 +WavCombRight[1317] 1624 InsidePosnRHS: 1564 RHSgradient 0.002306 +Summit location: 1383 +WavCombRight[1317] 1625 InsidePosnRHS: 1565 RHSgradient 0.007430 +Summit location: 1383 +WavCombRight[1317] 1626 InsidePosnRHS: 1566 RHSgradient 0.013667 +Summit location: 1383 +WavCombRight[1317] 1627 InsidePosnRHS: 1567 RHSgradient 0.020553 +Summit location: 1383 +WavCombRight[1317] 1628 InsidePosnRHS: 1567 RHSgradient 0.028787 +Summit location: 1383 +WavCombRight[1317] 1629 InsidePosnRHS: 1568 RHSgradient 0.038764 +Summit location: 1383 +WavCombRight[1317] 1630 InsidePosnRHS: 1569 RHSgradient 0.050482 +Summit location: 1383 +WavCombRight[1317] 1631 InsidePosnRHS: 1570 RHSgradient 0.062017 +Summit location: 1383 +WavCombRight[1317] 1632 InsidePosnRHS: 1570 RHSgradient 0.074189 +Summit location: 1383 +WavCombRight[1317] 1633 InsidePosnRHS: 1571 RHSgradient 0.076366 +Summit location: 1383 +WavCombRight[1317] 1634 InsidePosnRHS: 1572 RHSgradient 0.077476 +Summit location: 1383 +WavCombRight[1317] 1635 InsidePosnRHS: 1573 RHSgradient 0.077191 +Summit location: 1383 +WavCombRight[1317] 1636 InsidePosnRHS: 1573 RHSgradient 0.084117 +Summit location: 1383 +WavCombRight[1317] 1637 InsidePosnRHS: 1574 RHSgradient 0.082976 +Summit location: 1383 +WavCombRight[1317] 1638 InsidePosnRHS: 1575 RHSgradient 0.082540 +Summit location: 1383 +WavCombRight[1317] 1639 InsidePosnRHS: 1576 RHSgradient 0.080922 +Summit location: 1383 +WavCombRight[1317] 1640 InsidePosnRHS: 1576 RHSgradient 0.078996 +Summit location: 1383 +WavCombRight[1317] 1641 InsidePosnRHS: 1577 RHSgradient 0.077872 +Summit location: 1383 +WavCombRight[1317] 1642 InsidePosnRHS: 1578 RHSgradient 0.079659 +Summit location: 1383 +WavCombRight[1317] 1643 InsidePosnRHS: 1579 RHSgradient 0.079150 +Summit location: 1383 +WavCombRight[1317] 1644 InsidePosnRHS: 1579 RHSgradient 0.083267 +Summit location: 1383 +WavCombRight[1317] 1645 InsidePosnRHS: 1580 RHSgradient 0.080428 +Summit location: 1383 +WavCombRight[1317] 1646 InsidePosnRHS: 1581 RHSgradient 0.079369 +Summit location: 1383 +WavCombRight[1317] 1647 InsidePosnRHS: 1582 RHSgradient 0.079951 +Summit location: 1383 +WavCombRight[1317] 1648 InsidePosnRHS: 1582 RHSgradient 0.081266 +Summit location: 1383 +WavCombRight[1317] 1649 InsidePosnRHS: 1583 RHSgradient 0.081364 +Summit location: 1383 +WavCombRight[1317] 1650 InsidePosnRHS: 1584 RHSgradient 0.081212 +Summit location: 1383 +WavCombRight[1317] 1651 InsidePosnRHS: 1585 RHSgradient 0.080623 +Summit location: 1383 +WavCombRight[1317] 1652 InsidePosnRHS: 1585 RHSgradient 0.082385 +Summit location: 1383 +WavCombRight[1317] 1653 InsidePosnRHS: 1586 RHSgradient 0.081097 +Summit location: 1383 +WavCombRight[1317] 1654 InsidePosnRHS: 1587 RHSgradient 0.078405 +Summit location: 1383 +WavCombRight[1317] 1655 InsidePosnRHS: 1588 RHSgradient 0.074598 +Summit location: 1383 +WavCombRight[1317] 1656 InsidePosnRHS: 1588 RHSgradient 0.070671 +Summit location: 1383 +WavCombRight[1317] 1657 InsidePosnRHS: 1589 RHSgradient 0.067209 +Summit location: 1383 +WavCombRight[1317] 1658 InsidePosnRHS: 1590 RHSgradient 0.063666 +Summit location: 1383 +WavCombRight[1317] 1659 InsidePosnRHS: 1591 RHSgradient 0.059712 +Summit location: 1383 +WavCombRight[1317] 1660 InsidePosnRHS: 1591 RHSgradient 0.054726 +Summit location: 1383 +WavCombRight[1317] 1661 InsidePosnRHS: 1592 RHSgradient 0.049071 +Summit location: 1383 +WavCombRight[1317] 1662 InsidePosnRHS: 1593 RHSgradient 0.044058 +Summit location: 1383 +WavCombRight[1317] 1663 InsidePosnRHS: 1594 RHSgradient 0.040939 +Summit location: 1383 +WavCombRight[1317] 1664 InsidePosnRHS: 1594 RHSgradient 0.038097 +Summit location: 1383 +WavCombRight[1317] 1548 InsidePosnRHS: 1507 RHSgradient 0.357561 +Summit location: 1383 +WavCombRight[1317] 1549 InsidePosnRHS: 1508 RHSgradient 0.355326 +Summit location: 1383 +WavCombRight[1317] 1550 InsidePosnRHS: 1509 RHSgradient 0.350936 +Summit location: 1383 +WavCombRight[1317] 1551 InsidePosnRHS: 1510 RHSgradient 0.344390 +Summit location: 1383 +WavCombRight[1317] 1552 InsidePosnRHS: 1510 RHSgradient 0.329163 +Summit location: 1383 +WavCombRight[1317] 1553 InsidePosnRHS: 1511 RHSgradient 0.321436 +Summit location: 1383 +WavCombRight[1317] 1554 InsidePosnRHS: 1512 RHSgradient 0.313334 +Summit location: 1383 +WavCombRight[1317] 1555 InsidePosnRHS: 1513 RHSgradient 0.301262 +Summit location: 1383 +WavCombRight[1317] 1556 InsidePosnRHS: 1513 RHSgradient 0.286334 +Summit location: 1383 +WavCombRight[1317] 1557 InsidePosnRHS: 1514 RHSgradient 0.269844 +Summit location: 1383 +WavCombRight[1317] 1558 InsidePosnRHS: 1515 RHSgradient 0.252345 +Summit location: 1383 +WavCombRight[1317] 1559 InsidePosnRHS: 1516 RHSgradient 0.234595 +Summit location: 1383 +WavCombRight[1317] 1560 InsidePosnRHS: 1516 RHSgradient 0.219575 +Summit location: 1383 +WavCombRight[1317] 1561 InsidePosnRHS: 1517 RHSgradient 0.197413 +Summit location: 1383 +WavCombRight[1317] 1562 InsidePosnRHS: 1518 RHSgradient 0.172451 +Summit location: 1383 +WavCombRight[1317] 1563 InsidePosnRHS: 1519 RHSgradient 0.154036 +Summit location: 1383 +WavCombRight[1317] 1564 InsidePosnRHS: 1519 RHSgradient 0.142063 +Summit location: 1383 +WavCombRight[1317] 1565 InsidePosnRHS: 1520 RHSgradient 0.135847 +Summit location: 1383 +WavCombRight[1317] 1566 InsidePosnRHS: 1521 RHSgradient 0.130667 +Summit location: 1383 +WavCombRight[1317] 1567 InsidePosnRHS: 1522 RHSgradient 0.123606 +Summit location: 1383 +WavCombRight[1317] 1568 InsidePosnRHS: 1522 RHSgradient 0.122339 +Summit location: 1383 +WavCombRight[1317] 1569 InsidePosnRHS: 1523 RHSgradient 0.119041 +Summit location: 1383 +WavCombRight[1317] 1570 InsidePosnRHS: 1524 RHSgradient 0.117397 +Summit location: 1383 +WavCombRight[1317] 1571 InsidePosnRHS: 1525 RHSgradient 0.113380 +Summit location: 1383 +WavCombRight[1317] 1572 InsidePosnRHS: 1525 RHSgradient 0.120775 +Summit location: 1383 +WavCombRight[1317] 1573 InsidePosnRHS: 1526 RHSgradient 0.116594 +Summit location: 1383 +WavCombRight[1317] 1574 InsidePosnRHS: 1527 RHSgradient 0.115877 +Summit location: 1383 +WavCombRight[1317] 1575 InsidePosnRHS: 1528 RHSgradient 0.122056 +Summit location: 1383 +WavCombRight[1317] 1576 InsidePosnRHS: 1528 RHSgradient 0.125696 +Summit location: 1383 +WavCombRight[1317] 1577 InsidePosnRHS: 1529 RHSgradient 0.129908 +Summit location: 1383 +WavCombRight[1317] 1578 InsidePosnRHS: 1530 RHSgradient 0.131250 +Summit location: 1383 +WavCombRight[1317] 1579 InsidePosnRHS: 1531 RHSgradient 0.129652 +Summit location: 1383 +WavCombRight[1317] 1580 InsidePosnRHS: 1531 RHSgradient 0.136868 +Summit location: 1383 +WavCombRight[1317] 1581 InsidePosnRHS: 1532 RHSgradient 0.130933 +Summit location: 1383 +WavCombRight[1317] 1582 InsidePosnRHS: 1533 RHSgradient 0.119657 +Summit location: 1383 +WavCombRight[1317] 1583 InsidePosnRHS: 1534 RHSgradient 0.102877 +Summit location: 1383 +WavCombRight[1317] 1584 InsidePosnRHS: 1534 RHSgradient 0.104188 +Summit location: 1383 +WavCombRight[1317] 1585 InsidePosnRHS: 1535 RHSgradient 0.086534 +Summit location: 1383 +WavCombRight[1317] 1586 InsidePosnRHS: 1536 RHSgradient 0.074131 +Summit location: 1383 +WavCombRight[1317] 1587 InsidePosnRHS: 1537 RHSgradient 0.070731 +Summit location: 1383 +WavCombRight[1317] 1588 InsidePosnRHS: 1537 RHSgradient 0.071195 +Summit location: 1383 +WavCombRight[1317] 1589 InsidePosnRHS: 1538 RHSgradient 0.070506 +Summit location: 1383 +WavCombRight[1317] 1590 InsidePosnRHS: 1539 RHSgradient 0.066275 +Summit location: 1383 +WavCombRight[1317] 1591 InsidePosnRHS: 1540 RHSgradient 0.056143 +Summit location: 1383 +WavCombRight[1317] 1592 InsidePosnRHS: 1540 RHSgradient 0.056089 +Summit location: 1383 +WavCombRight[1317] 1593 InsidePosnRHS: 1541 RHSgradient 0.044890 +Summit location: 1383 +WavCombRight[1317] 1594 InsidePosnRHS: 1542 RHSgradient 0.034822 +Summit location: 1383 +WavCombRight[1317] 1595 InsidePosnRHS: 1543 RHSgradient 0.025740 +Summit location: 1383 +WavCombRight[1317] 1596 InsidePosnRHS: 1543 RHSgradient 0.022466 +Summit location: 1383 +WavCombRight[1317] 1597 InsidePosnRHS: 1544 RHSgradient 0.011177 +Summit location: 1383 +WavCombRight[1317] 1598 InsidePosnRHS: 1545 RHSgradient -0.000391 +Summit location: 1383 +WavCombRight[1317] 1599 InsidePosnRHS: 1546 RHSgradient -0.011417 +Summit location: 1383 +WavCombRight[1317] 1600 InsidePosnRHS: 1546 RHSgradient -0.018833 +Summit location: 1383 +WavCombRight[1317] 1601 InsidePosnRHS: 1547 RHSgradient -0.030365 +Summit location: 1383 +WavCombRight[1317] 1602 InsidePosnRHS: 1548 RHSgradient -0.037408 +Summit location: 1383 +WavCombRight[1317] 1603 InsidePosnRHS: 1549 RHSgradient -0.037119 +Summit location: 1383 +WavCombRight[1317] 1604 InsidePosnRHS: 1549 RHSgradient -0.034509 +Summit location: 1383 +WavCombRight[1317] 1605 InsidePosnRHS: 1550 RHSgradient -0.031061 +Summit location: 1383 +WavCombRight[1317] 1606 InsidePosnRHS: 1551 RHSgradient -0.028431 +Summit location: 1383 +WavCombRight[1317] 1607 InsidePosnRHS: 1552 RHSgradient -0.025168 +Summit location: 1383 +WavCombRight[1317] 1608 InsidePosnRHS: 1552 RHSgradient -0.026515 +Summit location: 1383 +WavCombRight[1317] 1609 InsidePosnRHS: 1553 RHSgradient -0.022293 +Summit location: 1383 +WavCombRight[1317] 1610 InsidePosnRHS: 1554 RHSgradient -0.017264 +Summit location: 1383 +WavCombRight[1317] 1611 InsidePosnRHS: 1555 RHSgradient -0.011532 +Summit location: 1383 +WavCombRight[1317] 1612 InsidePosnRHS: 1555 RHSgradient -0.008634 +Summit location: 1383 +WavCombRight[1317] 1613 InsidePosnRHS: 1556 RHSgradient 0.002631 +Summit location: 1383 +WavCombRight[1317] 1614 InsidePosnRHS: 1557 RHSgradient 0.012281 +Summit location: 1383 +WavCombRight[1317] 1615 InsidePosnRHS: 1558 RHSgradient 0.019137 +Summit location: 1383 +WavCombRight[1317] 1616 InsidePosnRHS: 1558 RHSgradient 0.016404 +Summit location: 1383 +WavCombRight[1317] 1617 InsidePosnRHS: 1559 RHSgradient 0.016788 +Summit location: 1383 +WavCombRight[1317] 1618 InsidePosnRHS: 1560 RHSgradient 0.014200 +Summit location: 1383 +WavCombRight[1317] 1619 InsidePosnRHS: 1561 RHSgradient 0.013817 +Summit location: 1383 +WavCombRight[1317] 1620 InsidePosnRHS: 1561 RHSgradient 0.003394 +Summit location: 1383 +WavCombRight[1317] 1621 InsidePosnRHS: 1562 RHSgradient 0.006628 +Summit location: 1383 +WavCombRight[1317] 1622 InsidePosnRHS: 1563 RHSgradient 0.008225 +Summit location: 1383 +WavCombRight[1317] 1623 InsidePosnRHS: 1564 RHSgradient 0.006522 +Summit location: 1383 +WavCombRight[1317] 1624 InsidePosnRHS: 1564 RHSgradient 0.002306 +Summit location: 1383 +WavCombRight[1317] 1625 InsidePosnRHS: 1565 RHSgradient 0.007430 +Summit location: 1383 +WavCombRight[1317] 1626 InsidePosnRHS: 1566 RHSgradient 0.013667 +Summit location: 1383 +WavCombRight[1317] 1627 InsidePosnRHS: 1567 RHSgradient 0.020553 +Summit location: 1383 +WavCombRight[1317] 1628 InsidePosnRHS: 1567 RHSgradient 0.028787 +Summit location: 1383 +WavCombRight[1317] 1629 InsidePosnRHS: 1568 RHSgradient 0.038764 +Summit location: 1383 +WavCombRight[1317] 1630 InsidePosnRHS: 1569 RHSgradient 0.050482 +Summit location: 1383 +WavCombRight[1317] 1631 InsidePosnRHS: 1570 RHSgradient 0.062017 +Summit location: 1383 +WavCombRight[1317] 1632 InsidePosnRHS: 1570 RHSgradient 0.074189 +Summit location: 1383 +WavCombRight[1317] 1633 InsidePosnRHS: 1571 RHSgradient 0.076366 +Summit location: 1383 +WavCombRight[1317] 1634 InsidePosnRHS: 1572 RHSgradient 0.077476 +Summit location: 1383 +WavCombRight[1317] 1635 InsidePosnRHS: 1573 RHSgradient 0.077191 +Summit location: 1383 +WavCombRight[1317] 1636 InsidePosnRHS: 1573 RHSgradient 0.084117 +Summit location: 1383 +WavCombRight[1317] 1637 InsidePosnRHS: 1574 RHSgradient 0.082976 +Summit location: 1383 +WavCombRight[1317] 1638 InsidePosnRHS: 1575 RHSgradient 0.082540 +Summit location: 1383 +WavCombRight[1317] 1639 InsidePosnRHS: 1576 RHSgradient 0.080922 +Summit location: 1383 +WavCombRight[1317] 1640 InsidePosnRHS: 1576 RHSgradient 0.078996 +Summit location: 1383 +WavCombRight[1317] 1641 InsidePosnRHS: 1577 RHSgradient 0.077872 +Summit location: 1383 +WavCombRight[1317] 1642 InsidePosnRHS: 1578 RHSgradient 0.079659 +Summit location: 1383 +WavCombRight[1317] 1643 InsidePosnRHS: 1579 RHSgradient 0.079150 +Summit location: 1383 +WavCombRight[1317] 1644 InsidePosnRHS: 1579 RHSgradient 0.083267 +Summit location: 1383 +WavCombRight[1317] 1645 InsidePosnRHS: 1580 RHSgradient 0.080428 +Summit location: 1383 +WavCombRight[1317] 1646 InsidePosnRHS: 1581 RHSgradient 0.079369 +Summit location: 1383 +WavCombRight[1317] 1647 InsidePosnRHS: 1582 RHSgradient 0.079951 +Summit location: 1383 +WavCombRight[1317] 1648 InsidePosnRHS: 1582 RHSgradient 0.081266 +Summit location: 1383 +WavCombRight[1317] 1649 InsidePosnRHS: 1583 RHSgradient 0.081364 +Summit location: 1383 +WavCombRight[1317] 1650 InsidePosnRHS: 1584 RHSgradient 0.081212 +Summit location: 1383 +WavCombRight[1317] 1651 InsidePosnRHS: 1585 RHSgradient 0.080623 +Summit location: 1383 +WavCombRight[1317] 1652 InsidePosnRHS: 1585 RHSgradient 0.082385 +Summit location: 1383 +WavCombRight[1317] 1653 InsidePosnRHS: 1586 RHSgradient 0.081097 +Summit location: 1383 +WavCombRight[1317] 1654 InsidePosnRHS: 1587 RHSgradient 0.078405 +Summit location: 1383 +WavCombRight[1317] 1655 InsidePosnRHS: 1588 RHSgradient 0.074598 +Summit location: 1383 +WavCombRight[1317] 1656 InsidePosnRHS: 1588 RHSgradient 0.070671 +Summit location: 1383 +WavCombRight[1317] 1657 InsidePosnRHS: 1589 RHSgradient 0.067209 +Summit location: 1383 +WavCombRight[1317] 1658 InsidePosnRHS: 1590 RHSgradient 0.063666 +Summit location: 1383 +WavCombRight[1317] 1659 InsidePosnRHS: 1591 RHSgradient 0.059712 +Summit location: 1383 +WavCombRight[1317] 1660 InsidePosnRHS: 1591 RHSgradient 0.054726 +Summit location: 1383 +WavCombRight[1317] 1661 InsidePosnRHS: 1592 RHSgradient 0.049071 +Summit location: 1383 +WavCombRight[1317] 1662 InsidePosnRHS: 1593 RHSgradient 0.044058 +Summit location: 1383 +WavCombRight[1317] 1663 InsidePosnRHS: 1594 RHSgradient 0.040939 +Summit location: 1383 +WavCombRight[1317] 1664 InsidePosnRHS: 1594 RHSgradient 0.038097 +Summit location: 1383 +WavCombRight[1317] 1548 InsidePosnRHS: 1507 RHSgradient 0.357561 +Summit location: 1383 +WavCombRight[1317] 1549 InsidePosnRHS: 1508 RHSgradient 0.355326 +Summit location: 1383 +WavCombRight[1317] 1550 InsidePosnRHS: 1509 RHSgradient 0.350936 +Summit location: 1383 +WavCombRight[1317] 1551 InsidePosnRHS: 1510 RHSgradient 0.344390 +Summit location: 1383 +WavCombRight[1317] 1552 InsidePosnRHS: 1510 RHSgradient 0.329163 +Summit location: 1383 +WavCombRight[1317] 1553 InsidePosnRHS: 1511 RHSgradient 0.321436 +Summit location: 1383 +WavCombRight[1317] 1554 InsidePosnRHS: 1512 RHSgradient 0.313334 +Summit location: 1383 +WavCombRight[1317] 1555 InsidePosnRHS: 1513 RHSgradient 0.301262 +Summit location: 1383 +WavCombRight[1317] 1556 InsidePosnRHS: 1513 RHSgradient 0.286334 +Summit location: 1383 +WavCombRight[1317] 1557 InsidePosnRHS: 1514 RHSgradient 0.269844 +Summit location: 1383 +WavCombRight[1317] 1558 InsidePosnRHS: 1515 RHSgradient 0.252345 +Summit location: 1383 +WavCombRight[1317] 1559 InsidePosnRHS: 1516 RHSgradient 0.234595 +Summit location: 1383 +WavCombRight[1317] 1560 InsidePosnRHS: 1516 RHSgradient 0.219575 +Summit location: 1383 +WavCombRight[1317] 1561 InsidePosnRHS: 1517 RHSgradient 0.197413 +Summit location: 1383 +WavCombRight[1317] 1562 InsidePosnRHS: 1518 RHSgradient 0.172451 +Summit location: 1383 +WavCombRight[1317] 1563 InsidePosnRHS: 1519 RHSgradient 0.154036 +Summit location: 1383 +WavCombRight[1317] 1564 InsidePosnRHS: 1519 RHSgradient 0.142063 +Summit location: 1383 +WavCombRight[1317] 1565 InsidePosnRHS: 1520 RHSgradient 0.135847 +Summit location: 1383 +WavCombRight[1317] 1566 InsidePosnRHS: 1521 RHSgradient 0.130667 +Summit location: 1383 +WavCombRight[1317] 1567 InsidePosnRHS: 1522 RHSgradient 0.123606 +Summit location: 1383 +WavCombRight[1317] 1568 InsidePosnRHS: 1522 RHSgradient 0.122339 +Summit location: 1383 +WavCombRight[1317] 1569 InsidePosnRHS: 1523 RHSgradient 0.119041 +Summit location: 1383 +WavCombRight[1317] 1570 InsidePosnRHS: 1524 RHSgradient 0.117397 +Summit location: 1383 +WavCombRight[1317] 1571 InsidePosnRHS: 1525 RHSgradient 0.113380 +Summit location: 1383 +WavCombRight[1317] 1572 InsidePosnRHS: 1525 RHSgradient 0.120775 +Summit location: 1383 +WavCombRight[1317] 1573 InsidePosnRHS: 1526 RHSgradient 0.116594 +Summit location: 1383 +WavCombRight[1317] 1574 InsidePosnRHS: 1527 RHSgradient 0.115877 +Summit location: 1383 +WavCombRight[1317] 1575 InsidePosnRHS: 1528 RHSgradient 0.122056 +Summit location: 1383 +WavCombRight[1317] 1576 InsidePosnRHS: 1528 RHSgradient 0.125696 +Summit location: 1383 +WavCombRight[1317] 1577 InsidePosnRHS: 1529 RHSgradient 0.129908 +Summit location: 1383 +WavCombRight[1317] 1578 InsidePosnRHS: 1530 RHSgradient 0.131250 +Summit location: 1383 +WavCombRight[1317] 1579 InsidePosnRHS: 1531 RHSgradient 0.129652 +Summit location: 1383 +WavCombRight[1317] 1580 InsidePosnRHS: 1531 RHSgradient 0.136868 +Summit location: 1383 +WavCombRight[1317] 1581 InsidePosnRHS: 1532 RHSgradient 0.130933 +Summit location: 1383 +WavCombRight[1317] 1582 InsidePosnRHS: 1533 RHSgradient 0.119657 +Summit location: 1383 +WavCombRight[1317] 1583 InsidePosnRHS: 1534 RHSgradient 0.102877 +Summit location: 1383 +WavCombRight[1317] 1584 InsidePosnRHS: 1534 RHSgradient 0.104188 +Summit location: 1383 +WavCombRight[1317] 1585 InsidePosnRHS: 1535 RHSgradient 0.086534 +Summit location: 1383 +WavCombRight[1317] 1586 InsidePosnRHS: 1536 RHSgradient 0.074131 +Summit location: 1383 +WavCombRight[1317] 1587 InsidePosnRHS: 1537 RHSgradient 0.070731 +Summit location: 1383 +WavCombRight[1317] 1588 InsidePosnRHS: 1537 RHSgradient 0.071195 +Summit location: 1383 +WavCombRight[1317] 1589 InsidePosnRHS: 1538 RHSgradient 0.070506 +Summit location: 1383 +WavCombRight[1317] 1590 InsidePosnRHS: 1539 RHSgradient 0.066275 +Summit location: 1383 +WavCombRight[1317] 1591 InsidePosnRHS: 1540 RHSgradient 0.056143 +Summit location: 1383 +WavCombRight[1317] 1592 InsidePosnRHS: 1540 RHSgradient 0.056089 +Summit location: 1383 +WavCombRight[1317] 1593 InsidePosnRHS: 1541 RHSgradient 0.044890 +Summit location: 1383 +WavCombRight[1317] 1594 InsidePosnRHS: 1542 RHSgradient 0.034822 +Summit location: 1383 +WavCombRight[1317] 1595 InsidePosnRHS: 1543 RHSgradient 0.025740 +Summit location: 1383 +WavCombRight[1317] 1596 InsidePosnRHS: 1543 RHSgradient 0.022466 +Summit location: 1383 +WavCombRight[1317] 1597 InsidePosnRHS: 1544 RHSgradient 0.011177 +Summit location: 1383 +WavCombRight[1317] 1598 InsidePosnRHS: 1545 RHSgradient -0.000391 +Summit location: 1383 +WavCombRight[1317] 1599 InsidePosnRHS: 1546 RHSgradient -0.011417 +Summit location: 1383 +WavCombRight[1317] 1600 InsidePosnRHS: 1546 RHSgradient -0.018833 +Summit location: 1383 +WavCombRight[1317] 1601 InsidePosnRHS: 1547 RHSgradient -0.030365 +Summit location: 1383 +WavCombRight[1317] 1602 InsidePosnRHS: 1548 RHSgradient -0.037408 +Summit location: 1383 +WavCombRight[1317] 1603 InsidePosnRHS: 1549 RHSgradient -0.037119 +Summit location: 1383 +WavCombRight[1317] 1604 InsidePosnRHS: 1549 RHSgradient -0.034509 +Summit location: 1383 +WavCombRight[1317] 1605 InsidePosnRHS: 1550 RHSgradient -0.031061 +Summit location: 1383 +WavCombRight[1317] 1606 InsidePosnRHS: 1551 RHSgradient -0.028431 +Summit location: 1383 +WavCombRight[1317] 1607 InsidePosnRHS: 1552 RHSgradient -0.025168 +Summit location: 1383 +WavCombRight[1317] 1608 InsidePosnRHS: 1552 RHSgradient -0.026515 +Summit location: 1383 +WavCombRight[1317] 1609 InsidePosnRHS: 1553 RHSgradient -0.022293 +Summit location: 1383 +WavCombRight[1317] 1610 InsidePosnRHS: 1554 RHSgradient -0.017264 +Summit location: 1383 +WavCombRight[1317] 1611 InsidePosnRHS: 1555 RHSgradient -0.011532 +Summit location: 1383 +WavCombRight[1317] 1612 InsidePosnRHS: 1555 RHSgradient -0.008634 +Summit location: 1383 +WavCombRight[1317] 1613 InsidePosnRHS: 1556 RHSgradient 0.002631 +Summit location: 1383 +WavCombRight[1317] 1614 InsidePosnRHS: 1557 RHSgradient 0.012281 +Summit location: 1383 +WavCombRight[1317] 1615 InsidePosnRHS: 1558 RHSgradient 0.019137 +Summit location: 1383 +WavCombRight[1317] 1616 InsidePosnRHS: 1558 RHSgradient 0.016404 +Summit location: 1383 +WavCombRight[1317] 1617 InsidePosnRHS: 1559 RHSgradient 0.016788 +Summit location: 1383 +WavCombRight[1317] 1618 InsidePosnRHS: 1560 RHSgradient 0.014200 +Summit location: 1383 +WavCombRight[1317] 1619 InsidePosnRHS: 1561 RHSgradient 0.013817 +Summit location: 1383 +WavCombRight[1317] 1620 InsidePosnRHS: 1561 RHSgradient 0.003394 +Summit location: 1383 +WavCombRight[1317] 1621 InsidePosnRHS: 1562 RHSgradient 0.006628 +Summit location: 1383 +WavCombRight[1317] 1622 InsidePosnRHS: 1563 RHSgradient 0.008225 +Summit location: 1383 +WavCombRight[1317] 1623 InsidePosnRHS: 1564 RHSgradient 0.006522 +Summit location: 1383 +WavCombRight[1317] 1624 InsidePosnRHS: 1564 RHSgradient 0.002306 +Summit location: 1383 +WavCombRight[1317] 1625 InsidePosnRHS: 1565 RHSgradient 0.007430 +Summit location: 1383 +WavCombRight[1317] 1626 InsidePosnRHS: 1566 RHSgradient 0.013667 +Summit location: 1383 +WavCombRight[1317] 1627 InsidePosnRHS: 1567 RHSgradient 0.020553 +Summit location: 1383 +WavCombRight[1317] 1628 InsidePosnRHS: 1567 RHSgradient 0.028787 +Summit location: 1383 +WavCombRight[1317] 1629 InsidePosnRHS: 1568 RHSgradient 0.038764 +Summit location: 1383 +WavCombRight[1317] 1630 InsidePosnRHS: 1569 RHSgradient 0.050482 +Summit location: 1383 +WavCombRight[1317] 1631 InsidePosnRHS: 1570 RHSgradient 0.062017 +Summit location: 1383 +WavCombRight[1317] 1632 InsidePosnRHS: 1570 RHSgradient 0.074189 +Summit location: 1383 +WavCombRight[1317] 1633 InsidePosnRHS: 1571 RHSgradient 0.076366 +Summit location: 1383 +WavCombRight[1317] 1634 InsidePosnRHS: 1572 RHSgradient 0.077476 +Summit location: 1383 +WavCombRight[1317] 1635 InsidePosnRHS: 1573 RHSgradient 0.077191 +Summit location: 1383 +WavCombRight[1317] 1636 InsidePosnRHS: 1573 RHSgradient 0.084117 +Summit location: 1383 +WavCombRight[1317] 1637 InsidePosnRHS: 1574 RHSgradient 0.082976 +Summit location: 1383 +WavCombRight[1317] 1638 InsidePosnRHS: 1575 RHSgradient 0.082540 +Summit location: 1383 +WavCombRight[1317] 1639 InsidePosnRHS: 1576 RHSgradient 0.080922 +Summit location: 1383 +WavCombRight[1317] 1640 InsidePosnRHS: 1576 RHSgradient 0.078996 +Summit location: 1383 +WavCombRight[1317] 1641 InsidePosnRHS: 1577 RHSgradient 0.077872 +Summit location: 1383 +WavCombRight[1317] 1642 InsidePosnRHS: 1578 RHSgradient 0.079659 +Summit location: 1383 +WavCombRight[1317] 1643 InsidePosnRHS: 1579 RHSgradient 0.079150 +Summit location: 1383 +WavCombRight[1317] 1644 InsidePosnRHS: 1579 RHSgradient 0.083267 +Summit location: 1383 +WavCombRight[1317] 1645 InsidePosnRHS: 1580 RHSgradient 0.080428 +Summit location: 1383 +WavCombRight[1317] 1646 InsidePosnRHS: 1581 RHSgradient 0.079369 +Summit location: 1383 +WavCombRight[1317] 1647 InsidePosnRHS: 1582 RHSgradient 0.079951 +Summit location: 1383 +WavCombRight[1317] 1648 InsidePosnRHS: 1582 RHSgradient 0.081266 +Summit location: 1383 +WavCombRight[1317] 1649 InsidePosnRHS: 1583 RHSgradient 0.081364 +Summit location: 1383 +WavCombRight[1317] 1650 InsidePosnRHS: 1584 RHSgradient 0.081212 +Summit location: 1383 +WavCombRight[1317] 1651 InsidePosnRHS: 1585 RHSgradient 0.080623 +Summit location: 1383 +WavCombRight[1317] 1652 InsidePosnRHS: 1585 RHSgradient 0.082385 +Summit location: 1383 +WavCombRight[1317] 1653 InsidePosnRHS: 1586 RHSgradient 0.081097 +Summit location: 1383 +WavCombRight[1317] 1654 InsidePosnRHS: 1587 RHSgradient 0.078405 +Summit location: 1383 +WavCombRight[1317] 1655 InsidePosnRHS: 1588 RHSgradient 0.074598 +Summit location: 1383 +WavCombRight[1317] 1656 InsidePosnRHS: 1588 RHSgradient 0.070671 +Summit location: 1383 +WavCombRight[1317] 1657 InsidePosnRHS: 1589 RHSgradient 0.067209 +Summit location: 1383 +WavCombRight[1317] 1658 InsidePosnRHS: 1590 RHSgradient 0.063666 +Summit location: 1383 +WavCombRight[1317] 1659 InsidePosnRHS: 1591 RHSgradient 0.059712 +Summit location: 1383 +WavCombRight[1317] 1660 InsidePosnRHS: 1591 RHSgradient 0.054726 +Summit location: 1383 +WavCombRight[1317] 1661 InsidePosnRHS: 1592 RHSgradient 0.049071 +Summit location: 1383 +WavCombRight[1317] 1662 InsidePosnRHS: 1593 RHSgradient 0.044058 +Summit location: 1383 +WavCombRight[1317] 1663 InsidePosnRHS: 1594 RHSgradient 0.040939 +Summit location: 1383 +WavCombRight[1317] 1664 InsidePosnRHS: 1594 RHSgradient 0.038097 +Summit location: 1383 +WavCombRight[1317] 1548 InsidePosnRHS: 1507 RHSgradient 0.357561 +Summit location: 1383 +WavCombRight[1317] 1549 InsidePosnRHS: 1508 RHSgradient 0.355326 +Summit location: 1383 +WavCombRight[1317] 1550 InsidePosnRHS: 1509 RHSgradient 0.350936 +Summit location: 1383 +WavCombRight[1317] 1551 InsidePosnRHS: 1510 RHSgradient 0.344390 +Summit location: 1383 +WavCombRight[1317] 1552 InsidePosnRHS: 1510 RHSgradient 0.329163 +Summit location: 1383 +WavCombRight[1317] 1553 InsidePosnRHS: 1511 RHSgradient 0.321436 +Summit location: 1383 +WavCombRight[1317] 1554 InsidePosnRHS: 1512 RHSgradient 0.313334 +Summit location: 1383 +WavCombRight[1317] 1555 InsidePosnRHS: 1513 RHSgradient 0.301262 +Summit location: 1383 +WavCombRight[1317] 1556 InsidePosnRHS: 1513 RHSgradient 0.286334 +Summit location: 1383 +WavCombRight[1317] 1557 InsidePosnRHS: 1514 RHSgradient 0.269844 +Summit location: 1383 +WavCombRight[1317] 1558 InsidePosnRHS: 1515 RHSgradient 0.252345 +Summit location: 1383 +WavCombRight[1317] 1559 InsidePosnRHS: 1516 RHSgradient 0.234595 +Summit location: 1383 +WavCombRight[1317] 1560 InsidePosnRHS: 1516 RHSgradient 0.219575 +Summit location: 1383 +WavCombRight[1317] 1561 InsidePosnRHS: 1517 RHSgradient 0.197413 +Summit location: 1383 +WavCombRight[1317] 1562 InsidePosnRHS: 1518 RHSgradient 0.172451 +Summit location: 1383 +WavCombRight[1317] 1563 InsidePosnRHS: 1519 RHSgradient 0.154036 +Summit location: 1383 +WavCombRight[1317] 1564 InsidePosnRHS: 1519 RHSgradient 0.142063 +Summit location: 1383 +WavCombRight[1317] 1565 InsidePosnRHS: 1520 RHSgradient 0.135847 +Summit location: 1383 +WavCombRight[1317] 1566 InsidePosnRHS: 1521 RHSgradient 0.130667 +Summit location: 1383 +WavCombRight[1317] 1567 InsidePosnRHS: 1522 RHSgradient 0.123606 +Summit location: 1383 +WavCombRight[1317] 1568 InsidePosnRHS: 1522 RHSgradient 0.122339 +Summit location: 1383 +WavCombRight[1317] 1569 InsidePosnRHS: 1523 RHSgradient 0.119041 +Summit location: 1383 +WavCombRight[1317] 1570 InsidePosnRHS: 1524 RHSgradient 0.117397 +Summit location: 1383 +WavCombRight[1317] 1571 InsidePosnRHS: 1525 RHSgradient 0.113380 +Summit location: 1383 +WavCombRight[1317] 1572 InsidePosnRHS: 1525 RHSgradient 0.120775 +Summit location: 1383 +WavCombRight[1317] 1573 InsidePosnRHS: 1526 RHSgradient 0.116594 +Summit location: 1383 +WavCombRight[1317] 1574 InsidePosnRHS: 1527 RHSgradient 0.115877 +Summit location: 1383 +WavCombRight[1317] 1575 InsidePosnRHS: 1528 RHSgradient 0.122056 +Summit location: 1383 +WavCombRight[1317] 1576 InsidePosnRHS: 1528 RHSgradient 0.125696 +Summit location: 1383 +WavCombRight[1317] 1577 InsidePosnRHS: 1529 RHSgradient 0.129908 +Summit location: 1383 +WavCombRight[1317] 1578 InsidePosnRHS: 1530 RHSgradient 0.131250 +Summit location: 1383 +WavCombRight[1317] 1579 InsidePosnRHS: 1531 RHSgradient 0.129652 +Summit location: 1383 +WavCombRight[1317] 1580 InsidePosnRHS: 1531 RHSgradient 0.136868 +Summit location: 1383 +WavCombRight[1317] 1581 InsidePosnRHS: 1532 RHSgradient 0.130933 +Summit location: 1383 +WavCombRight[1317] 1582 InsidePosnRHS: 1533 RHSgradient 0.119657 +Summit location: 1383 +WavCombRight[1317] 1583 InsidePosnRHS: 1534 RHSgradient 0.102877 +Summit location: 1383 +WavCombRight[1317] 1584 InsidePosnRHS: 1534 RHSgradient 0.104188 +Summit location: 1383 +WavCombRight[1317] 1585 InsidePosnRHS: 1535 RHSgradient 0.086534 +Summit location: 1383 +WavCombRight[1317] 1586 InsidePosnRHS: 1536 RHSgradient 0.074131 +Summit location: 1383 +WavCombRight[1317] 1587 InsidePosnRHS: 1537 RHSgradient 0.070731 +Summit location: 1383 +WavCombRight[1317] 1588 InsidePosnRHS: 1537 RHSgradient 0.071195 +Summit location: 1383 +WavCombRight[1317] 1589 InsidePosnRHS: 1538 RHSgradient 0.070506 +Summit location: 1383 +WavCombRight[1317] 1590 InsidePosnRHS: 1539 RHSgradient 0.066275 +Summit location: 1383 +WavCombRight[1317] 1591 InsidePosnRHS: 1540 RHSgradient 0.056143 +Summit location: 1383 +WavCombRight[1317] 1592 InsidePosnRHS: 1540 RHSgradient 0.056089 +Summit location: 1383 +WavCombRight[1317] 1593 InsidePosnRHS: 1541 RHSgradient 0.044890 +Summit location: 1383 +WavCombRight[1317] 1594 InsidePosnRHS: 1542 RHSgradient 0.034822 +Summit location: 1383 +WavCombRight[1317] 1595 InsidePosnRHS: 1543 RHSgradient 0.025740 +Summit location: 1383 +WavCombRight[1317] 1596 InsidePosnRHS: 1543 RHSgradient 0.022466 +Summit location: 1383 +WavCombRight[1317] 1597 InsidePosnRHS: 1544 RHSgradient 0.011177 +Summit location: 1383 +WavCombRight[1317] 1598 InsidePosnRHS: 1545 RHSgradient -0.000391 +Summit location: 1383 +WavCombRight[1317] 1599 InsidePosnRHS: 1546 RHSgradient -0.011417 +Summit location: 1383 +WavCombRight[1317] 1600 InsidePosnRHS: 1546 RHSgradient -0.018833 +Summit location: 1383 +WavCombRight[1317] 1601 InsidePosnRHS: 1547 RHSgradient -0.030365 +Summit location: 1383 +WavCombRight[1317] 1602 InsidePosnRHS: 1548 RHSgradient -0.037408 +Summit location: 1383 +WavCombRight[1317] 1603 InsidePosnRHS: 1549 RHSgradient -0.037119 +Summit location: 1383 +WavCombRight[1317] 1604 InsidePosnRHS: 1549 RHSgradient -0.034509 +Summit location: 1383 +WavCombRight[1317] 1605 InsidePosnRHS: 1550 RHSgradient -0.031061 +Summit location: 1383 +WavCombRight[1317] 1606 InsidePosnRHS: 1551 RHSgradient -0.028431 +Summit location: 1383 +WavCombRight[1317] 1607 InsidePosnRHS: 1552 RHSgradient -0.025168 +Summit location: 1383 +WavCombRight[1317] 1608 InsidePosnRHS: 1552 RHSgradient -0.026515 +Summit location: 1383 +WavCombRight[1317] 1609 InsidePosnRHS: 1553 RHSgradient -0.022293 +Summit location: 1383 +WavCombRight[1317] 1610 InsidePosnRHS: 1554 RHSgradient -0.017264 +Summit location: 1383 +WavCombRight[1317] 1611 InsidePosnRHS: 1555 RHSgradient -0.011532 +Summit location: 1383 +WavCombRight[1317] 1612 InsidePosnRHS: 1555 RHSgradient -0.008634 +Summit location: 1383 +WavCombRight[1317] 1613 InsidePosnRHS: 1556 RHSgradient 0.002631 +Summit location: 1383 +WavCombRight[1317] 1614 InsidePosnRHS: 1557 RHSgradient 0.012281 +Summit location: 1383 +WavCombRight[1317] 1615 InsidePosnRHS: 1558 RHSgradient 0.019137 +Summit location: 1383 +WavCombRight[1317] 1616 InsidePosnRHS: 1558 RHSgradient 0.016404 +Summit location: 1383 +WavCombRight[1317] 1617 InsidePosnRHS: 1559 RHSgradient 0.016788 +Summit location: 1383 +WavCombRight[1317] 1618 InsidePosnRHS: 1560 RHSgradient 0.014200 +Summit location: 1383 +WavCombRight[1317] 1619 InsidePosnRHS: 1561 RHSgradient 0.013817 +Summit location: 1383 +WavCombRight[1317] 1620 InsidePosnRHS: 1561 RHSgradient 0.003394 +Summit location: 1383 +WavCombRight[1317] 1621 InsidePosnRHS: 1562 RHSgradient 0.006628 +Summit location: 1383 +WavCombRight[1317] 1622 InsidePosnRHS: 1563 RHSgradient 0.008225 +Summit location: 1383 +WavCombRight[1317] 1623 InsidePosnRHS: 1564 RHSgradient 0.006522 +Summit location: 1383 +WavCombRight[1317] 1624 InsidePosnRHS: 1564 RHSgradient 0.002306 +Summit location: 1383 +WavCombRight[1317] 1625 InsidePosnRHS: 1565 RHSgradient 0.007430 +Summit location: 1383 +WavCombRight[1317] 1626 InsidePosnRHS: 1566 RHSgradient 0.013667 +Summit location: 1383 +WavCombRight[1317] 1627 InsidePosnRHS: 1567 RHSgradient 0.020553 +Summit location: 1383 +WavCombRight[1317] 1628 InsidePosnRHS: 1567 RHSgradient 0.028787 +Summit location: 1383 +WavCombRight[1317] 1629 InsidePosnRHS: 1568 RHSgradient 0.038764 +Summit location: 1383 +WavCombRight[1317] 1630 InsidePosnRHS: 1569 RHSgradient 0.050482 +Summit location: 1383 +WavCombRight[1317] 1631 InsidePosnRHS: 1570 RHSgradient 0.062017 +Summit location: 1383 +WavCombRight[1317] 1632 InsidePosnRHS: 1570 RHSgradient 0.074189 +Summit location: 1383 +WavCombRight[1317] 1633 InsidePosnRHS: 1571 RHSgradient 0.076366 +Summit location: 1383 +WavCombRight[1317] 1634 InsidePosnRHS: 1572 RHSgradient 0.077476 +Summit location: 1383 +WavCombRight[1317] 1635 InsidePosnRHS: 1573 RHSgradient 0.077191 +Summit location: 1383 +WavCombRight[1317] 1636 InsidePosnRHS: 1573 RHSgradient 0.084117 +Summit location: 1383 +WavCombRight[1317] 1637 InsidePosnRHS: 1574 RHSgradient 0.082976 +Summit location: 1383 +WavCombRight[1317] 1638 InsidePosnRHS: 1575 RHSgradient 0.082540 +Summit location: 1383 +WavCombRight[1317] 1639 InsidePosnRHS: 1576 RHSgradient 0.080922 +Summit location: 1383 +WavCombRight[1317] 1640 InsidePosnRHS: 1576 RHSgradient 0.078996 +Summit location: 1383 +WavCombRight[1317] 1641 InsidePosnRHS: 1577 RHSgradient 0.077872 +Summit location: 1383 +WavCombRight[1317] 1642 InsidePosnRHS: 1578 RHSgradient 0.079659 +Summit location: 1383 +WavCombRight[1317] 1643 InsidePosnRHS: 1579 RHSgradient 0.079150 +Summit location: 1383 +WavCombRight[1317] 1644 InsidePosnRHS: 1579 RHSgradient 0.083267 +Summit location: 1383 +WavCombRight[1317] 1645 InsidePosnRHS: 1580 RHSgradient 0.080428 +Summit location: 1383 +WavCombRight[1317] 1646 InsidePosnRHS: 1581 RHSgradient 0.079369 +Summit location: 1383 +WavCombRight[1317] 1647 InsidePosnRHS: 1582 RHSgradient 0.079951 +Summit location: 1383 +WavCombRight[1317] 1648 InsidePosnRHS: 1582 RHSgradient 0.081266 +Summit location: 1383 +WavCombRight[1317] 1649 InsidePosnRHS: 1583 RHSgradient 0.081364 +Summit location: 1383 +WavCombRight[1317] 1650 InsidePosnRHS: 1584 RHSgradient 0.081212 +Summit location: 1383 +WavCombRight[1317] 1651 InsidePosnRHS: 1585 RHSgradient 0.080623 +Summit location: 1383 +WavCombRight[1317] 1652 InsidePosnRHS: 1585 RHSgradient 0.082385 +Summit location: 1383 +WavCombRight[1317] 1653 InsidePosnRHS: 1586 RHSgradient 0.081097 +Summit location: 1383 +WavCombRight[1317] 1654 InsidePosnRHS: 1587 RHSgradient 0.078405 +Summit location: 1383 +WavCombRight[1317] 1655 InsidePosnRHS: 1588 RHSgradient 0.074598 +Summit location: 1383 +WavCombRight[1317] 1656 InsidePosnRHS: 1588 RHSgradient 0.070671 +Summit location: 1383 +WavCombRight[1317] 1657 InsidePosnRHS: 1589 RHSgradient 0.067209 +Summit location: 1383 +WavCombRight[1317] 1658 InsidePosnRHS: 1590 RHSgradient 0.063666 +Summit location: 1383 +WavCombRight[1317] 1659 InsidePosnRHS: 1591 RHSgradient 0.059712 +Summit location: 1383 +WavCombRight[1317] 1660 InsidePosnRHS: 1591 RHSgradient 0.054726 +Summit location: 1383 +WavCombRight[1317] 1661 InsidePosnRHS: 1592 RHSgradient 0.049071 +Summit location: 1383 +WavCombRight[1317] 1662 InsidePosnRHS: 1593 RHSgradient 0.044058 +Summit location: 1383 +WavCombRight[1317] 1663 InsidePosnRHS: 1594 RHSgradient 0.040939 +Summit location: 1383 +WavCombRight[1317] 1664 InsidePosnRHS: 1594 RHSgradient 0.038097 +Summit location: 1383 +WavCombRight[1317] 1548 InsidePosnRHS: 1507 RHSgradient 0.357561 +Summit location: 1383 +WavCombRight[1317] 1549 InsidePosnRHS: 1508 RHSgradient 0.355326 +Summit location: 1383 +WavCombRight[1317] 1550 InsidePosnRHS: 1509 RHSgradient 0.350936 +Summit location: 1383 +WavCombRight[1317] 1551 InsidePosnRHS: 1510 RHSgradient 0.344390 +Summit location: 1383 +WavCombRight[1317] 1552 InsidePosnRHS: 1510 RHSgradient 0.329163 +Summit location: 1383 +WavCombRight[1317] 1553 InsidePosnRHS: 1511 RHSgradient 0.321436 +Summit location: 1383 +WavCombRight[1317] 1554 InsidePosnRHS: 1512 RHSgradient 0.313334 +Summit location: 1383 +WavCombRight[1317] 1555 InsidePosnRHS: 1513 RHSgradient 0.301262 +Summit location: 1383 +WavCombRight[1317] 1556 InsidePosnRHS: 1513 RHSgradient 0.286334 +Summit location: 1383 +WavCombRight[1317] 1557 InsidePosnRHS: 1514 RHSgradient 0.269844 +Summit location: 1383 +WavCombRight[1317] 1558 InsidePosnRHS: 1515 RHSgradient 0.252345 +Summit location: 1383 +WavCombRight[1317] 1559 InsidePosnRHS: 1516 RHSgradient 0.234595 +Summit location: 1383 +WavCombRight[1317] 1560 InsidePosnRHS: 1516 RHSgradient 0.219575 +Summit location: 1383 +WavCombRight[1317] 1561 InsidePosnRHS: 1517 RHSgradient 0.197413 +Summit location: 1383 +WavCombRight[1317] 1562 InsidePosnRHS: 1518 RHSgradient 0.172451 +Summit location: 1383 +WavCombRight[1317] 1563 InsidePosnRHS: 1519 RHSgradient 0.154036 +Summit location: 1383 +WavCombRight[1317] 1564 InsidePosnRHS: 1519 RHSgradient 0.142063 +Summit location: 1383 +WavCombRight[1317] 1565 InsidePosnRHS: 1520 RHSgradient 0.135847 +Summit location: 1383 +WavCombRight[1317] 1566 InsidePosnRHS: 1521 RHSgradient 0.130667 +Summit location: 1383 +WavCombRight[1317] 1567 InsidePosnRHS: 1522 RHSgradient 0.123606 +Summit location: 1383 +WavCombRight[1317] 1568 InsidePosnRHS: 1522 RHSgradient 0.122339 +Summit location: 1383 +WavCombRight[1317] 1569 InsidePosnRHS: 1523 RHSgradient 0.119041 +Summit location: 1383 +WavCombRight[1317] 1570 InsidePosnRHS: 1524 RHSgradient 0.117397 +Summit location: 1383 +WavCombRight[1317] 1571 InsidePosnRHS: 1525 RHSgradient 0.113380 +Summit location: 1383 +WavCombRight[1317] 1572 InsidePosnRHS: 1525 RHSgradient 0.120775 +Summit location: 1383 +WavCombRight[1317] 1573 InsidePosnRHS: 1526 RHSgradient 0.116594 +Summit location: 1383 +WavCombRight[1317] 1574 InsidePosnRHS: 1527 RHSgradient 0.115877 +Summit location: 1383 +WavCombRight[1317] 1575 InsidePosnRHS: 1528 RHSgradient 0.122056 +Summit location: 1383 +WavCombRight[1317] 1576 InsidePosnRHS: 1528 RHSgradient 0.125696 +Summit location: 1383 +WavCombRight[1317] 1577 InsidePosnRHS: 1529 RHSgradient 0.129908 +Summit location: 1383 +WavCombRight[1317] 1578 InsidePosnRHS: 1530 RHSgradient 0.131250 +Summit location: 1383 +WavCombRight[1317] 1579 InsidePosnRHS: 1531 RHSgradient 0.129652 +Summit location: 1383 +WavCombRight[1317] 1580 InsidePosnRHS: 1531 RHSgradient 0.136868 +Summit location: 1383 +WavCombRight[1317] 1581 InsidePosnRHS: 1532 RHSgradient 0.130933 +Summit location: 1383 +WavCombRight[1317] 1582 InsidePosnRHS: 1533 RHSgradient 0.119657 +Summit location: 1383 +WavCombRight[1317] 1583 InsidePosnRHS: 1534 RHSgradient 0.102877 +Summit location: 1383 +WavCombRight[1317] 1584 InsidePosnRHS: 1534 RHSgradient 0.104188 +Summit location: 1383 +WavCombRight[1317] 1585 InsidePosnRHS: 1535 RHSgradient 0.086534 +Summit location: 1383 +WavCombRight[1317] 1586 InsidePosnRHS: 1536 RHSgradient 0.074131 +Summit location: 1383 +WavCombRight[1317] 1587 InsidePosnRHS: 1537 RHSgradient 0.070731 +Summit location: 1383 +WavCombRight[1317] 1588 InsidePosnRHS: 1537 RHSgradient 0.071195 +Summit location: 1383 +WavCombRight[1317] 1589 InsidePosnRHS: 1538 RHSgradient 0.070506 +Summit location: 1383 +WavCombRight[1317] 1590 InsidePosnRHS: 1539 RHSgradient 0.066275 +Summit location: 1383 +WavCombRight[1317] 1591 InsidePosnRHS: 1540 RHSgradient 0.056143 +Summit location: 1383 +WavCombRight[1317] 1592 InsidePosnRHS: 1540 RHSgradient 0.056089 +Summit location: 1383 +WavCombRight[1317] 1593 InsidePosnRHS: 1541 RHSgradient 0.044890 +Summit location: 1383 +WavCombRight[1317] 1594 InsidePosnRHS: 1542 RHSgradient 0.034822 +Summit location: 1383 +WavCombRight[1317] 1595 InsidePosnRHS: 1543 RHSgradient 0.025740 +Summit location: 1383 +WavCombRight[1317] 1596 InsidePosnRHS: 1543 RHSgradient 0.022466 +Summit location: 1383 +WavCombRight[1317] 1597 InsidePosnRHS: 1544 RHSgradient 0.011177 +Summit location: 1383 +WavCombRight[1317] 1598 InsidePosnRHS: 1545 RHSgradient -0.000391 +Summit location: 1383 +WavCombRight[1317] 1599 InsidePosnRHS: 1546 RHSgradient -0.011417 +Summit location: 1383 +WavCombRight[1317] 1600 InsidePosnRHS: 1546 RHSgradient -0.018833 +Summit location: 1383 +WavCombRight[1317] 1601 InsidePosnRHS: 1547 RHSgradient -0.030365 +Summit location: 1383 +WavCombRight[1317] 1602 InsidePosnRHS: 1548 RHSgradient -0.037408 +Summit location: 1383 +WavCombRight[1317] 1603 InsidePosnRHS: 1549 RHSgradient -0.037119 +Summit location: 1383 +WavCombRight[1317] 1604 InsidePosnRHS: 1549 RHSgradient -0.034509 +Summit location: 1383 +WavCombRight[1317] 1605 InsidePosnRHS: 1550 RHSgradient -0.031061 +Summit location: 1383 +WavCombRight[1317] 1606 InsidePosnRHS: 1551 RHSgradient -0.028431 +Summit location: 1383 +WavCombRight[1317] 1607 InsidePosnRHS: 1552 RHSgradient -0.025168 +Summit location: 1383 +WavCombRight[1317] 1608 InsidePosnRHS: 1552 RHSgradient -0.026515 +Summit location: 1383 +WavCombRight[1317] 1609 InsidePosnRHS: 1553 RHSgradient -0.022293 +Summit location: 1383 +WavCombRight[1317] 1610 InsidePosnRHS: 1554 RHSgradient -0.017264 +Summit location: 1383 +WavCombRight[1317] 1611 InsidePosnRHS: 1555 RHSgradient -0.011532 +Summit location: 1383 +WavCombRight[1317] 1612 InsidePosnRHS: 1555 RHSgradient -0.008634 +Summit location: 1383 +WavCombRight[1317] 1613 InsidePosnRHS: 1556 RHSgradient 0.002631 +Summit location: 1383 +WavCombRight[1317] 1614 InsidePosnRHS: 1557 RHSgradient 0.012281 +Summit location: 1383 +WavCombRight[1317] 1615 InsidePosnRHS: 1558 RHSgradient 0.019137 +Summit location: 1383 +WavCombRight[1317] 1616 InsidePosnRHS: 1558 RHSgradient 0.016404 +Summit location: 1383 +WavCombRight[1317] 1617 InsidePosnRHS: 1559 RHSgradient 0.016788 +Summit location: 1383 +WavCombRight[1317] 1618 InsidePosnRHS: 1560 RHSgradient 0.014200 +Summit location: 1383 +WavCombRight[1317] 1619 InsidePosnRHS: 1561 RHSgradient 0.013817 +Summit location: 1383 +WavCombRight[1317] 1620 InsidePosnRHS: 1561 RHSgradient 0.003394 +Summit location: 1383 +WavCombRight[1317] 1621 InsidePosnRHS: 1562 RHSgradient 0.006628 +Summit location: 1383 +WavCombRight[1317] 1622 InsidePosnRHS: 1563 RHSgradient 0.008225 +Summit location: 1383 +WavCombRight[1317] 1623 InsidePosnRHS: 1564 RHSgradient 0.006522 +Summit location: 1383 +WavCombRight[1317] 1624 InsidePosnRHS: 1564 RHSgradient 0.002306 +Summit location: 1383 +WavCombRight[1317] 1625 InsidePosnRHS: 1565 RHSgradient 0.007430 +Summit location: 1383 +WavCombRight[1317] 1626 InsidePosnRHS: 1566 RHSgradient 0.013667 +Summit location: 1383 +WavCombRight[1317] 1627 InsidePosnRHS: 1567 RHSgradient 0.020553 +Summit location: 1383 +WavCombRight[1317] 1628 InsidePosnRHS: 1567 RHSgradient 0.028787 +Summit location: 1383 +WavCombRight[1317] 1629 InsidePosnRHS: 1568 RHSgradient 0.038764 +Summit location: 1383 +WavCombRight[1317] 1630 InsidePosnRHS: 1569 RHSgradient 0.050482 +Summit location: 1383 +WavCombRight[1317] 1631 InsidePosnRHS: 1570 RHSgradient 0.062017 +Summit location: 1383 +WavCombRight[1317] 1632 InsidePosnRHS: 1570 RHSgradient 0.074189 +Summit location: 1383 +WavCombRight[1317] 1633 InsidePosnRHS: 1571 RHSgradient 0.076366 +Summit location: 1383 +WavCombRight[1317] 1634 InsidePosnRHS: 1572 RHSgradient 0.077476 +Summit location: 1383 +WavCombRight[1317] 1635 InsidePosnRHS: 1573 RHSgradient 0.077191 +Summit location: 1383 +WavCombRight[1317] 1636 InsidePosnRHS: 1573 RHSgradient 0.084117 +Summit location: 1383 +WavCombRight[1317] 1637 InsidePosnRHS: 1574 RHSgradient 0.082976 +Summit location: 1383 +WavCombRight[1317] 1638 InsidePosnRHS: 1575 RHSgradient 0.082540 +Summit location: 1383 +WavCombRight[1317] 1639 InsidePosnRHS: 1576 RHSgradient 0.080922 +Summit location: 1383 +WavCombRight[1317] 1640 InsidePosnRHS: 1576 RHSgradient 0.078996 +Summit location: 1383 +WavCombRight[1317] 1641 InsidePosnRHS: 1577 RHSgradient 0.077872 +Summit location: 1383 +WavCombRight[1317] 1642 InsidePosnRHS: 1578 RHSgradient 0.079659 +Summit location: 1383 +WavCombRight[1317] 1643 InsidePosnRHS: 1579 RHSgradient 0.079150 +Summit location: 1383 +WavCombRight[1317] 1644 InsidePosnRHS: 1579 RHSgradient 0.083267 +Summit location: 1383 +WavCombRight[1317] 1645 InsidePosnRHS: 1580 RHSgradient 0.080428 +Summit location: 1383 +WavCombRight[1317] 1646 InsidePosnRHS: 1581 RHSgradient 0.079369 +Summit location: 1383 +WavCombRight[1317] 1647 InsidePosnRHS: 1582 RHSgradient 0.079951 +Summit location: 1383 +WavCombRight[1317] 1648 InsidePosnRHS: 1582 RHSgradient 0.081266 +Summit location: 1383 +WavCombRight[1317] 1649 InsidePosnRHS: 1583 RHSgradient 0.081364 +Summit location: 1383 +WavCombRight[1317] 1650 InsidePosnRHS: 1584 RHSgradient 0.081212 +Summit location: 1383 +WavCombRight[1317] 1651 InsidePosnRHS: 1585 RHSgradient 0.080623 +Summit location: 1383 +WavCombRight[1317] 1652 InsidePosnRHS: 1585 RHSgradient 0.082385 +Summit location: 1383 +WavCombRight[1317] 1653 InsidePosnRHS: 1586 RHSgradient 0.081097 +Summit location: 1383 +WavCombRight[1317] 1654 InsidePosnRHS: 1587 RHSgradient 0.078405 +Summit location: 1383 +WavCombRight[1317] 1655 InsidePosnRHS: 1588 RHSgradient 0.074598 +Summit location: 1383 +WavCombRight[1317] 1656 InsidePosnRHS: 1588 RHSgradient 0.070671 +Summit location: 1383 +WavCombRight[1317] 1657 InsidePosnRHS: 1589 RHSgradient 0.067209 +Summit location: 1383 +WavCombRight[1317] 1658 InsidePosnRHS: 1590 RHSgradient 0.063666 +Summit location: 1383 +WavCombRight[1317] 1659 InsidePosnRHS: 1591 RHSgradient 0.059712 +Summit location: 1383 +WavCombRight[1317] 1660 InsidePosnRHS: 1591 RHSgradient 0.054726 +Summit location: 1383 +WavCombRight[1317] 1661 InsidePosnRHS: 1592 RHSgradient 0.049071 +Summit location: 1383 +WavCombRight[1317] 1662 InsidePosnRHS: 1593 RHSgradient 0.044058 +Summit location: 1383 +WavCombRight[1317] 1663 InsidePosnRHS: 1594 RHSgradient 0.040939 +Summit location: 1383 +WavCombRight[1317] 1664 InsidePosnRHS: 1594 RHSgradient 0.038097 +Summit location: 1383 +WavCombRight[1317] 1665 InsidePosnRHS: 1595 RHSgradient 0.036460 +Summit location: 1383 +WavCombRight[1317] 1548 InsidePosnRHS: 1507 RHSgradient 0.357561 +Summit location: 1383 +WavCombRight[1317] 1549 InsidePosnRHS: 1508 RHSgradient 0.355326 +Summit location: 1383 +WavCombRight[1317] 1550 InsidePosnRHS: 1509 RHSgradient 0.350936 +Summit location: 1383 +WavCombRight[1317] 1551 InsidePosnRHS: 1510 RHSgradient 0.344390 +Summit location: 1383 +WavCombRight[1317] 1552 InsidePosnRHS: 1510 RHSgradient 0.329163 +Summit location: 1383 +WavCombRight[1317] 1553 InsidePosnRHS: 1511 RHSgradient 0.321436 +Summit location: 1383 +WavCombRight[1317] 1554 InsidePosnRHS: 1512 RHSgradient 0.313334 +Summit location: 1383 +WavCombRight[1317] 1555 InsidePosnRHS: 1513 RHSgradient 0.301262 +Summit location: 1383 +WavCombRight[1317] 1556 InsidePosnRHS: 1513 RHSgradient 0.286334 +Summit location: 1383 +WavCombRight[1317] 1557 InsidePosnRHS: 1514 RHSgradient 0.269844 +Summit location: 1383 +WavCombRight[1317] 1558 InsidePosnRHS: 1515 RHSgradient 0.252345 +Summit location: 1383 +WavCombRight[1317] 1559 InsidePosnRHS: 1516 RHSgradient 0.234595 +Summit location: 1383 +WavCombRight[1317] 1560 InsidePosnRHS: 1516 RHSgradient 0.219575 +Summit location: 1383 +WavCombRight[1317] 1561 InsidePosnRHS: 1517 RHSgradient 0.197413 +Summit location: 1383 +WavCombRight[1317] 1562 InsidePosnRHS: 1518 RHSgradient 0.172451 +Summit location: 1383 +WavCombRight[1317] 1563 InsidePosnRHS: 1519 RHSgradient 0.154036 +Summit location: 1383 +WavCombRight[1317] 1564 InsidePosnRHS: 1519 RHSgradient 0.142063 +Summit location: 1383 +WavCombRight[1317] 1565 InsidePosnRHS: 1520 RHSgradient 0.135847 +Summit location: 1383 +WavCombRight[1317] 1566 InsidePosnRHS: 1521 RHSgradient 0.130667 +Summit location: 1383 +WavCombRight[1317] 1567 InsidePosnRHS: 1522 RHSgradient 0.123606 +Summit location: 1383 +WavCombRight[1317] 1568 InsidePosnRHS: 1522 RHSgradient 0.122339 +Summit location: 1383 +WavCombRight[1317] 1569 InsidePosnRHS: 1523 RHSgradient 0.119041 +Summit location: 1383 +WavCombRight[1317] 1570 InsidePosnRHS: 1524 RHSgradient 0.117397 +Summit location: 1383 +WavCombRight[1317] 1571 InsidePosnRHS: 1525 RHSgradient 0.113380 +Summit location: 1383 +WavCombRight[1317] 1572 InsidePosnRHS: 1525 RHSgradient 0.120775 +Summit location: 1383 +WavCombRight[1317] 1573 InsidePosnRHS: 1526 RHSgradient 0.116594 +Summit location: 1383 +WavCombRight[1317] 1574 InsidePosnRHS: 1527 RHSgradient 0.115877 +Summit location: 1383 +WavCombRight[1317] 1575 InsidePosnRHS: 1528 RHSgradient 0.122056 +Summit location: 1383 +WavCombRight[1317] 1576 InsidePosnRHS: 1528 RHSgradient 0.125696 +Summit location: 1383 +WavCombRight[1317] 1577 InsidePosnRHS: 1529 RHSgradient 0.129908 +Summit location: 1383 +WavCombRight[1317] 1578 InsidePosnRHS: 1530 RHSgradient 0.131250 +Summit location: 1383 +WavCombRight[1317] 1579 InsidePosnRHS: 1531 RHSgradient 0.129652 +Summit location: 1383 +WavCombRight[1317] 1580 InsidePosnRHS: 1531 RHSgradient 0.136868 +Summit location: 1383 +WavCombRight[1317] 1581 InsidePosnRHS: 1532 RHSgradient 0.130933 +Summit location: 1383 +WavCombRight[1317] 1582 InsidePosnRHS: 1533 RHSgradient 0.119657 +Summit location: 1383 +WavCombRight[1317] 1583 InsidePosnRHS: 1534 RHSgradient 0.102877 +Summit location: 1383 +WavCombRight[1317] 1584 InsidePosnRHS: 1534 RHSgradient 0.104188 +Summit location: 1383 +WavCombRight[1317] 1585 InsidePosnRHS: 1535 RHSgradient 0.086534 +Summit location: 1383 +WavCombRight[1317] 1586 InsidePosnRHS: 1536 RHSgradient 0.074131 +Summit location: 1383 +WavCombRight[1317] 1587 InsidePosnRHS: 1537 RHSgradient 0.070731 +Summit location: 1383 +WavCombRight[1317] 1588 InsidePosnRHS: 1537 RHSgradient 0.071195 +Summit location: 1383 +WavCombRight[1317] 1589 InsidePosnRHS: 1538 RHSgradient 0.070506 +Summit location: 1383 +WavCombRight[1317] 1590 InsidePosnRHS: 1539 RHSgradient 0.066275 +Summit location: 1383 +WavCombRight[1317] 1591 InsidePosnRHS: 1540 RHSgradient 0.056143 +Summit location: 1383 +WavCombRight[1317] 1592 InsidePosnRHS: 1540 RHSgradient 0.056089 +Summit location: 1383 +WavCombRight[1317] 1593 InsidePosnRHS: 1541 RHSgradient 0.044890 +Summit location: 1383 +WavCombRight[1317] 1594 InsidePosnRHS: 1542 RHSgradient 0.034822 +Summit location: 1383 +WavCombRight[1317] 1595 InsidePosnRHS: 1543 RHSgradient 0.025740 +Summit location: 1383 +WavCombRight[1317] 1596 InsidePosnRHS: 1543 RHSgradient 0.022466 +Summit location: 1383 +WavCombRight[1317] 1597 InsidePosnRHS: 1544 RHSgradient 0.011177 +Summit location: 1383 +WavCombRight[1317] 1598 InsidePosnRHS: 1545 RHSgradient -0.000391 +Summit location: 1383 +WavCombRight[1317] 1599 InsidePosnRHS: 1546 RHSgradient -0.011417 +Summit location: 1383 +WavCombRight[1317] 1600 InsidePosnRHS: 1546 RHSgradient -0.018833 +Summit location: 1383 +WavCombRight[1317] 1601 InsidePosnRHS: 1547 RHSgradient -0.030365 +Summit location: 1383 +WavCombRight[1317] 1602 InsidePosnRHS: 1548 RHSgradient -0.037408 +Summit location: 1383 +WavCombRight[1317] 1603 InsidePosnRHS: 1549 RHSgradient -0.037119 +Summit location: 1383 +WavCombRight[1317] 1604 InsidePosnRHS: 1549 RHSgradient -0.034509 +Summit location: 1383 +WavCombRight[1317] 1605 InsidePosnRHS: 1550 RHSgradient -0.031061 +Summit location: 1383 +WavCombRight[1317] 1606 InsidePosnRHS: 1551 RHSgradient -0.028431 +Summit location: 1383 +WavCombRight[1317] 1607 InsidePosnRHS: 1552 RHSgradient -0.025168 +Summit location: 1383 +WavCombRight[1317] 1608 InsidePosnRHS: 1552 RHSgradient -0.026515 +Summit location: 1383 +WavCombRight[1317] 1609 InsidePosnRHS: 1553 RHSgradient -0.022293 +Summit location: 1383 +WavCombRight[1317] 1610 InsidePosnRHS: 1554 RHSgradient -0.017264 +Summit location: 1383 +WavCombRight[1317] 1611 InsidePosnRHS: 1555 RHSgradient -0.011532 +Summit location: 1383 +WavCombRight[1317] 1612 InsidePosnRHS: 1555 RHSgradient -0.008634 +Summit location: 1383 +WavCombRight[1317] 1613 InsidePosnRHS: 1556 RHSgradient 0.002631 +Summit location: 1383 +WavCombRight[1317] 1614 InsidePosnRHS: 1557 RHSgradient 0.012281 +Summit location: 1383 +WavCombRight[1317] 1615 InsidePosnRHS: 1558 RHSgradient 0.019137 +Summit location: 1383 +WavCombRight[1317] 1616 InsidePosnRHS: 1558 RHSgradient 0.016404 +Summit location: 1383 +WavCombRight[1317] 1617 InsidePosnRHS: 1559 RHSgradient 0.016788 +Summit location: 1383 +WavCombRight[1317] 1618 InsidePosnRHS: 1560 RHSgradient 0.014200 +Summit location: 1383 +WavCombRight[1317] 1619 InsidePosnRHS: 1561 RHSgradient 0.013817 +Summit location: 1383 +WavCombRight[1317] 1620 InsidePosnRHS: 1561 RHSgradient 0.003394 +Summit location: 1383 +WavCombRight[1317] 1621 InsidePosnRHS: 1562 RHSgradient 0.006628 +Summit location: 1383 +WavCombRight[1317] 1622 InsidePosnRHS: 1563 RHSgradient 0.008225 +Summit location: 1383 +WavCombRight[1317] 1623 InsidePosnRHS: 1564 RHSgradient 0.006522 +Summit location: 1383 +WavCombRight[1317] 1624 InsidePosnRHS: 1564 RHSgradient 0.002306 +Summit location: 1383 +WavCombRight[1317] 1625 InsidePosnRHS: 1565 RHSgradient 0.007430 +Summit location: 1383 +WavCombRight[1317] 1626 InsidePosnRHS: 1566 RHSgradient 0.013667 +Summit location: 1383 +WavCombRight[1317] 1627 InsidePosnRHS: 1567 RHSgradient 0.020553 +Summit location: 1383 +WavCombRight[1317] 1628 InsidePosnRHS: 1567 RHSgradient 0.028787 +Summit location: 1383 +WavCombRight[1317] 1629 InsidePosnRHS: 1568 RHSgradient 0.038764 +Summit location: 1383 +WavCombRight[1317] 1630 InsidePosnRHS: 1569 RHSgradient 0.050482 +Summit location: 1383 +WavCombRight[1317] 1631 InsidePosnRHS: 1570 RHSgradient 0.062017 +Summit location: 1383 +WavCombRight[1317] 1632 InsidePosnRHS: 1570 RHSgradient 0.074189 +Summit location: 1383 +WavCombRight[1317] 1633 InsidePosnRHS: 1571 RHSgradient 0.076366 +Summit location: 1383 +WavCombRight[1317] 1634 InsidePosnRHS: 1572 RHSgradient 0.077476 +Summit location: 1383 +WavCombRight[1317] 1635 InsidePosnRHS: 1573 RHSgradient 0.077191 +Summit location: 1383 +WavCombRight[1317] 1636 InsidePosnRHS: 1573 RHSgradient 0.084117 +Summit location: 1383 +WavCombRight[1317] 1637 InsidePosnRHS: 1574 RHSgradient 0.082976 +Summit location: 1383 +WavCombRight[1317] 1638 InsidePosnRHS: 1575 RHSgradient 0.082540 +Summit location: 1383 +WavCombRight[1317] 1639 InsidePosnRHS: 1576 RHSgradient 0.080922 +Summit location: 1383 +WavCombRight[1317] 1640 InsidePosnRHS: 1576 RHSgradient 0.078996 +Summit location: 1383 +WavCombRight[1317] 1641 InsidePosnRHS: 1577 RHSgradient 0.077872 +Summit location: 1383 +WavCombRight[1317] 1642 InsidePosnRHS: 1578 RHSgradient 0.079659 +Summit location: 1383 +WavCombRight[1317] 1643 InsidePosnRHS: 1579 RHSgradient 0.079150 +Summit location: 1383 +WavCombRight[1317] 1644 InsidePosnRHS: 1579 RHSgradient 0.083267 +Summit location: 1383 +WavCombRight[1317] 1645 InsidePosnRHS: 1580 RHSgradient 0.080428 +Summit location: 1383 +WavCombRight[1317] 1646 InsidePosnRHS: 1581 RHSgradient 0.079369 +Summit location: 1383 +WavCombRight[1317] 1647 InsidePosnRHS: 1582 RHSgradient 0.079951 +Summit location: 1383 +WavCombRight[1317] 1648 InsidePosnRHS: 1582 RHSgradient 0.081266 +Summit location: 1383 +WavCombRight[1317] 1649 InsidePosnRHS: 1583 RHSgradient 0.081364 +Summit location: 1383 +WavCombRight[1317] 1650 InsidePosnRHS: 1584 RHSgradient 0.081212 +Summit location: 1383 +WavCombRight[1317] 1651 InsidePosnRHS: 1585 RHSgradient 0.080623 +Summit location: 1383 +WavCombRight[1317] 1652 InsidePosnRHS: 1585 RHSgradient 0.082385 +Summit location: 1383 +WavCombRight[1317] 1653 InsidePosnRHS: 1586 RHSgradient 0.081097 +Summit location: 1383 +WavCombRight[1317] 1654 InsidePosnRHS: 1587 RHSgradient 0.078405 +Summit location: 1383 +WavCombRight[1317] 1655 InsidePosnRHS: 1588 RHSgradient 0.074598 +Summit location: 1383 +WavCombRight[1317] 1656 InsidePosnRHS: 1588 RHSgradient 0.070671 +Summit location: 1383 +WavCombRight[1317] 1657 InsidePosnRHS: 1589 RHSgradient 0.067209 +Summit location: 1383 +WavCombRight[1317] 1658 InsidePosnRHS: 1590 RHSgradient 0.063666 +Summit location: 1383 +WavCombRight[1317] 1659 InsidePosnRHS: 1591 RHSgradient 0.059712 +Summit location: 1383 +WavCombRight[1317] 1660 InsidePosnRHS: 1591 RHSgradient 0.054726 +Summit location: 1383 +WavCombRight[1317] 1661 InsidePosnRHS: 1592 RHSgradient 0.049071 +Summit location: 1383 +WavCombRight[1317] 1662 InsidePosnRHS: 1593 RHSgradient 0.044058 +Summit location: 1383 +WavCombRight[1317] 1663 InsidePosnRHS: 1594 RHSgradient 0.040939 +Summit location: 1383 +WavCombRight[1317] 1664 InsidePosnRHS: 1594 RHSgradient 0.038097 +Summit location: 1383 +WavCombRight[1317] 1665 InsidePosnRHS: 1595 RHSgradient 0.036460 +Summit location: 1927 +WavCombRight[1941] 1971 InsidePosnRHS: 1961 RHSgradient 0.281390 +Summit location: 1927 +WavCombRight[1941] 1972 InsidePosnRHS: 1961 RHSgradient 0.289446 +Summit location: 1927 +WavCombRight[1941] 1973 InsidePosnRHS: 1962 RHSgradient 0.300252 +Summit location: 1927 +WavCombRight[1941] 1974 InsidePosnRHS: 1963 RHSgradient 0.311266 +Summit location: 1927 +WavCombRight[1941] 1975 InsidePosnRHS: 1964 RHSgradient 0.333422 +Summit location: 1927 +WavCombRight[1941] 1976 InsidePosnRHS: 1964 RHSgradient 0.362921 +Summit location: 1927 +WavCombRight[1941] 1977 InsidePosnRHS: 1965 RHSgradient 0.389999 +Summit location: 1927 +WavCombRight[1941] 1978 InsidePosnRHS: 1966 RHSgradient 0.388982 +Summit location: 1927 +WavCombRight[1941] 1979 InsidePosnRHS: 1967 RHSgradient 0.371010 +Summit location: 1927 +WavCombRight[1941] 1980 InsidePosnRHS: 1967 RHSgradient 0.364650 +Summit location: 1927 +WavCombRight[1941] 1981 InsidePosnRHS: 1968 RHSgradient 0.420636 +Summit location: 1927 +WavCombRight[1941] 1982 InsidePosnRHS: 1969 RHSgradient 0.494343 +Summit location: 1927 +WavCombRight[1941] 1983 InsidePosnRHS: 1970 RHSgradient 0.550541 +Summit location: 1927 +WavCombRight[1941] 1984 InsidePosnRHS: 1970 RHSgradient 0.566397 +Summit location: 1927 +WavCombRight[1941] 1985 InsidePosnRHS: 1971 RHSgradient 0.590829 +Summit location: 1927 +WavCombRight[1941] 1986 InsidePosnRHS: 1972 RHSgradient 0.599285 +Summit location: 1927 +WavCombRight[1941] 1987 InsidePosnRHS: 1973 RHSgradient 0.591363 +Summit location: 1927 +WavCombRight[1941] 1988 InsidePosnRHS: 1973 RHSgradient 0.565217 +Summit location: 1927 +WavCombRight[1941] 1989 InsidePosnRHS: 1974 RHSgradient 0.544000 +Summit location: 1927 +WavCombRight[1941] 1990 InsidePosnRHS: 1975 RHSgradient 0.512550 +Summit location: 1927 +WavCombRight[1941] 1991 InsidePosnRHS: 1976 RHSgradient 0.467930 +Summit location: 1927 +WavCombRight[1941] 1992 InsidePosnRHS: 1976 RHSgradient 0.426711 +Summit location: 1927 +WavCombRight[1941] 1993 InsidePosnRHS: 1977 RHSgradient 0.363480 +Summit location: 1927 +WavCombRight[1941] 1994 InsidePosnRHS: 1978 RHSgradient 0.321506 +Summit location: 1927 +WavCombRight[1941] 1995 InsidePosnRHS: 1979 RHSgradient 0.293021 +Summit location: 1927 +WavCombRight[1941] 1996 InsidePosnRHS: 1979 RHSgradient 0.245794 +Summit location: 1927 +WavCombRight[1941] 1997 InsidePosnRHS: 1980 RHSgradient 0.198041 +Summit location: 1927 +WavCombRight[1941] 1998 InsidePosnRHS: 1981 RHSgradient 0.112455 +Summit location: 1927 +WavCombRight[1941] 1999 InsidePosnRHS: 1982 RHSgradient 0.017413 +Summit location: 1927 +WavCombRight[1941] 2000 InsidePosnRHS: 1982 RHSgradient 0.000766 +Summit location: 1927 +WavCombRight[1941] 2001 InsidePosnRHS: 1983 RHSgradient -0.080000 +Summit location: 1927 +WavCombRight[1941] 2002 InsidePosnRHS: 1984 RHSgradient -0.161006 +Summit location: 1927 +WavCombRight[1941] 2003 InsidePosnRHS: 1985 RHSgradient -0.244533 +Summit location: 1927 +WavCombRight[1941] 2004 InsidePosnRHS: 1985 RHSgradient -0.270084 +Summit location: 1927 +WavCombRight[1941] 2005 InsidePosnRHS: 1986 RHSgradient -0.327599 +Summit location: 1927 +WavCombRight[1941] 2006 InsidePosnRHS: 1987 RHSgradient -0.373948 +Summit location: 1927 +WavCombRight[1941] 2007 InsidePosnRHS: 1988 RHSgradient -0.411633 +Summit location: 1927 +WavCombRight[1941] 2008 InsidePosnRHS: 1988 RHSgradient -0.414293 +Summit location: 1927 +WavCombRight[1941] 2009 InsidePosnRHS: 1989 RHSgradient -0.443023 +Summit location: 255 +WavCombRight[259] 283 InsidePosnRHS: 277 RHSgradient 0.151697 +Summit location: 255 +WavCombRight[259] 284 InsidePosnRHS: 277 RHSgradient 0.178812 +Summit location: 255 +WavCombRight[259] 285 InsidePosnRHS: 278 RHSgradient 0.201120 +Summit location: 255 +WavCombRight[259] 286 InsidePosnRHS: 279 RHSgradient 0.219423 +Summit location: 255 +WavCombRight[259] 287 InsidePosnRHS: 280 RHSgradient 0.242707 +Summit location: 255 +WavCombRight[259] 288 InsidePosnRHS: 280 RHSgradient 0.242859 +Summit location: 255 +WavCombRight[259] 289 InsidePosnRHS: 281 RHSgradient 0.249316 +Summit location: 255 +WavCombRight[259] 290 InsidePosnRHS: 282 RHSgradient 0.234787 +Summit location: 255 +WavCombRight[259] 291 InsidePosnRHS: 283 RHSgradient 0.215414 +Summit location: 255 +WavCombRight[259] 292 InsidePosnRHS: 283 RHSgradient 0.231730 +Summit location: 255 +WavCombRight[259] 293 InsidePosnRHS: 284 RHSgradient 0.247241 +Summit location: 255 +WavCombRight[259] 294 InsidePosnRHS: 285 RHSgradient 0.253331 +Summit location: 255 +WavCombRight[259] 295 InsidePosnRHS: 286 RHSgradient 0.244081 +Summit location: 255 +WavCombRight[259] 296 InsidePosnRHS: 286 RHSgradient 0.234722 +Summit location: 255 +WavCombRight[259] 297 InsidePosnRHS: 287 RHSgradient 0.230393 +Summit location: 255 +WavCombRight[259] 298 InsidePosnRHS: 288 RHSgradient 0.235337 +Summit location: 255 +WavCombRight[259] 299 InsidePosnRHS: 289 RHSgradient 0.253818 +Summit location: 255 +WavCombRight[259] 300 InsidePosnRHS: 289 RHSgradient 0.261215 +Summit location: 255 +WavCombRight[259] 301 InsidePosnRHS: 290 RHSgradient 0.290607 +Summit location: 255 +WavCombRight[259] 302 InsidePosnRHS: 291 RHSgradient 0.313290 +Summit location: 255 +WavCombRight[259] 303 InsidePosnRHS: 292 RHSgradient 0.316160 +Summit location: 255 +WavCombRight[259] 304 InsidePosnRHS: 292 RHSgradient 0.325903 +Summit location: 255 +WavCombRight[259] 305 InsidePosnRHS: 293 RHSgradient 0.324833 +Summit location: 255 +WavCombRight[259] 306 InsidePosnRHS: 294 RHSgradient 0.333333 +Summit location: 255 +WavCombRight[259] 307 InsidePosnRHS: 295 RHSgradient 0.362067 +Summit location: 255 +WavCombRight[259] 308 InsidePosnRHS: 295 RHSgradient 0.379549 +Summit location: 255 +WavCombRight[259] 309 InsidePosnRHS: 296 RHSgradient 0.408986 +Summit location: 255 +WavCombRight[259] 310 InsidePosnRHS: 297 RHSgradient 0.417565 +Summit location: 255 +WavCombRight[259] 311 InsidePosnRHS: 298 RHSgradient 0.402353 +Summit location: 255 +WavCombRight[259] 312 InsidePosnRHS: 298 RHSgradient 0.369046 +Summit location: 255 +WavCombRight[259] 313 InsidePosnRHS: 299 RHSgradient 0.329844 +Summit location: 255 +WavCombRight[259] 314 InsidePosnRHS: 300 RHSgradient 0.281932 +Summit location: 255 +WavCombRight[259] 315 InsidePosnRHS: 301 RHSgradient 0.240360 +Summit location: 255 +WavCombRight[259] 316 InsidePosnRHS: 301 RHSgradient 0.219170 +Summit location: 255 +WavCombRight[259] 317 InsidePosnRHS: 302 RHSgradient 0.193872 +Summit location: 255 +WavCombRight[259] 318 InsidePosnRHS: 303 RHSgradient 0.173333 +Summit location: 255 +WavCombRight[259] 319 InsidePosnRHS: 304 RHSgradient 0.160322 +Summit location: 255 +WavCombRight[259] 320 InsidePosnRHS: 304 RHSgradient 0.169577 +Summit location: 255 +WavCombRight[259] 321 InsidePosnRHS: 305 RHSgradient 0.152415 +Summit location: 255 +WavCombRight[259] 322 InsidePosnRHS: 306 RHSgradient 0.125890 +Summit location: 255 +WavCombRight[259] 323 InsidePosnRHS: 307 RHSgradient 0.094522 +Summit location: 255 +WavCombRight[259] 324 InsidePosnRHS: 307 RHSgradient 0.091912 +Summit location: 255 +WavCombRight[259] 325 InsidePosnRHS: 308 RHSgradient 0.061657 +Summit location: 255 +WavCombRight[259] 326 InsidePosnRHS: 309 RHSgradient 0.035419 +Summit location: 255 +WavCombRight[259] 327 InsidePosnRHS: 310 RHSgradient 0.021862 +Summit location: 255 +WavCombRight[259] 328 InsidePosnRHS: 310 RHSgradient 0.032583 +Summit location: 255 +WavCombRight[259] 329 InsidePosnRHS: 311 RHSgradient 0.044782 +Summit location: 255 +WavCombRight[259] 330 InsidePosnRHS: 312 RHSgradient 0.061111 +Summit location: 255 +WavCombRight[259] 331 InsidePosnRHS: 313 RHSgradient 0.076724 +Summit location: 2219 +WavCombRight[2221] 2238 InsidePosnRHS: 2234 RHSgradient 1.006631 +Summit location: 2219 +WavCombRight[2221] 2239 InsidePosnRHS: 2235 RHSgradient 0.865894 +Summit location: 2219 +WavCombRight[2221] 2240 InsidePosnRHS: 2235 RHSgradient 0.701165 +Summit location: 2219 +WavCombRight[2221] 2241 InsidePosnRHS: 2236 RHSgradient 0.543464 +Summit location: 2219 +WavCombRight[2221] 2242 InsidePosnRHS: 2237 RHSgradient 0.447073 +Summit location: 2219 +WavCombRight[2221] 2243 InsidePosnRHS: 2238 RHSgradient 0.388918 +Summit location: 2219 +WavCombRight[2221] 2244 InsidePosnRHS: 2238 RHSgradient 0.416669 +Summit location: 2219 +WavCombRight[2221] 2245 InsidePosnRHS: 2239 RHSgradient 0.420744 +Summit location: 2219 +WavCombRight[2221] 2246 InsidePosnRHS: 2240 RHSgradient 0.480194 +Summit location: 2219 +WavCombRight[2221] 2247 InsidePosnRHS: 2241 RHSgradient 0.493333 +Summit location: 2219 +WavCombRight[2221] 2248 InsidePosnRHS: 2241 RHSgradient 0.456102 +Summit location: 2219 +WavCombRight[2221] 2249 InsidePosnRHS: 2242 RHSgradient 0.398064 +Summit location: 2219 +WavCombRight[2221] 2250 InsidePosnRHS: 2243 RHSgradient 0.327916 +Summit location: 2219 +WavCombRight[2221] 2251 InsidePosnRHS: 2244 RHSgradient 0.266214 +Summit location: 2219 +WavCombRight[2221] 2252 InsidePosnRHS: 2244 RHSgradient 0.243515 +Summit location: 2219 +WavCombRight[2221] 2253 InsidePosnRHS: 2245 RHSgradient 0.193997 +Summit location: 2219 +WavCombRight[2221] 2254 InsidePosnRHS: 2246 RHSgradient 0.142105 +Summit location: 2219 +WavCombRight[2221] 2255 InsidePosnRHS: 2247 RHSgradient 0.085605 +Summit location: 2219 +WavCombRight[2221] 2256 InsidePosnRHS: 2247 RHSgradient 0.044444 +Summit location: 2219 +WavCombRight[2221] 2257 InsidePosnRHS: 2248 RHSgradient -0.030447 +Summit location: 2219 +WavCombRight[2221] 2258 InsidePosnRHS: 2249 RHSgradient -0.113995 +Summit location: 2219 +WavCombRight[2221] 2259 InsidePosnRHS: 2250 RHSgradient -0.202222 +Summit location: 2219 +WavCombRight[2221] 2260 InsidePosnRHS: 2250 RHSgradient -0.254697 +Summit location: 2219 +WavCombRight[2221] 2248 InsidePosnRHS: 2241 RHSgradient 0.456102 +Summit location: 2219 +WavCombRight[2221] 2249 InsidePosnRHS: 2242 RHSgradient 0.398064 +Summit location: 2219 +WavCombRight[2221] 2250 InsidePosnRHS: 2243 RHSgradient 0.327916 +Summit location: 2219 +WavCombRight[2221] 2251 InsidePosnRHS: 2244 RHSgradient 0.266214 +Summit location: 2219 +WavCombRight[2221] 2252 InsidePosnRHS: 2244 RHSgradient 0.243515 +Summit location: 2219 +WavCombRight[2221] 2253 InsidePosnRHS: 2245 RHSgradient 0.193997 +Summit location: 2219 +WavCombRight[2221] 2254 InsidePosnRHS: 2246 RHSgradient 0.142105 +Summit location: 2219 +WavCombRight[2221] 2255 InsidePosnRHS: 2247 RHSgradient 0.085605 +Summit location: 2219 +WavCombRight[2221] 2256 InsidePosnRHS: 2247 RHSgradient 0.044444 +Summit location: 2219 +WavCombRight[2221] 2257 InsidePosnRHS: 2248 RHSgradient -0.030447 +Summit location: 2219 +WavCombRight[2221] 2258 InsidePosnRHS: 2249 RHSgradient -0.113995 +Summit location: 2219 +WavCombRight[2221] 2259 InsidePosnRHS: 2250 RHSgradient -0.202222 +Summit location: 2219 +WavCombRight[2221] 2260 InsidePosnRHS: 2250 RHSgradient -0.254697 +Summit location: 2219 +WavCombRight[2221] 2248 InsidePosnRHS: 2241 RHSgradient 0.456102 +Summit location: 2219 +WavCombRight[2221] 2249 InsidePosnRHS: 2242 RHSgradient 0.398064 +Summit location: 2219 +WavCombRight[2221] 2250 InsidePosnRHS: 2243 RHSgradient 0.327916 +Summit location: 2219 +WavCombRight[2221] 2251 InsidePosnRHS: 2244 RHSgradient 0.266214 +Summit location: 2219 +WavCombRight[2221] 2252 InsidePosnRHS: 2244 RHSgradient 0.243515 +Summit location: 2219 +WavCombRight[2221] 2253 InsidePosnRHS: 2245 RHSgradient 0.193997 +Summit location: 2219 +WavCombRight[2221] 2254 InsidePosnRHS: 2246 RHSgradient 0.142105 +Summit location: 2219 +WavCombRight[2221] 2255 InsidePosnRHS: 2247 RHSgradient 0.085605 +Summit location: 2219 +WavCombRight[2221] 2256 InsidePosnRHS: 2247 RHSgradient 0.044444 +Summit location: 2219 +WavCombRight[2221] 2257 InsidePosnRHS: 2248 RHSgradient -0.030447 +Summit location: 2219 +WavCombRight[2221] 2258 InsidePosnRHS: 2249 RHSgradient -0.113995 +Summit location: 2219 +WavCombRight[2221] 2259 InsidePosnRHS: 2250 RHSgradient -0.202222 +Summit location: 2219 +WavCombRight[2221] 2260 InsidePosnRHS: 2250 RHSgradient -0.254697 +Summit location: 2219 +WavCombRight[2221] 2261 InsidePosnRHS: 2251 RHSgradient -0.345201 +Summit location: 2219 +WavCombRight[2221] 2262 InsidePosnRHS: 2252 RHSgradient -0.424813 +Summit location: 2219 +WavCombRight[2221] 2249 InsidePosnRHS: 2242 RHSgradient 0.398064 +Summit location: 2219 +WavCombRight[2221] 2250 InsidePosnRHS: 2243 RHSgradient 0.327916 +Summit location: 2219 +WavCombRight[2221] 2251 InsidePosnRHS: 2244 RHSgradient 0.266214 +Summit location: 2219 +WavCombRight[2221] 2252 InsidePosnRHS: 2244 RHSgradient 0.243515 +Summit location: 2219 +WavCombRight[2221] 2253 InsidePosnRHS: 2245 RHSgradient 0.193997 +Summit location: 2219 +WavCombRight[2221] 2254 InsidePosnRHS: 2246 RHSgradient 0.142105 +Summit location: 2219 +WavCombRight[2221] 2255 InsidePosnRHS: 2247 RHSgradient 0.085605 +Summit location: 2219 +WavCombRight[2221] 2256 InsidePosnRHS: 2247 RHSgradient 0.044444 +Summit location: 2219 +WavCombRight[2221] 2257 InsidePosnRHS: 2248 RHSgradient -0.030447 +Summit location: 2219 +WavCombRight[2221] 2258 InsidePosnRHS: 2249 RHSgradient -0.113995 +Summit location: 2219 +WavCombRight[2221] 2259 InsidePosnRHS: 2250 RHSgradient -0.202222 +Summit location: 2219 +WavCombRight[2221] 2260 InsidePosnRHS: 2250 RHSgradient -0.254697 +Summit location: 2219 +WavCombRight[2221] 2261 InsidePosnRHS: 2251 RHSgradient -0.345201 +Summit location: 2219 +WavCombRight[2221] 2262 InsidePosnRHS: 2252 RHSgradient -0.424813 +Summit location: 2397 +WavCombRight[2398] 2413 InsidePosnRHS: 2410 RHSgradient 0.991858 +Summit location: 2397 +WavCombRight[2398] 2414 InsidePosnRHS: 2410 RHSgradient 0.975726 +Summit location: 2397 +WavCombRight[2398] 2415 InsidePosnRHS: 2411 RHSgradient 0.929919 +Summit location: 2397 +WavCombRight[2398] 2416 InsidePosnRHS: 2412 RHSgradient 0.827991 +Summit location: 2397 +WavCombRight[2398] 2417 InsidePosnRHS: 2413 RHSgradient 0.671869 +Summit location: 2397 +WavCombRight[2398] 2418 InsidePosnRHS: 2413 RHSgradient 0.582144 +Summit location: 2397 +WavCombRight[2398] 2419 InsidePosnRHS: 2414 RHSgradient 0.440718 +Summit location: 2397 +WavCombRight[2398] 2420 InsidePosnRHS: 2415 RHSgradient 0.305286 +Summit location: 2397 +WavCombRight[2398] 2421 InsidePosnRHS: 2416 RHSgradient 0.197607 +Summit location: 2397 +WavCombRight[2398] 2422 InsidePosnRHS: 2416 RHSgradient 0.145809 +Summit location: 2397 +WavCombRight[2398] 2423 InsidePosnRHS: 2417 RHSgradient 0.060472 +Summit location: 2397 +WavCombRight[2398] 2424 InsidePosnRHS: 2418 RHSgradient 0.006665 +Summit location: 2397 +WavCombRight[2398] 2425 InsidePosnRHS: 2419 RHSgradient -0.027545 +Summit location: 2397 +WavCombRight[2398] 2417 InsidePosnRHS: 2413 RHSgradient 0.671869 +Summit location: 2397 +WavCombRight[2398] 2418 InsidePosnRHS: 2413 RHSgradient 0.582144 +Summit location: 2397 +WavCombRight[2398] 2419 InsidePosnRHS: 2414 RHSgradient 0.440718 +Summit location: 2397 +WavCombRight[2398] 2420 InsidePosnRHS: 2415 RHSgradient 0.305286 +Summit location: 2397 +WavCombRight[2398] 2421 InsidePosnRHS: 2416 RHSgradient 0.197607 +Summit location: 2397 +WavCombRight[2398] 2422 InsidePosnRHS: 2416 RHSgradient 0.145809 +Summit location: 2397 +WavCombRight[2398] 2423 InsidePosnRHS: 2417 RHSgradient 0.060472 +Summit location: 2397 +WavCombRight[2398] 2424 InsidePosnRHS: 2418 RHSgradient 0.006665 +Summit location: 2397 +WavCombRight[2398] 2425 InsidePosnRHS: 2419 RHSgradient -0.027545 +Summit location: 2397 +WavCombRight[2398] 2426 InsidePosnRHS: 2419 RHSgradient -0.019388 +Summit location: 2397 +WavCombRight[2398] 2427 InsidePosnRHS: 2420 RHSgradient -0.040918 +Summit location: 2397 +WavCombRight[2398] 2418 InsidePosnRHS: 2413 RHSgradient 0.582144 +Summit location: 2397 +WavCombRight[2398] 2419 InsidePosnRHS: 2414 RHSgradient 0.440718 +Summit location: 2397 +WavCombRight[2398] 2420 InsidePosnRHS: 2415 RHSgradient 0.305286 +Summit location: 2397 +WavCombRight[2398] 2421 InsidePosnRHS: 2416 RHSgradient 0.197607 +Summit location: 2397 +WavCombRight[2398] 2422 InsidePosnRHS: 2416 RHSgradient 0.145809 +Summit location: 2397 +WavCombRight[2398] 2423 InsidePosnRHS: 2417 RHSgradient 0.060472 +Summit location: 2397 +WavCombRight[2398] 2424 InsidePosnRHS: 2418 RHSgradient 0.006665 +Summit location: 2397 +WavCombRight[2398] 2425 InsidePosnRHS: 2419 RHSgradient -0.027545 +Summit location: 2397 +WavCombRight[2398] 2426 InsidePosnRHS: 2419 RHSgradient -0.019388 +Summit location: 2397 +WavCombRight[2398] 2427 InsidePosnRHS: 2420 RHSgradient -0.040918 +Summit location: 2397 +WavCombRight[2398] 2418 InsidePosnRHS: 2413 RHSgradient 0.582144 +Summit location: 2397 +WavCombRight[2398] 2419 InsidePosnRHS: 2414 RHSgradient 0.440718 +Summit location: 2397 +WavCombRight[2398] 2420 InsidePosnRHS: 2415 RHSgradient 0.305286 +Summit location: 2397 +WavCombRight[2398] 2421 InsidePosnRHS: 2416 RHSgradient 0.197607 +Summit location: 2397 +WavCombRight[2398] 2422 InsidePosnRHS: 2416 RHSgradient 0.145809 +Summit location: 2397 +WavCombRight[2398] 2423 InsidePosnRHS: 2417 RHSgradient 0.060472 +Summit location: 2397 +WavCombRight[2398] 2424 InsidePosnRHS: 2418 RHSgradient 0.006665 +Summit location: 2397 +WavCombRight[2398] 2425 InsidePosnRHS: 2419 RHSgradient -0.027545 +Summit location: 2397 +WavCombRight[2398] 2426 InsidePosnRHS: 2419 RHSgradient -0.019388 +Summit location: 2397 +WavCombRight[2398] 2427 InsidePosnRHS: 2420 RHSgradient -0.040918 +Summit location: 2026 +WavCombRight[2031] 2055 InsidePosnRHS: 2048 RHSgradient 0.311574 +Summit location: 2026 +WavCombRight[2031] 2056 InsidePosnRHS: 2049 RHSgradient 0.301564 +Summit location: 2026 +WavCombRight[2031] 2057 InsidePosnRHS: 2050 RHSgradient 0.264221 +Summit location: 2026 +WavCombRight[2031] 2058 InsidePosnRHS: 2051 RHSgradient 0.201812 +Summit location: 2026 +WavCombRight[2031] 2059 InsidePosnRHS: 2051 RHSgradient 0.192801 +Summit location: 2026 +WavCombRight[2031] 2060 InsidePosnRHS: 2052 RHSgradient 0.153621 +Summit location: 2026 +WavCombRight[2031] 2061 InsidePosnRHS: 2053 RHSgradient 0.144751 +Summit location: 2026 +WavCombRight[2031] 2062 InsidePosnRHS: 2054 RHSgradient 0.134190 +Summit location: 2026 +WavCombRight[2031] 2063 InsidePosnRHS: 2054 RHSgradient 0.121095 +Summit location: 2026 +WavCombRight[2031] 2064 InsidePosnRHS: 2055 RHSgradient 0.115556 +Summit location: 2026 +WavCombRight[2031] 2065 InsidePosnRHS: 2056 RHSgradient 0.121544 +Summit location: 2026 +WavCombRight[2031] 2055 InsidePosnRHS: 2048 RHSgradient 0.311574 +Summit location: 2026 +WavCombRight[2031] 2056 InsidePosnRHS: 2049 RHSgradient 0.301564 +Summit location: 2026 +WavCombRight[2031] 2057 InsidePosnRHS: 2050 RHSgradient 0.264221 +Summit location: 2026 +WavCombRight[2031] 2058 InsidePosnRHS: 2051 RHSgradient 0.201812 +Summit location: 2026 +WavCombRight[2031] 2059 InsidePosnRHS: 2051 RHSgradient 0.192801 +Summit location: 2026 +WavCombRight[2031] 2060 InsidePosnRHS: 2052 RHSgradient 0.153621 +Summit location: 2026 +WavCombRight[2031] 2061 InsidePosnRHS: 2053 RHSgradient 0.144751 +Summit location: 2026 +WavCombRight[2031] 2062 InsidePosnRHS: 2054 RHSgradient 0.134190 +Summit location: 2026 +WavCombRight[2031] 2063 InsidePosnRHS: 2054 RHSgradient 0.121095 +Summit location: 2026 +WavCombRight[2031] 2064 InsidePosnRHS: 2055 RHSgradient 0.115556 +Summit location: 2026 +WavCombRight[2031] 2065 InsidePosnRHS: 2056 RHSgradient 0.121544 +Summit location: 2026 +WavCombRight[2031] 2066 InsidePosnRHS: 2057 RHSgradient 0.137435 +Summit location: 2026 +WavCombRight[2031] 2055 InsidePosnRHS: 2048 RHSgradient 0.311574 +Summit location: 2026 +WavCombRight[2031] 2056 InsidePosnRHS: 2049 RHSgradient 0.301564 +Summit location: 2026 +WavCombRight[2031] 2057 InsidePosnRHS: 2050 RHSgradient 0.264221 +Summit location: 2026 +WavCombRight[2031] 2058 InsidePosnRHS: 2051 RHSgradient 0.201812 +Summit location: 2026 +WavCombRight[2031] 2059 InsidePosnRHS: 2051 RHSgradient 0.192801 +Summit location: 2026 +WavCombRight[2031] 2060 InsidePosnRHS: 2052 RHSgradient 0.153621 +Summit location: 2026 +WavCombRight[2031] 2061 InsidePosnRHS: 2053 RHSgradient 0.144751 +Summit location: 2026 +WavCombRight[2031] 2062 InsidePosnRHS: 2054 RHSgradient 0.134190 +Summit location: 2026 +WavCombRight[2031] 2063 InsidePosnRHS: 2054 RHSgradient 0.121095 +Summit location: 2026 +WavCombRight[2031] 2064 InsidePosnRHS: 2055 RHSgradient 0.115556 +Summit location: 2026 +WavCombRight[2031] 2065 InsidePosnRHS: 2056 RHSgradient 0.121544 +Summit location: 2026 +WavCombRight[2031] 2066 InsidePosnRHS: 2057 RHSgradient 0.137435 +Summit location: 2026 +WavCombRight[2031] 2055 InsidePosnRHS: 2048 RHSgradient 0.311574 +Summit location: 2026 +WavCombRight[2031] 2056 InsidePosnRHS: 2049 RHSgradient 0.301564 +Summit location: 2026 +WavCombRight[2031] 2057 InsidePosnRHS: 2050 RHSgradient 0.264221 +Summit location: 2026 +WavCombRight[2031] 2058 InsidePosnRHS: 2051 RHSgradient 0.201812 +Summit location: 2026 +WavCombRight[2031] 2059 InsidePosnRHS: 2051 RHSgradient 0.192801 +Summit location: 2026 +WavCombRight[2031] 2060 InsidePosnRHS: 2052 RHSgradient 0.153621 +Summit location: 2026 +WavCombRight[2031] 2061 InsidePosnRHS: 2053 RHSgradient 0.144751 +Summit location: 2026 +WavCombRight[2031] 2062 InsidePosnRHS: 2054 RHSgradient 0.134190 +Summit location: 2026 +WavCombRight[2031] 2063 InsidePosnRHS: 2054 RHSgradient 0.121095 +Summit location: 2026 +WavCombRight[2031] 2064 InsidePosnRHS: 2055 RHSgradient 0.115556 +Summit location: 2026 +WavCombRight[2031] 2065 InsidePosnRHS: 2056 RHSgradient 0.121544 +Summit location: 2026 +WavCombRight[2031] 2066 InsidePosnRHS: 2057 RHSgradient 0.137435 +Summit location: 2026 +WavCombRight[2031] 2055 InsidePosnRHS: 2048 RHSgradient 0.311574 +Summit location: 2026 +WavCombRight[2031] 2056 InsidePosnRHS: 2049 RHSgradient 0.301564 +Summit location: 2026 +WavCombRight[2031] 2057 InsidePosnRHS: 2050 RHSgradient 0.264221 +Summit location: 2026 +WavCombRight[2031] 2058 InsidePosnRHS: 2051 RHSgradient 0.201812 +Summit location: 2026 +WavCombRight[2031] 2059 InsidePosnRHS: 2051 RHSgradient 0.192801 +Summit location: 2026 +WavCombRight[2031] 2060 InsidePosnRHS: 2052 RHSgradient 0.153621 +Summit location: 2026 +WavCombRight[2031] 2061 InsidePosnRHS: 2053 RHSgradient 0.144751 +Summit location: 2026 +WavCombRight[2031] 2062 InsidePosnRHS: 2054 RHSgradient 0.134190 +Summit location: 2026 +WavCombRight[2031] 2063 InsidePosnRHS: 2054 RHSgradient 0.121095 +Summit location: 2026 +WavCombRight[2031] 2064 InsidePosnRHS: 2055 RHSgradient 0.115556 +Summit location: 2026 +WavCombRight[2031] 2065 InsidePosnRHS: 2056 RHSgradient 0.121544 +Summit location: 2026 +WavCombRight[2031] 2066 InsidePosnRHS: 2057 RHSgradient 0.137435 +Summit location: 2026 +WavCombRight[2031] 2055 InsidePosnRHS: 2048 RHSgradient 0.311574 +Summit location: 2026 +WavCombRight[2031] 2056 InsidePosnRHS: 2049 RHSgradient 0.301564 +Summit location: 2026 +WavCombRight[2031] 2057 InsidePosnRHS: 2050 RHSgradient 0.264221 +Summit location: 2026 +WavCombRight[2031] 2058 InsidePosnRHS: 2051 RHSgradient 0.201812 +Summit location: 2026 +WavCombRight[2031] 2059 InsidePosnRHS: 2051 RHSgradient 0.192801 +Summit location: 2026 +WavCombRight[2031] 2060 InsidePosnRHS: 2052 RHSgradient 0.153621 +Summit location: 2026 +WavCombRight[2031] 2061 InsidePosnRHS: 2053 RHSgradient 0.144751 +Summit location: 2026 +WavCombRight[2031] 2062 InsidePosnRHS: 2054 RHSgradient 0.134190 +Summit location: 2026 +WavCombRight[2031] 2063 InsidePosnRHS: 2054 RHSgradient 0.121095 +Summit location: 2026 +WavCombRight[2031] 2064 InsidePosnRHS: 2055 RHSgradient 0.115556 +Summit location: 2026 +WavCombRight[2031] 2065 InsidePosnRHS: 2056 RHSgradient 0.121544 +Summit location: 2026 +WavCombRight[2031] 2066 InsidePosnRHS: 2057 RHSgradient 0.137435 +Summit location: 2026 +WavCombRight[2031] 2067 InsidePosnRHS: 2057 RHSgradient 0.161310 +Summit location: 2026 +WavCombRight[2031] 2055 InsidePosnRHS: 2048 RHSgradient 0.311574 +Summit location: 2026 +WavCombRight[2031] 2056 InsidePosnRHS: 2049 RHSgradient 0.301564 +Summit location: 2026 +WavCombRight[2031] 2057 InsidePosnRHS: 2050 RHSgradient 0.264221 +Summit location: 2026 +WavCombRight[2031] 2058 InsidePosnRHS: 2051 RHSgradient 0.201812 +Summit location: 2026 +WavCombRight[2031] 2059 InsidePosnRHS: 2051 RHSgradient 0.192801 +Summit location: 2026 +WavCombRight[2031] 2060 InsidePosnRHS: 2052 RHSgradient 0.153621 +Summit location: 2026 +WavCombRight[2031] 2061 InsidePosnRHS: 2053 RHSgradient 0.144751 +Summit location: 2026 +WavCombRight[2031] 2062 InsidePosnRHS: 2054 RHSgradient 0.134190 +Summit location: 2026 +WavCombRight[2031] 2063 InsidePosnRHS: 2054 RHSgradient 0.121095 +Summit location: 2026 +WavCombRight[2031] 2064 InsidePosnRHS: 2055 RHSgradient 0.115556 +Summit location: 2026 +WavCombRight[2031] 2065 InsidePosnRHS: 2056 RHSgradient 0.121544 +Summit location: 2026 +WavCombRight[2031] 2066 InsidePosnRHS: 2057 RHSgradient 0.137435 +Summit location: 2026 +WavCombRight[2031] 2067 InsidePosnRHS: 2057 RHSgradient 0.161310 +Summit location: 2026 +WavCombRight[2031] 2068 InsidePosnRHS: 2058 RHSgradient 0.181506 +Summit location: 2026 +WavCombRight[2031] 2069 InsidePosnRHS: 2059 RHSgradient 0.206320 +Summit location: 2026 +WavCombRight[2031] 2070 InsidePosnRHS: 2060 RHSgradient 0.235104 +Summit location: 2026 +WavCombRight[2031] 2071 InsidePosnRHS: 2060 RHSgradient 0.249756 +Summit location: 2026 +WavCombRight[2031] 2072 InsidePosnRHS: 2061 RHSgradient 0.277878 +Summit location: 2026 +WavCombRight[2031] 2073 InsidePosnRHS: 2062 RHSgradient 0.310575 +Summit location: 2026 +WavCombRight[2031] 2074 InsidePosnRHS: 2063 RHSgradient 0.347145 +Summit location: 2026 +WavCombRight[2031] 2075 InsidePosnRHS: 2063 RHSgradient 0.354335 +Summit location: 2026 +WavCombRight[2031] 2076 InsidePosnRHS: 2064 RHSgradient 0.381666 +Summit location: 2026 +WavCombRight[2031] 2077 InsidePosnRHS: 2065 RHSgradient 0.393298 +Summit location: 2026 +WavCombRight[2031] 2078 InsidePosnRHS: 2066 RHSgradient 0.391985 +Summit location: 2026 +WavCombRight[2031] 2079 InsidePosnRHS: 2066 RHSgradient 0.382783 +Summit location: 2026 +WavCombRight[2031] 2080 InsidePosnRHS: 2067 RHSgradient 0.368247 +Summit location: 2026 +WavCombRight[2031] 2081 InsidePosnRHS: 2068 RHSgradient 0.342324 +Summit location: 2026 +WavCombRight[2031] 2082 InsidePosnRHS: 2069 RHSgradient 0.302084 +Summit location: 2026 +WavCombRight[2031] 2083 InsidePosnRHS: 2069 RHSgradient 0.261803 +Summit location: 2026 +WavCombRight[2031] 2084 InsidePosnRHS: 2070 RHSgradient 0.214580 +Summit location: 2026 +WavCombRight[2031] 2085 InsidePosnRHS: 2071 RHSgradient 0.167409 +Summit location: 2026 +WavCombRight[2031] 2086 InsidePosnRHS: 2072 RHSgradient 0.120921 +Summit location: 2026 +WavCombRight[2031] 2087 InsidePosnRHS: 2072 RHSgradient 0.096390 +Summit location: 2026 +WavCombRight[2031] 2088 InsidePosnRHS: 2073 RHSgradient 0.053333 +Summit location: 2026 +WavCombRight[2031] 2089 InsidePosnRHS: 2074 RHSgradient 0.013638 +Summit location: 2026 +WavCombRight[2031] 2090 InsidePosnRHS: 2075 RHSgradient -0.022904 +Summit location: 2026 +WavCombRight[2031] 2091 InsidePosnRHS: 2075 RHSgradient -0.030752 +Summit location: 2026 +WavCombRight[2031] 2092 InsidePosnRHS: 2076 RHSgradient -0.076131 +Summit location: 2026 +WavCombRight[2031] 2093 InsidePosnRHS: 2077 RHSgradient -0.128070 +Summit location: 2026 +WavCombRight[2031] 2094 InsidePosnRHS: 2078 RHSgradient -0.180477 +Summit location: 2026 +WavCombRight[2031] 2095 InsidePosnRHS: 2078 RHSgradient -0.217710 +Summit location: 2026 +WavCombRight[2031] 2096 InsidePosnRHS: 2079 RHSgradient -0.294792 +Summit location: 2026 +WavCombRight[2031] 2097 InsidePosnRHS: 2080 RHSgradient -0.348659 +Summit location: 2026 +WavCombRight[2031] 2098 InsidePosnRHS: 2081 RHSgradient -0.356445 +Summit location: 2026 +WavCombRight[2031] 2099 InsidePosnRHS: 2081 RHSgradient -0.325989 +Summit location: 2026 +WavCombRight[2031] 2100 InsidePosnRHS: 2082 RHSgradient -0.317778 +Summit location: 2026 +WavCombRight[2031] 2101 InsidePosnRHS: 2083 RHSgradient -0.323515 +Summit location: 174 +WavCombRight[178] 203 InsidePosnRHS: 196 RHSgradient 0.110913 +Summit location: 174 +WavCombRight[178] 204 InsidePosnRHS: 197 RHSgradient 0.103442 +Summit location: 174 +WavCombRight[178] 205 InsidePosnRHS: 198 RHSgradient 0.100523 +Summit location: 174 +WavCombRight[178] 206 InsidePosnRHS: 199 RHSgradient 0.100303 +Summit location: 174 +WavCombRight[178] 207 InsidePosnRHS: 199 RHSgradient 0.102759 +Summit location: 174 +WavCombRight[178] 208 InsidePosnRHS: 200 RHSgradient 0.105603 +Summit location: 174 +WavCombRight[178] 209 InsidePosnRHS: 201 RHSgradient 0.114673 +Summit location: 174 +WavCombRight[178] 210 InsidePosnRHS: 202 RHSgradient 0.131137 +Summit location: 174 +WavCombRight[178] 211 InsidePosnRHS: 202 RHSgradient 0.164437 +Summit location: 174 +WavCombRight[178] 212 InsidePosnRHS: 203 RHSgradient 0.221077 +Summit location: 174 +WavCombRight[178] 213 InsidePosnRHS: 204 RHSgradient 0.259999 +Summit location: 174 +WavCombRight[178] 214 InsidePosnRHS: 205 RHSgradient 0.276226 +Summit location: 174 +WavCombRight[178] 215 InsidePosnRHS: 205 RHSgradient 0.272566 +Summit location: 174 +WavCombRight[178] 216 InsidePosnRHS: 206 RHSgradient 0.283994 +Summit location: 174 +WavCombRight[178] 217 InsidePosnRHS: 207 RHSgradient 0.294141 +Summit location: 174 +WavCombRight[178] 218 InsidePosnRHS: 208 RHSgradient 0.302021 +Summit location: 174 +WavCombRight[178] 219 InsidePosnRHS: 208 RHSgradient 0.294707 +Summit location: 174 +WavCombRight[178] 220 InsidePosnRHS: 209 RHSgradient 0.306030 +Summit location: 174 +WavCombRight[178] 221 InsidePosnRHS: 210 RHSgradient 0.320266 +Summit location: 174 +WavCombRight[178] 222 InsidePosnRHS: 211 RHSgradient 0.311743 +Summit location: 174 +WavCombRight[178] 223 InsidePosnRHS: 211 RHSgradient 0.305129 +Summit location: 174 +WavCombRight[178] 224 InsidePosnRHS: 212 RHSgradient 0.260168 +Summit location: 174 +WavCombRight[178] 224 InsidePosnRHS: 212 RHSgradient 0.260168 +Summit location: 174 +WavCombRight[178] 224 InsidePosnRHS: 212 RHSgradient 0.260168 +Summit location: 174 +WavCombRight[178] 224 InsidePosnRHS: 212 RHSgradient 0.260168 +Summit location: 174 +WavCombRight[178] 224 InsidePosnRHS: 212 RHSgradient 0.260168 +Summit location: 174 +WavCombRight[178] 224 InsidePosnRHS: 212 RHSgradient 0.260168 +Summit location: 174 +WavCombRight[178] 224 InsidePosnRHS: 212 RHSgradient 0.260168 +Summit location: 174 +WavCombRight[178] 224 InsidePosnRHS: 212 RHSgradient 0.260168 +Summit location: 174 +WavCombRight[178] 224 InsidePosnRHS: 212 RHSgradient 0.260168 +Summit location: 174 +WavCombRight[178] 224 InsidePosnRHS: 212 RHSgradient 0.260168 +Summit location: 174 +WavCombRight[178] 224 InsidePosnRHS: 212 RHSgradient 0.260168 +Summit location: 174 +WavCombRight[178] 224 InsidePosnRHS: 212 RHSgradient 0.260168 +Summit location: 382 +WavCombRight[387] 408 InsidePosnRHS: 402 RHSgradient 0.106665 +Summit location: 382 +WavCombRight[387] 409 InsidePosnRHS: 403 RHSgradient 0.103971 +Summit location: 382 +WavCombRight[387] 410 InsidePosnRHS: 404 RHSgradient 0.131885 +Summit location: 382 +WavCombRight[387] 411 InsidePosnRHS: 404 RHSgradient 0.160212 +Summit location: 382 +WavCombRight[387] 412 InsidePosnRHS: 405 RHSgradient 0.180671 +Summit location: 382 +WavCombRight[387] 413 InsidePosnRHS: 406 RHSgradient 0.218659 +Summit location: 382 +WavCombRight[387] 414 InsidePosnRHS: 407 RHSgradient 0.276263 +Summit location: 382 +WavCombRight[387] 415 InsidePosnRHS: 407 RHSgradient 0.289352 +Summit location: 382 +WavCombRight[387] 416 InsidePosnRHS: 408 RHSgradient 0.326236 +Summit location: 382 +WavCombRight[387] 417 InsidePosnRHS: 409 RHSgradient 0.335913 +Summit location: 382 +WavCombRight[387] 418 InsidePosnRHS: 410 RHSgradient 0.340280 +Summit location: 382 +WavCombRight[387] 419 InsidePosnRHS: 410 RHSgradient 0.346387 +Summit location: 382 +WavCombRight[387] 420 InsidePosnRHS: 411 RHSgradient 0.353334 +Summit location: 382 +WavCombRight[387] 421 InsidePosnRHS: 412 RHSgradient 0.361458 +Summit location: 382 +WavCombRight[387] 422 InsidePosnRHS: 413 RHSgradient 0.350575 +Summit location: 382 +WavCombRight[387] 423 InsidePosnRHS: 413 RHSgradient 0.301926 +Summit location: 382 +WavCombRight[387] 424 InsidePosnRHS: 414 RHSgradient 0.235757 +Summit location: 382 +WavCombRight[387] 425 InsidePosnRHS: 415 RHSgradient 0.161267 +Summit location: 382 +WavCombRight[387] 426 InsidePosnRHS: 416 RHSgradient 0.087012 +Summit location: 382 +WavCombRight[387] 427 InsidePosnRHS: 416 RHSgradient 0.049181 +Summit location: 382 +WavCombRight[387] 428 InsidePosnRHS: 417 RHSgradient -0.015929 +Summit location: 382 +WavCombRight[387] 429 InsidePosnRHS: 418 RHSgradient -0.082915 +Summit location: 382 +WavCombRight[387] 430 InsidePosnRHS: 419 RHSgradient -0.158139 +Summit location: 382 +WavCombRight[387] 431 InsidePosnRHS: 419 RHSgradient -0.187203 +Summit location: 382 +WavCombRight[387] 432 InsidePosnRHS: 420 RHSgradient -0.260000 +Summit location: 382 +WavCombRight[387] 433 InsidePosnRHS: 421 RHSgradient -0.321883 +Summit location: 382 +WavCombRight[387] 434 InsidePosnRHS: 422 RHSgradient -0.366516 +Summit location: 382 +WavCombRight[387] 435 InsidePosnRHS: 422 RHSgradient -0.368917 +Summit location: 382 +WavCombRight[387] 436 InsidePosnRHS: 423 RHSgradient -0.397649 +Summit location: 382 +WavCombRight[387] 437 InsidePosnRHS: 424 RHSgradient -0.416459 +Summit location: 382 +WavCombRight[387] 422 InsidePosnRHS: 413 RHSgradient 0.350575 +Summit location: 382 +WavCombRight[387] 423 InsidePosnRHS: 413 RHSgradient 0.301926 +Summit location: 382 +WavCombRight[387] 424 InsidePosnRHS: 414 RHSgradient 0.235757 +Summit location: 382 +WavCombRight[387] 425 InsidePosnRHS: 415 RHSgradient 0.161267 +Summit location: 382 +WavCombRight[387] 426 InsidePosnRHS: 416 RHSgradient 0.087012 +Summit location: 382 +WavCombRight[387] 427 InsidePosnRHS: 416 RHSgradient 0.049181 +Summit location: 382 +WavCombRight[387] 428 InsidePosnRHS: 417 RHSgradient -0.015929 +Summit location: 382 +WavCombRight[387] 429 InsidePosnRHS: 418 RHSgradient -0.082915 +Summit location: 382 +WavCombRight[387] 430 InsidePosnRHS: 419 RHSgradient -0.158139 +Summit location: 382 +WavCombRight[387] 431 InsidePosnRHS: 419 RHSgradient -0.187203 +Summit location: 382 +WavCombRight[387] 432 InsidePosnRHS: 420 RHSgradient -0.260000 +Summit location: 382 +WavCombRight[387] 433 InsidePosnRHS: 421 RHSgradient -0.321883 +Summit location: 382 +WavCombRight[387] 434 InsidePosnRHS: 422 RHSgradient -0.366516 +Summit location: 382 +WavCombRight[387] 435 InsidePosnRHS: 422 RHSgradient -0.368917 +Summit location: 382 +WavCombRight[387] 436 InsidePosnRHS: 423 RHSgradient -0.397649 +Summit location: 382 +WavCombRight[387] 437 InsidePosnRHS: 424 RHSgradient -0.416459 +Summit location: 382 +WavCombRight[387] 438 InsidePosnRHS: 425 RHSgradient -0.428743 +Summit location: 382 +WavCombRight[387] 422 InsidePosnRHS: 413 RHSgradient 0.350575 +Summit location: 382 +WavCombRight[387] 423 InsidePosnRHS: 413 RHSgradient 0.301926 +Summit location: 382 +WavCombRight[387] 424 InsidePosnRHS: 414 RHSgradient 0.235757 +Summit location: 382 +WavCombRight[387] 425 InsidePosnRHS: 415 RHSgradient 0.161267 +Summit location: 382 +WavCombRight[387] 426 InsidePosnRHS: 416 RHSgradient 0.087012 +Summit location: 382 +WavCombRight[387] 427 InsidePosnRHS: 416 RHSgradient 0.049181 +Summit location: 382 +WavCombRight[387] 428 InsidePosnRHS: 417 RHSgradient -0.015929 +Summit location: 382 +WavCombRight[387] 429 InsidePosnRHS: 418 RHSgradient -0.082915 +Summit location: 382 +WavCombRight[387] 430 InsidePosnRHS: 419 RHSgradient -0.158139 +Summit location: 382 +WavCombRight[387] 431 InsidePosnRHS: 419 RHSgradient -0.187203 +Summit location: 382 +WavCombRight[387] 432 InsidePosnRHS: 420 RHSgradient -0.260000 +Summit location: 382 +WavCombRight[387] 433 InsidePosnRHS: 421 RHSgradient -0.321883 +Summit location: 382 +WavCombRight[387] 434 InsidePosnRHS: 422 RHSgradient -0.366516 +Summit location: 382 +WavCombRight[387] 435 InsidePosnRHS: 422 RHSgradient -0.368917 +Summit location: 382 +WavCombRight[387] 436 InsidePosnRHS: 423 RHSgradient -0.397649 +Summit location: 382 +WavCombRight[387] 437 InsidePosnRHS: 424 RHSgradient -0.416459 +Summit location: 382 +WavCombRight[387] 438 InsidePosnRHS: 425 RHSgradient -0.428743 +Summit location: 382 +WavCombRight[387] 422 InsidePosnRHS: 413 RHSgradient 0.350575 +Summit location: 382 +WavCombRight[387] 423 InsidePosnRHS: 413 RHSgradient 0.301926 +Summit location: 382 +WavCombRight[387] 424 InsidePosnRHS: 414 RHSgradient 0.235757 +Summit location: 382 +WavCombRight[387] 425 InsidePosnRHS: 415 RHSgradient 0.161267 +Summit location: 382 +WavCombRight[387] 426 InsidePosnRHS: 416 RHSgradient 0.087012 +Summit location: 382 +WavCombRight[387] 427 InsidePosnRHS: 416 RHSgradient 0.049181 +Summit location: 382 +WavCombRight[387] 428 InsidePosnRHS: 417 RHSgradient -0.015929 +Summit location: 382 +WavCombRight[387] 429 InsidePosnRHS: 418 RHSgradient -0.082915 +Summit location: 382 +WavCombRight[387] 430 InsidePosnRHS: 419 RHSgradient -0.158139 +Summit location: 382 +WavCombRight[387] 431 InsidePosnRHS: 419 RHSgradient -0.187203 +Summit location: 382 +WavCombRight[387] 432 InsidePosnRHS: 420 RHSgradient -0.260000 +Summit location: 382 +WavCombRight[387] 433 InsidePosnRHS: 421 RHSgradient -0.321883 +Summit location: 382 +WavCombRight[387] 434 InsidePosnRHS: 422 RHSgradient -0.366516 +Summit location: 382 +WavCombRight[387] 435 InsidePosnRHS: 422 RHSgradient -0.368917 +Summit location: 382 +WavCombRight[387] 436 InsidePosnRHS: 423 RHSgradient -0.397649 +Summit location: 382 +WavCombRight[387] 437 InsidePosnRHS: 424 RHSgradient -0.416459 +Summit location: 382 +WavCombRight[387] 438 InsidePosnRHS: 425 RHSgradient -0.428743 +Summit location: 382 +WavCombRight[387] 422 InsidePosnRHS: 413 RHSgradient 0.350575 +Summit location: 382 +WavCombRight[387] 423 InsidePosnRHS: 413 RHSgradient 0.301926 +Summit location: 382 +WavCombRight[387] 424 InsidePosnRHS: 414 RHSgradient 0.235757 +Summit location: 382 +WavCombRight[387] 425 InsidePosnRHS: 415 RHSgradient 0.161267 +Summit location: 382 +WavCombRight[387] 426 InsidePosnRHS: 416 RHSgradient 0.087012 +Summit location: 382 +WavCombRight[387] 427 InsidePosnRHS: 416 RHSgradient 0.049181 +Summit location: 382 +WavCombRight[387] 428 InsidePosnRHS: 417 RHSgradient -0.015929 +Summit location: 382 +WavCombRight[387] 429 InsidePosnRHS: 418 RHSgradient -0.082915 +Summit location: 382 +WavCombRight[387] 430 InsidePosnRHS: 419 RHSgradient -0.158139 +Summit location: 382 +WavCombRight[387] 431 InsidePosnRHS: 419 RHSgradient -0.187203 +Summit location: 382 +WavCombRight[387] 432 InsidePosnRHS: 420 RHSgradient -0.260000 +Summit location: 382 +WavCombRight[387] 433 InsidePosnRHS: 421 RHSgradient -0.321883 +Summit location: 382 +WavCombRight[387] 434 InsidePosnRHS: 422 RHSgradient -0.366516 +Summit location: 382 +WavCombRight[387] 435 InsidePosnRHS: 422 RHSgradient -0.368917 +Summit location: 382 +WavCombRight[387] 436 InsidePosnRHS: 423 RHSgradient -0.397649 +Summit location: 382 +WavCombRight[387] 437 InsidePosnRHS: 424 RHSgradient -0.416459 +Summit location: 382 +WavCombRight[387] 438 InsidePosnRHS: 425 RHSgradient -0.428743 +Summit location: 382 +WavCombRight[387] 422 InsidePosnRHS: 413 RHSgradient 0.350575 +Summit location: 382 +WavCombRight[387] 423 InsidePosnRHS: 413 RHSgradient 0.301926 +Summit location: 382 +WavCombRight[387] 424 InsidePosnRHS: 414 RHSgradient 0.235757 +Summit location: 382 +WavCombRight[387] 425 InsidePosnRHS: 415 RHSgradient 0.161267 +Summit location: 382 +WavCombRight[387] 426 InsidePosnRHS: 416 RHSgradient 0.087012 +Summit location: 382 +WavCombRight[387] 427 InsidePosnRHS: 416 RHSgradient 0.049181 +Summit location: 382 +WavCombRight[387] 428 InsidePosnRHS: 417 RHSgradient -0.015929 +Summit location: 382 +WavCombRight[387] 429 InsidePosnRHS: 418 RHSgradient -0.082915 +Summit location: 382 +WavCombRight[387] 430 InsidePosnRHS: 419 RHSgradient -0.158139 +Summit location: 382 +WavCombRight[387] 431 InsidePosnRHS: 419 RHSgradient -0.187203 +Summit location: 382 +WavCombRight[387] 432 InsidePosnRHS: 420 RHSgradient -0.260000 +Summit location: 382 +WavCombRight[387] 433 InsidePosnRHS: 421 RHSgradient -0.321883 +Summit location: 382 +WavCombRight[387] 434 InsidePosnRHS: 422 RHSgradient -0.366516 +Summit location: 382 +WavCombRight[387] 435 InsidePosnRHS: 422 RHSgradient -0.368917 +Summit location: 382 +WavCombRight[387] 436 InsidePosnRHS: 423 RHSgradient -0.397649 +Summit location: 382 +WavCombRight[387] 437 InsidePosnRHS: 424 RHSgradient -0.416459 +Summit location: 382 +WavCombRight[387] 438 InsidePosnRHS: 425 RHSgradient -0.428743 +Summit location: 382 +WavCombRight[387] 439 InsidePosnRHS: 425 RHSgradient -0.419788 +Summit location: 382 +WavCombRight[387] 422 InsidePosnRHS: 413 RHSgradient 0.350575 +Summit location: 382 +WavCombRight[387] 423 InsidePosnRHS: 413 RHSgradient 0.301926 +Summit location: 382 +WavCombRight[387] 424 InsidePosnRHS: 414 RHSgradient 0.235757 +Summit location: 382 +WavCombRight[387] 425 InsidePosnRHS: 415 RHSgradient 0.161267 +Summit location: 382 +WavCombRight[387] 426 InsidePosnRHS: 416 RHSgradient 0.087012 +Summit location: 382 +WavCombRight[387] 427 InsidePosnRHS: 416 RHSgradient 0.049181 +Summit location: 382 +WavCombRight[387] 428 InsidePosnRHS: 417 RHSgradient -0.015929 +Summit location: 382 +WavCombRight[387] 429 InsidePosnRHS: 418 RHSgradient -0.082915 +Summit location: 382 +WavCombRight[387] 430 InsidePosnRHS: 419 RHSgradient -0.158139 +Summit location: 382 +WavCombRight[387] 431 InsidePosnRHS: 419 RHSgradient -0.187203 +Summit location: 382 +WavCombRight[387] 432 InsidePosnRHS: 420 RHSgradient -0.260000 +Summit location: 382 +WavCombRight[387] 433 InsidePosnRHS: 421 RHSgradient -0.321883 +Summit location: 382 +WavCombRight[387] 434 InsidePosnRHS: 422 RHSgradient -0.366516 +Summit location: 382 +WavCombRight[387] 435 InsidePosnRHS: 422 RHSgradient -0.368917 +Summit location: 382 +WavCombRight[387] 436 InsidePosnRHS: 423 RHSgradient -0.397649 +Summit location: 382 +WavCombRight[387] 437 InsidePosnRHS: 424 RHSgradient -0.416459 +Summit location: 382 +WavCombRight[387] 438 InsidePosnRHS: 425 RHSgradient -0.428743 +Summit location: 382 +WavCombRight[387] 439 InsidePosnRHS: 425 RHSgradient -0.419788 +Summit location: 382 +WavCombRight[387] 422 InsidePosnRHS: 413 RHSgradient 0.350575 +Summit location: 382 +WavCombRight[387] 423 InsidePosnRHS: 413 RHSgradient 0.301926 +Summit location: 382 +WavCombRight[387] 424 InsidePosnRHS: 414 RHSgradient 0.235757 +Summit location: 382 +WavCombRight[387] 425 InsidePosnRHS: 415 RHSgradient 0.161267 +Summit location: 382 +WavCombRight[387] 426 InsidePosnRHS: 416 RHSgradient 0.087012 +Summit location: 382 +WavCombRight[387] 427 InsidePosnRHS: 416 RHSgradient 0.049181 +Summit location: 382 +WavCombRight[387] 428 InsidePosnRHS: 417 RHSgradient -0.015929 +Summit location: 382 +WavCombRight[387] 429 InsidePosnRHS: 418 RHSgradient -0.082915 +Summit location: 382 +WavCombRight[387] 430 InsidePosnRHS: 419 RHSgradient -0.158139 +Summit location: 382 +WavCombRight[387] 431 InsidePosnRHS: 419 RHSgradient -0.187203 +Summit location: 382 +WavCombRight[387] 432 InsidePosnRHS: 420 RHSgradient -0.260000 +Summit location: 382 +WavCombRight[387] 433 InsidePosnRHS: 421 RHSgradient -0.321883 +Summit location: 382 +WavCombRight[387] 434 InsidePosnRHS: 422 RHSgradient -0.366516 +Summit location: 382 +WavCombRight[387] 435 InsidePosnRHS: 422 RHSgradient -0.368917 +Summit location: 382 +WavCombRight[387] 436 InsidePosnRHS: 423 RHSgradient -0.397649 +Summit location: 382 +WavCombRight[387] 437 InsidePosnRHS: 424 RHSgradient -0.416459 +Summit location: 382 +WavCombRight[387] 438 InsidePosnRHS: 425 RHSgradient -0.428743 +Summit location: 382 +WavCombRight[387] 439 InsidePosnRHS: 425 RHSgradient -0.419788 +Summit location: 382 +WavCombRight[387] 440 InsidePosnRHS: 426 RHSgradient -0.406117 +Summit location: 382 +WavCombRight[387] 441 InsidePosnRHS: 427 RHSgradient -0.399348 +Summit location: 382 +WavCombRight[387] 423 InsidePosnRHS: 413 RHSgradient 0.301926 +Summit location: 382 +WavCombRight[387] 424 InsidePosnRHS: 414 RHSgradient 0.235757 +Summit location: 382 +WavCombRight[387] 425 InsidePosnRHS: 415 RHSgradient 0.161267 +Summit location: 382 +WavCombRight[387] 426 InsidePosnRHS: 416 RHSgradient 0.087012 +Summit location: 382 +WavCombRight[387] 427 InsidePosnRHS: 416 RHSgradient 0.049181 +Summit location: 382 +WavCombRight[387] 428 InsidePosnRHS: 417 RHSgradient -0.015929 +Summit location: 382 +WavCombRight[387] 429 InsidePosnRHS: 418 RHSgradient -0.082915 +Summit location: 382 +WavCombRight[387] 430 InsidePosnRHS: 419 RHSgradient -0.158139 +Summit location: 382 +WavCombRight[387] 431 InsidePosnRHS: 419 RHSgradient -0.187203 +Summit location: 382 +WavCombRight[387] 432 InsidePosnRHS: 420 RHSgradient -0.260000 +Summit location: 382 +WavCombRight[387] 433 InsidePosnRHS: 421 RHSgradient -0.321883 +Summit location: 382 +WavCombRight[387] 434 InsidePosnRHS: 422 RHSgradient -0.366516 +Summit location: 382 +WavCombRight[387] 435 InsidePosnRHS: 422 RHSgradient -0.368917 +Summit location: 382 +WavCombRight[387] 436 InsidePosnRHS: 423 RHSgradient -0.397649 +Summit location: 382 +WavCombRight[387] 437 InsidePosnRHS: 424 RHSgradient -0.416459 +Summit location: 382 +WavCombRight[387] 438 InsidePosnRHS: 425 RHSgradient -0.428743 +Summit location: 382 +WavCombRight[387] 439 InsidePosnRHS: 425 RHSgradient -0.419788 +Summit location: 382 +WavCombRight[387] 440 InsidePosnRHS: 426 RHSgradient -0.406117 +Summit location: 382 +WavCombRight[387] 441 InsidePosnRHS: 427 RHSgradient -0.399348 +Summit location: 382 +WavCombRight[387] 423 InsidePosnRHS: 413 RHSgradient 0.301926 +Summit location: 382 +WavCombRight[387] 424 InsidePosnRHS: 414 RHSgradient 0.235757 +Summit location: 382 +WavCombRight[387] 425 InsidePosnRHS: 415 RHSgradient 0.161267 +Summit location: 382 +WavCombRight[387] 426 InsidePosnRHS: 416 RHSgradient 0.087012 +Summit location: 382 +WavCombRight[387] 427 InsidePosnRHS: 416 RHSgradient 0.049181 +Summit location: 382 +WavCombRight[387] 428 InsidePosnRHS: 417 RHSgradient -0.015929 +Summit location: 382 +WavCombRight[387] 429 InsidePosnRHS: 418 RHSgradient -0.082915 +Summit location: 382 +WavCombRight[387] 430 InsidePosnRHS: 419 RHSgradient -0.158139 +Summit location: 382 +WavCombRight[387] 431 InsidePosnRHS: 419 RHSgradient -0.187203 +Summit location: 382 +WavCombRight[387] 432 InsidePosnRHS: 420 RHSgradient -0.260000 +Summit location: 382 +WavCombRight[387] 433 InsidePosnRHS: 421 RHSgradient -0.321883 +Summit location: 382 +WavCombRight[387] 434 InsidePosnRHS: 422 RHSgradient -0.366516 +Summit location: 382 +WavCombRight[387] 435 InsidePosnRHS: 422 RHSgradient -0.368917 +Summit location: 382 +WavCombRight[387] 436 InsidePosnRHS: 423 RHSgradient -0.397649 +Summit location: 382 +WavCombRight[387] 437 InsidePosnRHS: 424 RHSgradient -0.416459 +Summit location: 382 +WavCombRight[387] 438 InsidePosnRHS: 425 RHSgradient -0.428743 +Summit location: 382 +WavCombRight[387] 439 InsidePosnRHS: 425 RHSgradient -0.419788 +Summit location: 382 +WavCombRight[387] 440 InsidePosnRHS: 426 RHSgradient -0.406117 +Summit location: 382 +WavCombRight[387] 441 InsidePosnRHS: 427 RHSgradient -0.399348 +Summit location: 382 +WavCombRight[387] 423 InsidePosnRHS: 413 RHSgradient 0.301926 +Summit location: 382 +WavCombRight[387] 424 InsidePosnRHS: 414 RHSgradient 0.235757 +Summit location: 382 +WavCombRight[387] 425 InsidePosnRHS: 415 RHSgradient 0.161267 +Summit location: 382 +WavCombRight[387] 426 InsidePosnRHS: 416 RHSgradient 0.087012 +Summit location: 382 +WavCombRight[387] 427 InsidePosnRHS: 416 RHSgradient 0.049181 +Summit location: 382 +WavCombRight[387] 428 InsidePosnRHS: 417 RHSgradient -0.015929 +Summit location: 382 +WavCombRight[387] 429 InsidePosnRHS: 418 RHSgradient -0.082915 +Summit location: 382 +WavCombRight[387] 430 InsidePosnRHS: 419 RHSgradient -0.158139 +Summit location: 382 +WavCombRight[387] 431 InsidePosnRHS: 419 RHSgradient -0.187203 +Summit location: 382 +WavCombRight[387] 432 InsidePosnRHS: 420 RHSgradient -0.260000 +Summit location: 382 +WavCombRight[387] 433 InsidePosnRHS: 421 RHSgradient -0.321883 +Summit location: 382 +WavCombRight[387] 434 InsidePosnRHS: 422 RHSgradient -0.366516 +Summit location: 382 +WavCombRight[387] 435 InsidePosnRHS: 422 RHSgradient -0.368917 +Summit location: 382 +WavCombRight[387] 436 InsidePosnRHS: 423 RHSgradient -0.397649 +Summit location: 382 +WavCombRight[387] 437 InsidePosnRHS: 424 RHSgradient -0.416459 +Summit location: 382 +WavCombRight[387] 438 InsidePosnRHS: 425 RHSgradient -0.428743 +Summit location: 382 +WavCombRight[387] 439 InsidePosnRHS: 425 RHSgradient -0.419788 +Summit location: 382 +WavCombRight[387] 440 InsidePosnRHS: 426 RHSgradient -0.406117 +Summit location: 382 +WavCombRight[387] 441 InsidePosnRHS: 427 RHSgradient -0.399348 +Summit location: 382 +WavCombRight[387] 423 InsidePosnRHS: 413 RHSgradient 0.301926 +Summit location: 382 +WavCombRight[387] 424 InsidePosnRHS: 414 RHSgradient 0.235757 +Summit location: 382 +WavCombRight[387] 425 InsidePosnRHS: 415 RHSgradient 0.161267 +Summit location: 382 +WavCombRight[387] 426 InsidePosnRHS: 416 RHSgradient 0.087012 +Summit location: 382 +WavCombRight[387] 427 InsidePosnRHS: 416 RHSgradient 0.049181 +Summit location: 382 +WavCombRight[387] 428 InsidePosnRHS: 417 RHSgradient -0.015929 +Summit location: 382 +WavCombRight[387] 429 InsidePosnRHS: 418 RHSgradient -0.082915 +Summit location: 382 +WavCombRight[387] 430 InsidePosnRHS: 419 RHSgradient -0.158139 +Summit location: 382 +WavCombRight[387] 431 InsidePosnRHS: 419 RHSgradient -0.187203 +Summit location: 382 +WavCombRight[387] 432 InsidePosnRHS: 420 RHSgradient -0.260000 +Summit location: 382 +WavCombRight[387] 433 InsidePosnRHS: 421 RHSgradient -0.321883 +Summit location: 382 +WavCombRight[387] 434 InsidePosnRHS: 422 RHSgradient -0.366516 +Summit location: 382 +WavCombRight[387] 435 InsidePosnRHS: 422 RHSgradient -0.368917 +Summit location: 382 +WavCombRight[387] 436 InsidePosnRHS: 423 RHSgradient -0.397649 +Summit location: 382 +WavCombRight[387] 437 InsidePosnRHS: 424 RHSgradient -0.416459 +Summit location: 382 +WavCombRight[387] 438 InsidePosnRHS: 425 RHSgradient -0.428743 +Summit location: 382 +WavCombRight[387] 439 InsidePosnRHS: 425 RHSgradient -0.419788 +Summit location: 382 +WavCombRight[387] 440 InsidePosnRHS: 426 RHSgradient -0.406117 +Summit location: 382 +WavCombRight[387] 441 InsidePosnRHS: 427 RHSgradient -0.399348 +Summit location: 382 +WavCombRight[387] 442 InsidePosnRHS: 428 RHSgradient -0.412039 +Summit location: 382 +WavCombRight[387] 423 InsidePosnRHS: 413 RHSgradient 0.301926 +Summit location: 382 +WavCombRight[387] 424 InsidePosnRHS: 414 RHSgradient 0.235757 +Summit location: 382 +WavCombRight[387] 425 InsidePosnRHS: 415 RHSgradient 0.161267 +Summit location: 382 +WavCombRight[387] 426 InsidePosnRHS: 416 RHSgradient 0.087012 +Summit location: 382 +WavCombRight[387] 427 InsidePosnRHS: 416 RHSgradient 0.049181 +Summit location: 382 +WavCombRight[387] 428 InsidePosnRHS: 417 RHSgradient -0.015929 +Summit location: 382 +WavCombRight[387] 429 InsidePosnRHS: 418 RHSgradient -0.082915 +Summit location: 382 +WavCombRight[387] 430 InsidePosnRHS: 419 RHSgradient -0.158139 +Summit location: 382 +WavCombRight[387] 431 InsidePosnRHS: 419 RHSgradient -0.187203 +Summit location: 382 +WavCombRight[387] 432 InsidePosnRHS: 420 RHSgradient -0.260000 +Summit location: 382 +WavCombRight[387] 433 InsidePosnRHS: 421 RHSgradient -0.321883 +Summit location: 382 +WavCombRight[387] 434 InsidePosnRHS: 422 RHSgradient -0.366516 +Summit location: 382 +WavCombRight[387] 435 InsidePosnRHS: 422 RHSgradient -0.368917 +Summit location: 382 +WavCombRight[387] 436 InsidePosnRHS: 423 RHSgradient -0.397649 +Summit location: 382 +WavCombRight[387] 437 InsidePosnRHS: 424 RHSgradient -0.416459 +Summit location: 382 +WavCombRight[387] 438 InsidePosnRHS: 425 RHSgradient -0.428743 +Summit location: 382 +WavCombRight[387] 439 InsidePosnRHS: 425 RHSgradient -0.419788 +Summit location: 382 +WavCombRight[387] 440 InsidePosnRHS: 426 RHSgradient -0.406117 +Summit location: 382 +WavCombRight[387] 441 InsidePosnRHS: 427 RHSgradient -0.399348 +Summit location: 382 +WavCombRight[387] 442 InsidePosnRHS: 428 RHSgradient -0.412039 +Summit location: 382 +WavCombRight[387] 423 InsidePosnRHS: 413 RHSgradient 0.301926 +Summit location: 382 +WavCombRight[387] 424 InsidePosnRHS: 414 RHSgradient 0.235757 +Summit location: 382 +WavCombRight[387] 425 InsidePosnRHS: 415 RHSgradient 0.161267 +Summit location: 382 +WavCombRight[387] 426 InsidePosnRHS: 416 RHSgradient 0.087012 +Summit location: 382 +WavCombRight[387] 427 InsidePosnRHS: 416 RHSgradient 0.049181 +Summit location: 382 +WavCombRight[387] 428 InsidePosnRHS: 417 RHSgradient -0.015929 +Summit location: 382 +WavCombRight[387] 429 InsidePosnRHS: 418 RHSgradient -0.082915 +Summit location: 382 +WavCombRight[387] 430 InsidePosnRHS: 419 RHSgradient -0.158139 +Summit location: 382 +WavCombRight[387] 431 InsidePosnRHS: 419 RHSgradient -0.187203 +Summit location: 382 +WavCombRight[387] 432 InsidePosnRHS: 420 RHSgradient -0.260000 +Summit location: 382 +WavCombRight[387] 433 InsidePosnRHS: 421 RHSgradient -0.321883 +Summit location: 382 +WavCombRight[387] 434 InsidePosnRHS: 422 RHSgradient -0.366516 +Summit location: 382 +WavCombRight[387] 435 InsidePosnRHS: 422 RHSgradient -0.368917 +Summit location: 382 +WavCombRight[387] 436 InsidePosnRHS: 423 RHSgradient -0.397649 +Summit location: 382 +WavCombRight[387] 437 InsidePosnRHS: 424 RHSgradient -0.416459 +Summit location: 382 +WavCombRight[387] 438 InsidePosnRHS: 425 RHSgradient -0.428743 +Summit location: 382 +WavCombRight[387] 439 InsidePosnRHS: 425 RHSgradient -0.419788 +Summit location: 382 +WavCombRight[387] 440 InsidePosnRHS: 426 RHSgradient -0.406117 +Summit location: 382 +WavCombRight[387] 441 InsidePosnRHS: 427 RHSgradient -0.399348 +Summit location: 382 +WavCombRight[387] 442 InsidePosnRHS: 428 RHSgradient -0.412039 +Summit location: 2358 +WavCombRight[2358] 2369 InsidePosnRHS: 2367 RHSgradient 1.275201 +Summit location: 2358 +WavCombRight[2358] 2370 InsidePosnRHS: 2368 RHSgradient 1.216187 +Summit location: 2358 +WavCombRight[2358] 2371 InsidePosnRHS: 2368 RHSgradient 1.068591 +Summit location: 2358 +WavCombRight[2358] 2372 InsidePosnRHS: 2369 RHSgradient 0.852075 +Summit location: 2358 +WavCombRight[2358] 2373 InsidePosnRHS: 2370 RHSgradient 0.713334 +Summit location: 2358 +WavCombRight[2358] 2374 InsidePosnRHS: 2371 RHSgradient 0.739294 +Summit location: 2358 +WavCombRight[2358] 2375 InsidePosnRHS: 2371 RHSgradient 0.751141 +Summit location: 2358 +WavCombRight[2358] 2376 InsidePosnRHS: 2372 RHSgradient 0.608343 +Summit location: 2358 +WavCombRight[2358] 2376 InsidePosnRHS: 2372 RHSgradient 0.608343 +Summit location: 2358 +WavCombRight[2358] 2376 InsidePosnRHS: 2372 RHSgradient 0.608343 +Summit location: 2358 +WavCombRight[2358] 2376 InsidePosnRHS: 2372 RHSgradient 0.608343 +Summit location: 2358 +WavCombRight[2358] 2376 InsidePosnRHS: 2372 RHSgradient 0.608343 +Summit location: 2358 +WavCombRight[2358] 2376 InsidePosnRHS: 2372 RHSgradient 0.608343 +Summit location: 2496 +WavCombRight[2485] 2515 InsidePosnRHS: 2511 RHSgradient 0.044946 +Summit location: 2496 +WavCombRight[2485] 2516 InsidePosnRHS: 2512 RHSgradient 0.130453 +Summit location: 2496 +WavCombRight[2485] 2517 InsidePosnRHS: 2512 RHSgradient 0.230840 +Summit location: 2496 +WavCombRight[2485] 2518 InsidePosnRHS: 2513 RHSgradient 0.426291 +Summit location: 2496 +WavCombRight[2485] 2519 InsidePosnRHS: 2514 RHSgradient 0.585999 +Summit location: 2496 +WavCombRight[2485] 2520 InsidePosnRHS: 2515 RHSgradient 0.688044 +Summit location: 2496 +WavCombRight[2485] 2521 InsidePosnRHS: 2515 RHSgradient 0.714598 +Summit location: 2496 +WavCombRight[2485] 2522 InsidePosnRHS: 2516 RHSgradient 0.788121 +Summit location: 2496 +WavCombRight[2485] 2523 InsidePosnRHS: 2517 RHSgradient 0.819999 +Summit location: 2496 +WavCombRight[2485] 2524 InsidePosnRHS: 2518 RHSgradient 0.788649 +Summit location: 2496 +WavCombRight[2485] 2525 InsidePosnRHS: 2518 RHSgradient 0.715988 +Summit location: 2496 +WavCombRight[2485] 2526 InsidePosnRHS: 2519 RHSgradient 0.615716 +Summit location: 2496 +WavCombRight[2485] 2527 InsidePosnRHS: 2520 RHSgradient 0.495394 +Summit location: 2496 +WavCombRight[2485] 2528 InsidePosnRHS: 2521 RHSgradient 0.362008 +Summit location: 2496 +WavCombRight[2485] 2529 InsidePosnRHS: 2521 RHSgradient 0.316579 +Summit location: 2496 +WavCombRight[2485] 2530 InsidePosnRHS: 2522 RHSgradient 0.219846 +Summit location: 2496 +WavCombRight[2485] 2531 InsidePosnRHS: 2523 RHSgradient 0.130940 +Summit location: 2496 +WavCombRight[2485] 2532 InsidePosnRHS: 2524 RHSgradient 0.074271 +Summit location: 2496 +WavCombRight[2485] 2533 InsidePosnRHS: 2524 RHSgradient 0.087341 +Summit location: 2496 +WavCombRight[2485] 2534 InsidePosnRHS: 2525 RHSgradient 0.080752 +Summit location: 2496 +WavCombRight[2485] 2535 InsidePosnRHS: 2526 RHSgradient 0.086666 +Summit location: 2496 +WavCombRight[2485] 2536 InsidePosnRHS: 2527 RHSgradient 0.090891 +Summit location: 2496 +WavCombRight[2485] 2537 InsidePosnRHS: 2527 RHSgradient 0.075045 +Summit location: 2496 +WavCombRight[2485] 2538 InsidePosnRHS: 2528 RHSgradient 0.079857 +Summit location: 2496 +WavCombRight[2485] 2539 InsidePosnRHS: 2529 RHSgradient 0.083721 +Summit location: 2496 +WavCombRight[2485] 2540 InsidePosnRHS: 2530 RHSgradient 0.079886 +Summit location: 2496 +WavCombRight[2485] 2541 InsidePosnRHS: 2530 RHSgradient 0.074991 +Summit location: 2496 +WavCombRight[2485] 2542 InsidePosnRHS: 2531 RHSgradient 0.060619 +Summit location: 2496 +WavCombRight[2485] 2543 InsidePosnRHS: 2532 RHSgradient 0.038328 +Summit location: 2496 +WavCombRight[2485] 2544 InsidePosnRHS: 2533 RHSgradient 0.006190 +Summit location: 2496 +WavCombRight[2485] 2526 InsidePosnRHS: 2519 RHSgradient 0.615716 +Summit location: 2496 +WavCombRight[2485] 2527 InsidePosnRHS: 2520 RHSgradient 0.495394 +Summit location: 2496 +WavCombRight[2485] 2528 InsidePosnRHS: 2521 RHSgradient 0.362008 +Summit location: 2496 +WavCombRight[2485] 2529 InsidePosnRHS: 2521 RHSgradient 0.316579 +Summit location: 2496 +WavCombRight[2485] 2530 InsidePosnRHS: 2522 RHSgradient 0.219846 +Summit location: 2496 +WavCombRight[2485] 2531 InsidePosnRHS: 2523 RHSgradient 0.130940 +Summit location: 2496 +WavCombRight[2485] 2532 InsidePosnRHS: 2524 RHSgradient 0.074271 +Summit location: 2496 +WavCombRight[2485] 2533 InsidePosnRHS: 2524 RHSgradient 0.087341 +Summit location: 2496 +WavCombRight[2485] 2534 InsidePosnRHS: 2525 RHSgradient 0.080752 +Summit location: 2496 +WavCombRight[2485] 2535 InsidePosnRHS: 2526 RHSgradient 0.086666 +Summit location: 2496 +WavCombRight[2485] 2536 InsidePosnRHS: 2527 RHSgradient 0.090891 +Summit location: 2496 +WavCombRight[2485] 2537 InsidePosnRHS: 2527 RHSgradient 0.075045 +Summit location: 2496 +WavCombRight[2485] 2538 InsidePosnRHS: 2528 RHSgradient 0.079857 +Summit location: 2496 +WavCombRight[2485] 2539 InsidePosnRHS: 2529 RHSgradient 0.083721 +Summit location: 2496 +WavCombRight[2485] 2540 InsidePosnRHS: 2530 RHSgradient 0.079886 +Summit location: 2496 +WavCombRight[2485] 2541 InsidePosnRHS: 2530 RHSgradient 0.074991 +Summit location: 2496 +WavCombRight[2485] 2542 InsidePosnRHS: 2531 RHSgradient 0.060619 +Summit location: 2496 +WavCombRight[2485] 2543 InsidePosnRHS: 2532 RHSgradient 0.038328 +Summit location: 2496 +WavCombRight[2485] 2544 InsidePosnRHS: 2533 RHSgradient 0.006190 +Summit location: 1026 +WavCombRight[1027] 1044 InsidePosnRHS: 1040 RHSgradient 0.447021 +Summit location: 1026 +WavCombRight[1027] 1045 InsidePosnRHS: 1041 RHSgradient 0.420148 +Summit location: 1026 +WavCombRight[1027] 1046 InsidePosnRHS: 1042 RHSgradient 0.453085 +Summit location: 1026 +WavCombRight[1027] 1047 InsidePosnRHS: 1042 RHSgradient 0.450142 +Summit location: 1026 +WavCombRight[1027] 1048 InsidePosnRHS: 1043 RHSgradient 0.429983 +Summit location: 1026 +WavCombRight[1027] 1049 InsidePosnRHS: 1044 RHSgradient 0.385557 +Summit location: 1026 +WavCombRight[1027] 1050 InsidePosnRHS: 1045 RHSgradient 0.319880 +Summit location: 1026 +WavCombRight[1027] 1051 InsidePosnRHS: 1045 RHSgradient 0.314307 +Summit location: 1026 +WavCombRight[1027] 1052 InsidePosnRHS: 1046 RHSgradient 0.272561 +Summit location: 1026 +WavCombRight[1027] 1053 InsidePosnRHS: 1047 RHSgradient 0.240000 +Summit location: 1026 +WavCombRight[1027] 1054 InsidePosnRHS: 1048 RHSgradient 0.217922 +Summit location: 1026 +WavCombRight[1027] 1055 InsidePosnRHS: 1048 RHSgradient 0.188360 +Summit location: 1026 +WavCombRight[1027] 1056 InsidePosnRHS: 1049 RHSgradient 0.158888 +Summit location: 1026 +WavCombRight[1027] 1057 InsidePosnRHS: 1050 RHSgradient 0.123973 +Summit location: 1026 +WavCombRight[1027] 1058 InsidePosnRHS: 1051 RHSgradient 0.071924 +Summit location: 1026 +WavCombRight[1027] 1059 InsidePosnRHS: 1051 RHSgradient 0.044196 +Summit location: 1026 +WavCombRight[1027] 1060 InsidePosnRHS: 1052 RHSgradient -0.020810 +Summit location: 1026 +WavCombRight[1027] 1061 InsidePosnRHS: 1053 RHSgradient -0.078371 +Summit location: 1026 +WavCombRight[1027] 1062 InsidePosnRHS: 1054 RHSgradient -0.119040 +Summit location: 1026 +WavCombRight[1027] 1063 InsidePosnRHS: 1054 RHSgradient -0.128300 +Summit location: 1026 +WavCombRight[1027] 1064 InsidePosnRHS: 1055 RHSgradient -0.151514 +Summit location: 1026 +WavCombRight[1027] 1065 InsidePosnRHS: 1056 RHSgradient -0.168890 +Summit location: 907 +WavCombRight[915] 945 InsidePosnRHS: 936 RHSgradient 0.479999 +Summit location: 907 +WavCombRight[915] 946 InsidePosnRHS: 937 RHSgradient 0.508008 +Summit location: 907 +WavCombRight[915] 947 InsidePosnRHS: 938 RHSgradient 0.560072 +Summit location: 907 +WavCombRight[915] 948 InsidePosnRHS: 938 RHSgradient 0.581338 +Summit location: 907 +WavCombRight[915] 949 InsidePosnRHS: 939 RHSgradient 0.569191 +Summit location: 907 +WavCombRight[915] 950 InsidePosnRHS: 940 RHSgradient 0.547134 +Summit location: 907 +WavCombRight[915] 951 InsidePosnRHS: 941 RHSgradient 0.511929 +Summit location: 907 +WavCombRight[915] 952 InsidePosnRHS: 941 RHSgradient 0.469259 +Summit location: 907 +WavCombRight[915] 953 InsidePosnRHS: 942 RHSgradient 0.428862 +Summit location: 907 +WavCombRight[915] 954 InsidePosnRHS: 943 RHSgradient 0.384099 +Summit location: 907 +WavCombRight[915] 955 InsidePosnRHS: 944 RHSgradient 0.331870 +Summit location: 907 +WavCombRight[915] 956 InsidePosnRHS: 944 RHSgradient 0.291261 +Summit location: 907 +WavCombRight[915] 957 InsidePosnRHS: 945 RHSgradient 0.246666 +Summit location: 907 +WavCombRight[915] 958 InsidePosnRHS: 946 RHSgradient 0.184420 +Summit location: 907 +WavCombRight[915] 959 InsidePosnRHS: 947 RHSgradient 0.102147 +Summit location: 907 +WavCombRight[915] 960 InsidePosnRHS: 947 RHSgradient 0.096364 +Summit location: 907 +WavCombRight[915] 961 InsidePosnRHS: 948 RHSgradient 0.036268 +Summit location: 907 +WavCombRight[915] 962 InsidePosnRHS: 949 RHSgradient 0.004283 +Summit location: 907 +WavCombRight[915] 963 InsidePosnRHS: 950 RHSgradient -0.014779 +Summit location: 907 +WavCombRight[915] 964 InsidePosnRHS: 950 RHSgradient -0.004039 +Summit location: 907 +WavCombRight[915] 965 InsidePosnRHS: 951 RHSgradient 0.006297 +Summit location: 907 +WavCombRight[915] 966 InsidePosnRHS: 952 RHSgradient 0.015531 +Summit location: 907 +WavCombRight[915] 967 InsidePosnRHS: 953 RHSgradient 0.016309 +Summit location: 907 +WavCombRight[915] 951 InsidePosnRHS: 941 RHSgradient 0.511929 +Summit location: 907 +WavCombRight[915] 952 InsidePosnRHS: 941 RHSgradient 0.469259 +Summit location: 907 +WavCombRight[915] 953 InsidePosnRHS: 942 RHSgradient 0.428862 +Summit location: 907 +WavCombRight[915] 954 InsidePosnRHS: 943 RHSgradient 0.384099 +Summit location: 907 +WavCombRight[915] 955 InsidePosnRHS: 944 RHSgradient 0.331870 +Summit location: 907 +WavCombRight[915] 956 InsidePosnRHS: 944 RHSgradient 0.291261 +Summit location: 907 +WavCombRight[915] 957 InsidePosnRHS: 945 RHSgradient 0.246666 +Summit location: 907 +WavCombRight[915] 958 InsidePosnRHS: 946 RHSgradient 0.184420 +Summit location: 907 +WavCombRight[915] 959 InsidePosnRHS: 947 RHSgradient 0.102147 +Summit location: 907 +WavCombRight[915] 960 InsidePosnRHS: 947 RHSgradient 0.096364 +Summit location: 907 +WavCombRight[915] 961 InsidePosnRHS: 948 RHSgradient 0.036268 +Summit location: 907 +WavCombRight[915] 962 InsidePosnRHS: 949 RHSgradient 0.004283 +Summit location: 907 +WavCombRight[915] 963 InsidePosnRHS: 950 RHSgradient -0.014779 +Summit location: 907 +WavCombRight[915] 964 InsidePosnRHS: 950 RHSgradient -0.004039 +Summit location: 907 +WavCombRight[915] 965 InsidePosnRHS: 951 RHSgradient 0.006297 +Summit location: 907 +WavCombRight[915] 966 InsidePosnRHS: 952 RHSgradient 0.015531 +Summit location: 907 +WavCombRight[915] 967 InsidePosnRHS: 953 RHSgradient 0.016309 +Summit location: 907 +WavCombRight[915] 968 InsidePosnRHS: 953 RHSgradient 0.009585 +Summit location: 907 +WavCombRight[915] 951 InsidePosnRHS: 941 RHSgradient 0.511929 +Summit location: 907 +WavCombRight[915] 952 InsidePosnRHS: 941 RHSgradient 0.469259 +Summit location: 907 +WavCombRight[915] 953 InsidePosnRHS: 942 RHSgradient 0.428862 +Summit location: 907 +WavCombRight[915] 954 InsidePosnRHS: 943 RHSgradient 0.384099 +Summit location: 907 +WavCombRight[915] 955 InsidePosnRHS: 944 RHSgradient 0.331870 +Summit location: 907 +WavCombRight[915] 956 InsidePosnRHS: 944 RHSgradient 0.291261 +Summit location: 907 +WavCombRight[915] 957 InsidePosnRHS: 945 RHSgradient 0.246666 +Summit location: 907 +WavCombRight[915] 958 InsidePosnRHS: 946 RHSgradient 0.184420 +Summit location: 907 +WavCombRight[915] 959 InsidePosnRHS: 947 RHSgradient 0.102147 +Summit location: 907 +WavCombRight[915] 960 InsidePosnRHS: 947 RHSgradient 0.096364 +Summit location: 907 +WavCombRight[915] 961 InsidePosnRHS: 948 RHSgradient 0.036268 +Summit location: 907 +WavCombRight[915] 962 InsidePosnRHS: 949 RHSgradient 0.004283 +Summit location: 907 +WavCombRight[915] 963 InsidePosnRHS: 950 RHSgradient -0.014779 +Summit location: 907 +WavCombRight[915] 964 InsidePosnRHS: 950 RHSgradient -0.004039 +Summit location: 907 +WavCombRight[915] 965 InsidePosnRHS: 951 RHSgradient 0.006297 +Summit location: 907 +WavCombRight[915] 966 InsidePosnRHS: 952 RHSgradient 0.015531 +Summit location: 907 +WavCombRight[915] 967 InsidePosnRHS: 953 RHSgradient 0.016309 +Summit location: 907 +WavCombRight[915] 968 InsidePosnRHS: 953 RHSgradient 0.009585 +Summit location: 907 +WavCombRight[915] 951 InsidePosnRHS: 941 RHSgradient 0.511929 +Summit location: 907 +WavCombRight[915] 952 InsidePosnRHS: 941 RHSgradient 0.469259 +Summit location: 907 +WavCombRight[915] 953 InsidePosnRHS: 942 RHSgradient 0.428862 +Summit location: 907 +WavCombRight[915] 954 InsidePosnRHS: 943 RHSgradient 0.384099 +Summit location: 907 +WavCombRight[915] 955 InsidePosnRHS: 944 RHSgradient 0.331870 +Summit location: 907 +WavCombRight[915] 956 InsidePosnRHS: 944 RHSgradient 0.291261 +Summit location: 907 +WavCombRight[915] 957 InsidePosnRHS: 945 RHSgradient 0.246666 +Summit location: 907 +WavCombRight[915] 958 InsidePosnRHS: 946 RHSgradient 0.184420 +Summit location: 907 +WavCombRight[915] 959 InsidePosnRHS: 947 RHSgradient 0.102147 +Summit location: 907 +WavCombRight[915] 960 InsidePosnRHS: 947 RHSgradient 0.096364 +Summit location: 907 +WavCombRight[915] 961 InsidePosnRHS: 948 RHSgradient 0.036268 +Summit location: 907 +WavCombRight[915] 962 InsidePosnRHS: 949 RHSgradient 0.004283 +Summit location: 907 +WavCombRight[915] 963 InsidePosnRHS: 950 RHSgradient -0.014779 +Summit location: 907 +WavCombRight[915] 964 InsidePosnRHS: 950 RHSgradient -0.004039 +Summit location: 907 +WavCombRight[915] 965 InsidePosnRHS: 951 RHSgradient 0.006297 +Summit location: 907 +WavCombRight[915] 966 InsidePosnRHS: 952 RHSgradient 0.015531 +Summit location: 907 +WavCombRight[915] 967 InsidePosnRHS: 953 RHSgradient 0.016309 +Summit location: 907 +WavCombRight[915] 968 InsidePosnRHS: 953 RHSgradient 0.009585 +Summit location: 907 +WavCombRight[915] 951 InsidePosnRHS: 941 RHSgradient 0.511929 +Summit location: 907 +WavCombRight[915] 952 InsidePosnRHS: 941 RHSgradient 0.469259 +Summit location: 907 +WavCombRight[915] 953 InsidePosnRHS: 942 RHSgradient 0.428862 +Summit location: 907 +WavCombRight[915] 954 InsidePosnRHS: 943 RHSgradient 0.384099 +Summit location: 907 +WavCombRight[915] 955 InsidePosnRHS: 944 RHSgradient 0.331870 +Summit location: 907 +WavCombRight[915] 956 InsidePosnRHS: 944 RHSgradient 0.291261 +Summit location: 907 +WavCombRight[915] 957 InsidePosnRHS: 945 RHSgradient 0.246666 +Summit location: 907 +WavCombRight[915] 958 InsidePosnRHS: 946 RHSgradient 0.184420 +Summit location: 907 +WavCombRight[915] 959 InsidePosnRHS: 947 RHSgradient 0.102147 +Summit location: 907 +WavCombRight[915] 960 InsidePosnRHS: 947 RHSgradient 0.096364 +Summit location: 907 +WavCombRight[915] 961 InsidePosnRHS: 948 RHSgradient 0.036268 +Summit location: 907 +WavCombRight[915] 962 InsidePosnRHS: 949 RHSgradient 0.004283 +Summit location: 907 +WavCombRight[915] 963 InsidePosnRHS: 950 RHSgradient -0.014779 +Summit location: 907 +WavCombRight[915] 964 InsidePosnRHS: 950 RHSgradient -0.004039 +Summit location: 907 +WavCombRight[915] 965 InsidePosnRHS: 951 RHSgradient 0.006297 +Summit location: 907 +WavCombRight[915] 966 InsidePosnRHS: 952 RHSgradient 0.015531 +Summit location: 907 +WavCombRight[915] 967 InsidePosnRHS: 953 RHSgradient 0.016309 +Summit location: 907 +WavCombRight[915] 968 InsidePosnRHS: 953 RHSgradient 0.009585 +Summit location: 907 +WavCombRight[915] 951 InsidePosnRHS: 941 RHSgradient 0.511929 +Summit location: 907 +WavCombRight[915] 952 InsidePosnRHS: 941 RHSgradient 0.469259 +Summit location: 907 +WavCombRight[915] 953 InsidePosnRHS: 942 RHSgradient 0.428862 +Summit location: 907 +WavCombRight[915] 954 InsidePosnRHS: 943 RHSgradient 0.384099 +Summit location: 907 +WavCombRight[915] 955 InsidePosnRHS: 944 RHSgradient 0.331870 +Summit location: 907 +WavCombRight[915] 956 InsidePosnRHS: 944 RHSgradient 0.291261 +Summit location: 907 +WavCombRight[915] 957 InsidePosnRHS: 945 RHSgradient 0.246666 +Summit location: 907 +WavCombRight[915] 958 InsidePosnRHS: 946 RHSgradient 0.184420 +Summit location: 907 +WavCombRight[915] 959 InsidePosnRHS: 947 RHSgradient 0.102147 +Summit location: 907 +WavCombRight[915] 960 InsidePosnRHS: 947 RHSgradient 0.096364 +Summit location: 907 +WavCombRight[915] 961 InsidePosnRHS: 948 RHSgradient 0.036268 +Summit location: 907 +WavCombRight[915] 962 InsidePosnRHS: 949 RHSgradient 0.004283 +Summit location: 907 +WavCombRight[915] 963 InsidePosnRHS: 950 RHSgradient -0.014779 +Summit location: 907 +WavCombRight[915] 964 InsidePosnRHS: 950 RHSgradient -0.004039 +Summit location: 907 +WavCombRight[915] 965 InsidePosnRHS: 951 RHSgradient 0.006297 +Summit location: 907 +WavCombRight[915] 966 InsidePosnRHS: 952 RHSgradient 0.015531 +Summit location: 907 +WavCombRight[915] 967 InsidePosnRHS: 953 RHSgradient 0.016309 +Summit location: 907 +WavCombRight[915] 968 InsidePosnRHS: 953 RHSgradient 0.009585 +Summit location: 907 +WavCombRight[915] 969 InsidePosnRHS: 954 RHSgradient -0.004000 +Summit location: 907 +WavCombRight[915] 951 InsidePosnRHS: 941 RHSgradient 0.511929 +Summit location: 907 +WavCombRight[915] 952 InsidePosnRHS: 941 RHSgradient 0.469259 +Summit location: 907 +WavCombRight[915] 953 InsidePosnRHS: 942 RHSgradient 0.428862 +Summit location: 907 +WavCombRight[915] 954 InsidePosnRHS: 943 RHSgradient 0.384099 +Summit location: 907 +WavCombRight[915] 955 InsidePosnRHS: 944 RHSgradient 0.331870 +Summit location: 907 +WavCombRight[915] 956 InsidePosnRHS: 944 RHSgradient 0.291261 +Summit location: 907 +WavCombRight[915] 957 InsidePosnRHS: 945 RHSgradient 0.246666 +Summit location: 907 +WavCombRight[915] 958 InsidePosnRHS: 946 RHSgradient 0.184420 +Summit location: 907 +WavCombRight[915] 959 InsidePosnRHS: 947 RHSgradient 0.102147 +Summit location: 907 +WavCombRight[915] 960 InsidePosnRHS: 947 RHSgradient 0.096364 +Summit location: 907 +WavCombRight[915] 961 InsidePosnRHS: 948 RHSgradient 0.036268 +Summit location: 907 +WavCombRight[915] 962 InsidePosnRHS: 949 RHSgradient 0.004283 +Summit location: 907 +WavCombRight[915] 963 InsidePosnRHS: 950 RHSgradient -0.014779 +Summit location: 907 +WavCombRight[915] 964 InsidePosnRHS: 950 RHSgradient -0.004039 +Summit location: 907 +WavCombRight[915] 965 InsidePosnRHS: 951 RHSgradient 0.006297 +Summit location: 907 +WavCombRight[915] 966 InsidePosnRHS: 952 RHSgradient 0.015531 +Summit location: 907 +WavCombRight[915] 967 InsidePosnRHS: 953 RHSgradient 0.016309 +Summit location: 907 +WavCombRight[915] 968 InsidePosnRHS: 953 RHSgradient 0.009585 +Summit location: 907 +WavCombRight[915] 969 InsidePosnRHS: 954 RHSgradient -0.004000 +Summit location: 907 +WavCombRight[915] 951 InsidePosnRHS: 941 RHSgradient 0.511929 +Summit location: 907 +WavCombRight[915] 952 InsidePosnRHS: 941 RHSgradient 0.469259 +Summit location: 907 +WavCombRight[915] 953 InsidePosnRHS: 942 RHSgradient 0.428862 +Summit location: 907 +WavCombRight[915] 954 InsidePosnRHS: 943 RHSgradient 0.384099 +Summit location: 907 +WavCombRight[915] 955 InsidePosnRHS: 944 RHSgradient 0.331870 +Summit location: 907 +WavCombRight[915] 956 InsidePosnRHS: 944 RHSgradient 0.291261 +Summit location: 907 +WavCombRight[915] 957 InsidePosnRHS: 945 RHSgradient 0.246666 +Summit location: 907 +WavCombRight[915] 958 InsidePosnRHS: 946 RHSgradient 0.184420 +Summit location: 907 +WavCombRight[915] 959 InsidePosnRHS: 947 RHSgradient 0.102147 +Summit location: 907 +WavCombRight[915] 960 InsidePosnRHS: 947 RHSgradient 0.096364 +Summit location: 907 +WavCombRight[915] 961 InsidePosnRHS: 948 RHSgradient 0.036268 +Summit location: 907 +WavCombRight[915] 962 InsidePosnRHS: 949 RHSgradient 0.004283 +Summit location: 907 +WavCombRight[915] 963 InsidePosnRHS: 950 RHSgradient -0.014779 +Summit location: 907 +WavCombRight[915] 964 InsidePosnRHS: 950 RHSgradient -0.004039 +Summit location: 907 +WavCombRight[915] 965 InsidePosnRHS: 951 RHSgradient 0.006297 +Summit location: 907 +WavCombRight[915] 966 InsidePosnRHS: 952 RHSgradient 0.015531 +Summit location: 907 +WavCombRight[915] 967 InsidePosnRHS: 953 RHSgradient 0.016309 +Summit location: 907 +WavCombRight[915] 968 InsidePosnRHS: 953 RHSgradient 0.009585 +Summit location: 907 +WavCombRight[915] 969 InsidePosnRHS: 954 RHSgradient -0.004000 +Summit location: 907 +WavCombRight[915] 951 InsidePosnRHS: 941 RHSgradient 0.511929 +Summit location: 907 +WavCombRight[915] 952 InsidePosnRHS: 941 RHSgradient 0.469259 +Summit location: 907 +WavCombRight[915] 953 InsidePosnRHS: 942 RHSgradient 0.428862 +Summit location: 907 +WavCombRight[915] 954 InsidePosnRHS: 943 RHSgradient 0.384099 +Summit location: 907 +WavCombRight[915] 955 InsidePosnRHS: 944 RHSgradient 0.331870 +Summit location: 907 +WavCombRight[915] 956 InsidePosnRHS: 944 RHSgradient 0.291261 +Summit location: 907 +WavCombRight[915] 957 InsidePosnRHS: 945 RHSgradient 0.246666 +Summit location: 907 +WavCombRight[915] 958 InsidePosnRHS: 946 RHSgradient 0.184420 +Summit location: 907 +WavCombRight[915] 959 InsidePosnRHS: 947 RHSgradient 0.102147 +Summit location: 907 +WavCombRight[915] 960 InsidePosnRHS: 947 RHSgradient 0.096364 +Summit location: 907 +WavCombRight[915] 961 InsidePosnRHS: 948 RHSgradient 0.036268 +Summit location: 907 +WavCombRight[915] 962 InsidePosnRHS: 949 RHSgradient 0.004283 +Summit location: 907 +WavCombRight[915] 963 InsidePosnRHS: 950 RHSgradient -0.014779 +Summit location: 907 +WavCombRight[915] 964 InsidePosnRHS: 950 RHSgradient -0.004039 +Summit location: 907 +WavCombRight[915] 965 InsidePosnRHS: 951 RHSgradient 0.006297 +Summit location: 907 +WavCombRight[915] 966 InsidePosnRHS: 952 RHSgradient 0.015531 +Summit location: 907 +WavCombRight[915] 967 InsidePosnRHS: 953 RHSgradient 0.016309 +Summit location: 907 +WavCombRight[915] 968 InsidePosnRHS: 953 RHSgradient 0.009585 +Summit location: 907 +WavCombRight[915] 969 InsidePosnRHS: 954 RHSgradient -0.004000 +Summit location: 907 +WavCombRight[915] 952 InsidePosnRHS: 941 RHSgradient 0.469259 +Summit location: 907 +WavCombRight[915] 953 InsidePosnRHS: 942 RHSgradient 0.428862 +Summit location: 907 +WavCombRight[915] 954 InsidePosnRHS: 943 RHSgradient 0.384099 +Summit location: 907 +WavCombRight[915] 955 InsidePosnRHS: 944 RHSgradient 0.331870 +Summit location: 907 +WavCombRight[915] 956 InsidePosnRHS: 944 RHSgradient 0.291261 +Summit location: 907 +WavCombRight[915] 957 InsidePosnRHS: 945 RHSgradient 0.246666 +Summit location: 907 +WavCombRight[915] 958 InsidePosnRHS: 946 RHSgradient 0.184420 +Summit location: 907 +WavCombRight[915] 959 InsidePosnRHS: 947 RHSgradient 0.102147 +Summit location: 907 +WavCombRight[915] 960 InsidePosnRHS: 947 RHSgradient 0.096364 +Summit location: 907 +WavCombRight[915] 961 InsidePosnRHS: 948 RHSgradient 0.036268 +Summit location: 907 +WavCombRight[915] 962 InsidePosnRHS: 949 RHSgradient 0.004283 +Summit location: 907 +WavCombRight[915] 963 InsidePosnRHS: 950 RHSgradient -0.014779 +Summit location: 907 +WavCombRight[915] 964 InsidePosnRHS: 950 RHSgradient -0.004039 +Summit location: 907 +WavCombRight[915] 965 InsidePosnRHS: 951 RHSgradient 0.006297 +Summit location: 907 +WavCombRight[915] 966 InsidePosnRHS: 952 RHSgradient 0.015531 +Summit location: 907 +WavCombRight[915] 967 InsidePosnRHS: 953 RHSgradient 0.016309 +Summit location: 907 +WavCombRight[915] 968 InsidePosnRHS: 953 RHSgradient 0.009585 +Summit location: 907 +WavCombRight[915] 969 InsidePosnRHS: 954 RHSgradient -0.004000 +Summit location: 907 +WavCombRight[915] 970 InsidePosnRHS: 955 RHSgradient -0.019800 +Summit location: 907 +WavCombRight[915] 971 InsidePosnRHS: 956 RHSgradient -0.035165 +Summit location: 907 +WavCombRight[915] 953 InsidePosnRHS: 942 RHSgradient 0.428862 +Summit location: 907 +WavCombRight[915] 954 InsidePosnRHS: 943 RHSgradient 0.384099 +Summit location: 907 +WavCombRight[915] 955 InsidePosnRHS: 944 RHSgradient 0.331870 +Summit location: 907 +WavCombRight[915] 956 InsidePosnRHS: 944 RHSgradient 0.291261 +Summit location: 907 +WavCombRight[915] 957 InsidePosnRHS: 945 RHSgradient 0.246666 +Summit location: 907 +WavCombRight[915] 958 InsidePosnRHS: 946 RHSgradient 0.184420 +Summit location: 907 +WavCombRight[915] 959 InsidePosnRHS: 947 RHSgradient 0.102147 +Summit location: 907 +WavCombRight[915] 960 InsidePosnRHS: 947 RHSgradient 0.096364 +Summit location: 907 +WavCombRight[915] 961 InsidePosnRHS: 948 RHSgradient 0.036268 +Summit location: 907 +WavCombRight[915] 962 InsidePosnRHS: 949 RHSgradient 0.004283 +Summit location: 907 +WavCombRight[915] 963 InsidePosnRHS: 950 RHSgradient -0.014779 +Summit location: 907 +WavCombRight[915] 964 InsidePosnRHS: 950 RHSgradient -0.004039 +Summit location: 907 +WavCombRight[915] 965 InsidePosnRHS: 951 RHSgradient 0.006297 +Summit location: 907 +WavCombRight[915] 966 InsidePosnRHS: 952 RHSgradient 0.015531 +Summit location: 907 +WavCombRight[915] 967 InsidePosnRHS: 953 RHSgradient 0.016309 +Summit location: 907 +WavCombRight[915] 968 InsidePosnRHS: 953 RHSgradient 0.009585 +Summit location: 907 +WavCombRight[915] 969 InsidePosnRHS: 954 RHSgradient -0.004000 +Summit location: 907 +WavCombRight[915] 970 InsidePosnRHS: 955 RHSgradient -0.019800 +Summit location: 907 +WavCombRight[915] 971 InsidePosnRHS: 956 RHSgradient -0.035165 +Summit location: 907 +WavCombRight[915] 972 InsidePosnRHS: 956 RHSgradient -0.056321 +Summit location: 452 +WavCombRight[456] 478 InsidePosnRHS: 472 RHSgradient 0.328613 +Summit location: 452 +WavCombRight[456] 479 InsidePosnRHS: 473 RHSgradient 0.237976 +Summit location: 452 +WavCombRight[456] 480 InsidePosnRHS: 474 RHSgradient 0.180001 +Summit location: 452 +WavCombRight[456] 481 InsidePosnRHS: 474 RHSgradient 0.133060 +Summit location: 452 +WavCombRight[456] 482 InsidePosnRHS: 475 RHSgradient 0.050663 +Summit location: 452 +WavCombRight[456] 483 InsidePosnRHS: 476 RHSgradient 0.021722 +Summit location: 452 +WavCombRight[456] 484 InsidePosnRHS: 477 RHSgradient 0.034068 +Summit location: 452 +WavCombRight[456] 485 InsidePosnRHS: 477 RHSgradient 0.061679 +Summit location: 452 +WavCombRight[456] 486 InsidePosnRHS: 478 RHSgradient 0.070459 +Summit location: 452 +WavCombRight[456] 487 InsidePosnRHS: 479 RHSgradient 0.076181 +Summit location: 452 +WavCombRight[456] 488 InsidePosnRHS: 480 RHSgradient 0.091565 +Summit location: 452 +WavCombRight[456] 489 InsidePosnRHS: 480 RHSgradient 0.126666 +Summit location: 452 +WavCombRight[456] 490 InsidePosnRHS: 481 RHSgradient 0.196297 +Summit location: 452 +WavCombRight[456] 491 InsidePosnRHS: 482 RHSgradient 0.295763 +Summit location: 452 +WavCombRight[456] 492 InsidePosnRHS: 483 RHSgradient 0.366667 +Summit location: 452 +WavCombRight[456] 493 InsidePosnRHS: 483 RHSgradient 0.380815 +Summit location: 452 +WavCombRight[456] 494 InsidePosnRHS: 484 RHSgradient 0.412915 +Summit location: 452 +WavCombRight[456] 495 InsidePosnRHS: 485 RHSgradient 0.440657 +Summit location: 452 +WavCombRight[456] 496 InsidePosnRHS: 486 RHSgradient 0.480652 +Summit location: 452 +WavCombRight[456] 497 InsidePosnRHS: 486 RHSgradient 0.514964 +Summit location: 452 +WavCombRight[456] 498 InsidePosnRHS: 487 RHSgradient 0.552843 +Summit location: 452 +WavCombRight[456] 499 InsidePosnRHS: 488 RHSgradient 0.570155 +Summit location: 452 +WavCombRight[456] 500 InsidePosnRHS: 489 RHSgradient 0.572929 +Summit location: 452 +WavCombRight[456] 501 InsidePosnRHS: 489 RHSgradient 0.558333 +Summit location: 452 +WavCombRight[456] 502 InsidePosnRHS: 490 RHSgradient 0.552287 +Summit location: 452 +WavCombRight[456] 503 InsidePosnRHS: 491 RHSgradient 0.538328 +Summit location: 452 +WavCombRight[456] 504 InsidePosnRHS: 492 RHSgradient 0.505001 +Summit location: 452 +WavCombRight[456] 505 InsidePosnRHS: 492 RHSgradient 0.452977 +Summit location: 452 +WavCombRight[456] 506 InsidePosnRHS: 493 RHSgradient 0.388009 +Summit location: 452 +WavCombRight[456] 507 InsidePosnRHS: 494 RHSgradient 0.316337 +Summit location: 452 +WavCombRight[456] 508 InsidePosnRHS: 495 RHSgradient 0.241855 +Summit location: 452 +WavCombRight[456] 509 InsidePosnRHS: 495 RHSgradient 0.192831 +Summit location: 452 +WavCombRight[456] 510 InsidePosnRHS: 496 RHSgradient 0.112392 +Summit location: 452 +WavCombRight[456] 511 InsidePosnRHS: 497 RHSgradient 0.023598 +Summit location: 452 +WavCombRight[456] 512 InsidePosnRHS: 498 RHSgradient -0.055033 +Summit location: 452 +WavCombRight[456] 513 InsidePosnRHS: 498 RHSgradient -0.074666 +Summit location: 452 +WavCombRight[456] 514 InsidePosnRHS: 499 RHSgradient -0.128833 +Summit location: 452 +WavCombRight[456] 497 InsidePosnRHS: 486 RHSgradient 0.514964 +Summit location: 452 +WavCombRight[456] 498 InsidePosnRHS: 487 RHSgradient 0.552843 +Summit location: 452 +WavCombRight[456] 499 InsidePosnRHS: 488 RHSgradient 0.570155 +Summit location: 452 +WavCombRight[456] 500 InsidePosnRHS: 489 RHSgradient 0.572929 +Summit location: 452 +WavCombRight[456] 501 InsidePosnRHS: 489 RHSgradient 0.558333 +Summit location: 452 +WavCombRight[456] 502 InsidePosnRHS: 490 RHSgradient 0.552287 +Summit location: 452 +WavCombRight[456] 503 InsidePosnRHS: 491 RHSgradient 0.538328 +Summit location: 452 +WavCombRight[456] 504 InsidePosnRHS: 492 RHSgradient 0.505001 +Summit location: 452 +WavCombRight[456] 505 InsidePosnRHS: 492 RHSgradient 0.452977 +Summit location: 452 +WavCombRight[456] 506 InsidePosnRHS: 493 RHSgradient 0.388009 +Summit location: 452 +WavCombRight[456] 507 InsidePosnRHS: 494 RHSgradient 0.316337 +Summit location: 452 +WavCombRight[456] 508 InsidePosnRHS: 495 RHSgradient 0.241855 +Summit location: 452 +WavCombRight[456] 509 InsidePosnRHS: 495 RHSgradient 0.192831 +Summit location: 452 +WavCombRight[456] 510 InsidePosnRHS: 496 RHSgradient 0.112392 +Summit location: 452 +WavCombRight[456] 511 InsidePosnRHS: 497 RHSgradient 0.023598 +Summit location: 452 +WavCombRight[456] 512 InsidePosnRHS: 498 RHSgradient -0.055033 +Summit location: 452 +WavCombRight[456] 513 InsidePosnRHS: 498 RHSgradient -0.074666 +Summit location: 452 +WavCombRight[456] 514 InsidePosnRHS: 499 RHSgradient -0.128833 +Summit location: 452 +WavCombRight[456] 515 InsidePosnRHS: 500 RHSgradient -0.173864 +Summit location: 2784 +WavCombRight[2778] 2803 InsidePosnRHS: 2799 RHSgradient 0.374292 +Summit location: 2784 +WavCombRight[2778] 2804 InsidePosnRHS: 2800 RHSgradient 0.321033 +Summit location: 2784 +WavCombRight[2778] 2805 InsidePosnRHS: 2800 RHSgradient 0.300259 +Summit location: 2784 +WavCombRight[2778] 2806 InsidePosnRHS: 2801 RHSgradient 0.256802 +Summit location: 2784 +WavCombRight[2778] 2807 InsidePosnRHS: 2802 RHSgradient 0.236294 +Summit location: 2784 +WavCombRight[2778] 2808 InsidePosnRHS: 2803 RHSgradient 0.256567 +Summit location: 2784 +WavCombRight[2778] 2809 InsidePosnRHS: 2803 RHSgradient 0.273149 +Summit location: 2784 +WavCombRight[2778] 2810 InsidePosnRHS: 2804 RHSgradient 0.308919 +Summit location: 2784 +WavCombRight[2778] 2811 InsidePosnRHS: 2805 RHSgradient 0.333333 +Summit location: 2784 +WavCombRight[2778] 2812 InsidePosnRHS: 2806 RHSgradient 0.326611 +Summit location: 2784 +WavCombRight[2778] 2813 InsidePosnRHS: 2806 RHSgradient 0.305594 +Summit location: 2784 +WavCombRight[2778] 2814 InsidePosnRHS: 2807 RHSgradient 0.308360 +Summit location: 2784 +WavCombRight[2778] 2815 InsidePosnRHS: 2808 RHSgradient 0.330594 +Summit location: 2784 +WavCombRight[2778] 2816 InsidePosnRHS: 2809 RHSgradient 0.351855 +Summit location: 2784 +WavCombRight[2778] 2817 InsidePosnRHS: 2809 RHSgradient 0.372992 +Summit location: 2784 +WavCombRight[2778] 2818 InsidePosnRHS: 2810 RHSgradient 0.391171 +Summit location: 2784 +WavCombRight[2778] 2819 InsidePosnRHS: 2811 RHSgradient 0.411642 +Summit location: 2784 +WavCombRight[2778] 2820 InsidePosnRHS: 2812 RHSgradient 0.447147 +Summit location: 2784 +WavCombRight[2778] 2821 InsidePosnRHS: 2812 RHSgradient 0.458214 +Summit location: 2784 +WavCombRight[2778] 2822 InsidePosnRHS: 2813 RHSgradient 0.497108 +Summit location: 2784 +WavCombRight[2778] 2823 InsidePosnRHS: 2814 RHSgradient 0.508889 +Summit location: 2784 +WavCombRight[2778] 2824 InsidePosnRHS: 2815 RHSgradient 0.455016 +Summit location: 2784 +WavCombRight[2778] 2825 InsidePosnRHS: 2815 RHSgradient 0.363472 +Summit location: 2784 +WavCombRight[2778] 2826 InsidePosnRHS: 2816 RHSgradient 0.260095 +Summit location: 2784 +WavCombRight[2778] 2827 InsidePosnRHS: 2817 RHSgradient 0.165369 +Summit location: 2784 +WavCombRight[2778] 2828 InsidePosnRHS: 2818 RHSgradient 0.069451 +Summit location: 2784 +WavCombRight[2778] 2829 InsidePosnRHS: 2818 RHSgradient 0.019480 +Summit location: 2784 +WavCombRight[2778] 2830 InsidePosnRHS: 2819 RHSgradient -0.075934 +Summit location: 2784 +WavCombRight[2778] 2831 InsidePosnRHS: 2820 RHSgradient -0.172299 +Summit location: 2784 +WavCombRight[2778] 2832 InsidePosnRHS: 2821 RHSgradient -0.271522 +Summit location: 2784 +WavCombRight[2778] 2833 InsidePosnRHS: 2821 RHSgradient -0.295278 +Summit location: 2784 +WavCombRight[2778] 2834 InsidePosnRHS: 2822 RHSgradient -0.386306 +Summit location: 2784 +WavCombRight[2778] 2835 InsidePosnRHS: 2823 RHSgradient -0.468333 +Summit location: 2784 +WavCombRight[2778] 2836 InsidePosnRHS: 2824 RHSgradient -0.512490 +Summit location: 2784 +WavCombRight[2778] 2837 InsidePosnRHS: 2824 RHSgradient -0.512427 +Summit location: 2784 +WavCombRight[2778] 2838 InsidePosnRHS: 2825 RHSgradient -0.514528 +Summit location: 2784 +WavCombRight[2778] 2839 InsidePosnRHS: 2826 RHSgradient -0.492550 +Summit location: 2784 +WavCombRight[2778] 2840 InsidePosnRHS: 2827 RHSgradient -0.462179 +Summit location: 2784 +WavCombRight[2778] 2841 InsidePosnRHS: 2827 RHSgradient -0.443834 +Summit location: 2784 +WavCombRight[2778] 2842 InsidePosnRHS: 2828 RHSgradient -0.447395 +Summit location: 2784 +WavCombRight[2778] 2843 InsidePosnRHS: 2829 RHSgradient -0.454878 +Summit location: 2784 +WavCombRight[2778] 2844 InsidePosnRHS: 2830 RHSgradient -0.464132 +Summit location: 2784 +WavCombRight[2778] 2845 InsidePosnRHS: 2830 RHSgradient -0.486626 +Summit location: 1698 +WavCombRight[1701] 1716 InsidePosnRHS: 1712 RHSgradient 0.352896 +Summit location: 1698 +WavCombRight[1701] 1717 InsidePosnRHS: 1713 RHSgradient 0.303409 +Summit location: 1698 +WavCombRight[1701] 1718 InsidePosnRHS: 1714 RHSgradient 0.303589 +Summit location: 1698 +WavCombRight[1701] 1719 InsidePosnRHS: 1714 RHSgradient 0.308516 +Summit location: 1698 +WavCombRight[1701] 1720 InsidePosnRHS: 1715 RHSgradient 0.343359 +Summit location: 1698 +WavCombRight[1701] 1721 InsidePosnRHS: 1716 RHSgradient 0.399307 +Summit location: 1698 +WavCombRight[1701] 1722 InsidePosnRHS: 1717 RHSgradient 0.433271 +Summit location: 1698 +WavCombRight[1701] 1723 InsidePosnRHS: 1717 RHSgradient 0.417045 +Summit location: 1698 +WavCombRight[1701] 1724 InsidePosnRHS: 1718 RHSgradient 0.410150 +Summit location: 1698 +WavCombRight[1701] 1725 InsidePosnRHS: 1719 RHSgradient 0.393333 +Summit location: 1698 +WavCombRight[1701] 1726 InsidePosnRHS: 1720 RHSgradient 0.347937 +Summit location: 1698 +WavCombRight[1701] 1727 InsidePosnRHS: 1720 RHSgradient 0.320829 +Summit location: 1698 +WavCombRight[1701] 1728 InsidePosnRHS: 1721 RHSgradient 0.257638 +Summit location: 1698 +WavCombRight[1701] 1729 InsidePosnRHS: 1722 RHSgradient 0.201819 +Summit location: 1698 +WavCombRight[1701] 1730 InsidePosnRHS: 1723 RHSgradient 0.157328 +Summit location: 1698 +WavCombRight[1701] 1731 InsidePosnRHS: 1723 RHSgradient 0.130511 +Summit location: 1698 +WavCombRight[1701] 1732 InsidePosnRHS: 1724 RHSgradient 0.074916 +Summit location: 1698 +WavCombRight[1701] 1733 InsidePosnRHS: 1725 RHSgradient 0.008490 +Summit location: 1698 +WavCombRight[1701] 1734 InsidePosnRHS: 1726 RHSgradient -0.071089 +Summit location: 2315 +WavCombRight[2318] 2328 InsidePosnRHS: 2325 RHSgradient 0.433333 +Summit location: 2315 +WavCombRight[2318] 2329 InsidePosnRHS: 2326 RHSgradient 0.371208 +Summit location: 2315 +WavCombRight[2318] 2330 InsidePosnRHS: 2327 RHSgradient 0.322896 +Summit location: 2315 +WavCombRight[2318] 2331 InsidePosnRHS: 2328 RHSgradient 0.300000 +Summit location: 2315 +WavCombRight[2318] 2328 InsidePosnRHS: 2325 RHSgradient 0.433333 +Summit location: 2315 +WavCombRight[2318] 2329 InsidePosnRHS: 2326 RHSgradient 0.371208 +Summit location: 2315 +WavCombRight[2318] 2330 InsidePosnRHS: 2327 RHSgradient 0.322896 +Summit location: 2315 +WavCombRight[2318] 2331 InsidePosnRHS: 2328 RHSgradient 0.300000 +Summit location: 2315 +WavCombRight[2318] 2332 InsidePosnRHS: 2328 RHSgradient 0.359299 +Summit location: 2315 +WavCombRight[2318] 2333 InsidePosnRHS: 2329 RHSgradient 0.450116 +Summit location: 2315 +WavCombRight[2318] 2334 InsidePosnRHS: 2330 RHSgradient 0.496375 +Summit location: 2315 +WavCombRight[2318] 2335 InsidePosnRHS: 2331 RHSgradient 0.445825 +Summit location: 2315 +WavCombRight[2318] 2336 InsidePosnRHS: 2331 RHSgradient 0.333320 +Summit location: 2315 +WavCombRight[2318] 2337 InsidePosnRHS: 2332 RHSgradient 0.168562 +Summit location: 2315 +WavCombRight[2318] 2335 InsidePosnRHS: 2331 RHSgradient 0.445825 +Summit location: 2315 +WavCombRight[2318] 2336 InsidePosnRHS: 2331 RHSgradient 0.333320 +Summit location: 2315 +WavCombRight[2318] 2337 InsidePosnRHS: 2332 RHSgradient 0.168562 +Summit location: 2315 +WavCombRight[2318] 2335 InsidePosnRHS: 2331 RHSgradient 0.445825 +Summit location: 2315 +WavCombRight[2318] 2336 InsidePosnRHS: 2331 RHSgradient 0.333320 +Summit location: 2315 +WavCombRight[2318] 2337 InsidePosnRHS: 2332 RHSgradient 0.168562 +Summit location: 2315 +WavCombRight[2318] 2335 InsidePosnRHS: 2331 RHSgradient 0.445825 +Summit location: 2315 +WavCombRight[2318] 2336 InsidePosnRHS: 2331 RHSgradient 0.333320 +Summit location: 2315 +WavCombRight[2318] 2337 InsidePosnRHS: 2332 RHSgradient 0.168562 +Summit location: 604 +WavCombRight[601] 613 InsidePosnRHS: 611 RHSgradient 0.909052 +Summit location: 604 +WavCombRight[601] 614 InsidePosnRHS: 612 RHSgradient 1.329352 +Summit location: 604 +WavCombRight[601] 615 InsidePosnRHS: 613 RHSgradient 1.201129 +Summit location: 604 +WavCombRight[601] 616 InsidePosnRHS: 614 RHSgradient 0.643109 +Summit location: 604 +WavCombRight[601] 617 InsidePosnRHS: 614 RHSgradient 0.503601 +Summit location: 604 +WavCombRight[601] 618 InsidePosnRHS: 615 RHSgradient 0.239998 +Summit location: 604 +WavCombRight[601] 619 InsidePosnRHS: 616 RHSgradient 0.178056 +Summit location: 604 +WavCombRight[601] 620 InsidePosnRHS: 617 RHSgradient 0.148332 +Summit location: 604 +WavCombRight[601] 621 InsidePosnRHS: 617 RHSgradient 0.107623 +Summit location: 2276 +WavCombRight[2278] 2289 InsidePosnRHS: 2286 RHSgradient 0.433333 +Summit location: 2276 +WavCombRight[2278] 2290 InsidePosnRHS: 2287 RHSgradient 0.431783 +Summit location: 2276 +WavCombRight[2278] 2291 InsidePosnRHS: 2288 RHSgradient 0.430583 +Summit location: 2276 +WavCombRight[2278] 2292 InsidePosnRHS: 2289 RHSgradient 0.426668 +Summit location: 2276 +WavCombRight[2278] 2293 InsidePosnRHS: 2289 RHSgradient 0.378665 +Summit location: 2276 +WavCombRight[2278] 2289 InsidePosnRHS: 2286 RHSgradient 0.433333 +Summit location: 2276 +WavCombRight[2278] 2290 InsidePosnRHS: 2287 RHSgradient 0.431783 +Summit location: 2276 +WavCombRight[2278] 2291 InsidePosnRHS: 2288 RHSgradient 0.430583 +Summit location: 2276 +WavCombRight[2278] 2292 InsidePosnRHS: 2289 RHSgradient 0.426668 +Summit location: 2276 +WavCombRight[2278] 2293 InsidePosnRHS: 2289 RHSgradient 0.378665 +Summit location: 2276 +WavCombRight[2278] 2294 InsidePosnRHS: 2290 RHSgradient 0.272202 +Summit location: 2276 +WavCombRight[2278] 2295 InsidePosnRHS: 2291 RHSgradient 0.154709 +Summit location: 2276 +WavCombRight[2278] 2296 InsidePosnRHS: 2292 RHSgradient 0.053195 +Summit location: 2276 +WavCombRight[2278] 2297 InsidePosnRHS: 2292 RHSgradient 0.035610 +Summit location: 2276 +WavCombRight[2278] 2298 InsidePosnRHS: 2293 RHSgradient -0.050933 +Summit location: 2276 +WavCombRight[2278] 2293 InsidePosnRHS: 2289 RHSgradient 0.378665 +Summit location: 2276 +WavCombRight[2278] 2294 InsidePosnRHS: 2290 RHSgradient 0.272202 +Summit location: 2276 +WavCombRight[2278] 2295 InsidePosnRHS: 2291 RHSgradient 0.154709 +Summit location: 2276 +WavCombRight[2278] 2296 InsidePosnRHS: 2292 RHSgradient 0.053195 +Summit location: 2276 +WavCombRight[2278] 2297 InsidePosnRHS: 2292 RHSgradient 0.035610 +Summit location: 2276 +WavCombRight[2278] 2298 InsidePosnRHS: 2293 RHSgradient -0.050933 +Summit location: 2276 +WavCombRight[2278] 2294 InsidePosnRHS: 2290 RHSgradient 0.272202 +Summit location: 2276 +WavCombRight[2278] 2295 InsidePosnRHS: 2291 RHSgradient 0.154709 +Summit location: 2276 +WavCombRight[2278] 2296 InsidePosnRHS: 2292 RHSgradient 0.053195 +Summit location: 2276 +WavCombRight[2278] 2297 InsidePosnRHS: 2292 RHSgradient 0.035610 +Summit location: 2276 +WavCombRight[2278] 2298 InsidePosnRHS: 2293 RHSgradient -0.050933 +Summit location: 2276 +WavCombRight[2278] 2295 InsidePosnRHS: 2291 RHSgradient 0.154709 +Summit location: 2276 +WavCombRight[2278] 2296 InsidePosnRHS: 2292 RHSgradient 0.053195 +Summit location: 2276 +WavCombRight[2278] 2297 InsidePosnRHS: 2292 RHSgradient 0.035610 +Summit location: 2276 +WavCombRight[2278] 2298 InsidePosnRHS: 2293 RHSgradient -0.050933 +Summit location: 678 +WavCombRight[677] 691 InsidePosnRHS: 688 RHSgradient 0.262858 +Summit location: 678 +WavCombRight[677] 692 InsidePosnRHS: 689 RHSgradient 0.200781 +Summit location: 678 +WavCombRight[677] 693 InsidePosnRHS: 690 RHSgradient 0.179997 +Summit location: 678 +WavCombRight[677] 694 InsidePosnRHS: 691 RHSgradient 0.256169 +Summit location: 678 +WavCombRight[677] 695 InsidePosnRHS: 691 RHSgradient 0.326517 +Summit location: 678 +WavCombRight[677] 696 InsidePosnRHS: 692 RHSgradient 0.391647 +Summit location: 678 +WavCombRight[677] 697 InsidePosnRHS: 693 RHSgradient 0.394098 +Summit location: 678 +WavCombRight[677] 698 InsidePosnRHS: 694 RHSgradient 0.329202 +Summit location: 678 +WavCombRight[677] 699 InsidePosnRHS: 694 RHSgradient 0.287534 +Summit location: 678 +WavCombRight[677] 700 InsidePosnRHS: 695 RHSgradient 0.196899 +Summit location: 678 +WavCombRight[677] 701 InsidePosnRHS: 696 RHSgradient 0.127910 +Summit location: 678 +WavCombRight[677] 702 InsidePosnRHS: 697 RHSgradient 0.092722 +Summit location: 678 +WavCombRight[677] 703 InsidePosnRHS: 697 RHSgradient 0.076394 +Summit location: 678 +WavCombRight[677] 704 InsidePosnRHS: 698 RHSgradient 0.028621 +Summit location: 678 +WavCombRight[677] 705 InsidePosnRHS: 699 RHSgradient -0.040000 +Summit location: 678 +WavCombRight[677] 697 InsidePosnRHS: 693 RHSgradient 0.394098 +Summit location: 678 +WavCombRight[677] 698 InsidePosnRHS: 694 RHSgradient 0.329202 +Summit location: 678 +WavCombRight[677] 699 InsidePosnRHS: 694 RHSgradient 0.287534 +Summit location: 678 +WavCombRight[677] 700 InsidePosnRHS: 695 RHSgradient 0.196899 +Summit location: 678 +WavCombRight[677] 701 InsidePosnRHS: 696 RHSgradient 0.127910 +Summit location: 678 +WavCombRight[677] 702 InsidePosnRHS: 697 RHSgradient 0.092722 +Summit location: 678 +WavCombRight[677] 703 InsidePosnRHS: 697 RHSgradient 0.076394 +Summit location: 678 +WavCombRight[677] 704 InsidePosnRHS: 698 RHSgradient 0.028621 +Summit location: 678 +WavCombRight[677] 705 InsidePosnRHS: 699 RHSgradient -0.040000 +Summit location: 678 +WavCombRight[677] 706 InsidePosnRHS: 700 RHSgradient -0.193064 +Summit location: 678 +WavCombRight[677] 698 InsidePosnRHS: 694 RHSgradient 0.329202 +Summit location: 678 +WavCombRight[677] 699 InsidePosnRHS: 694 RHSgradient 0.287534 +Summit location: 678 +WavCombRight[677] 700 InsidePosnRHS: 695 RHSgradient 0.196899 +Summit location: 678 +WavCombRight[677] 701 InsidePosnRHS: 696 RHSgradient 0.127910 +Summit location: 678 +WavCombRight[677] 702 InsidePosnRHS: 697 RHSgradient 0.092722 +Summit location: 678 +WavCombRight[677] 703 InsidePosnRHS: 697 RHSgradient 0.076394 +Summit location: 678 +WavCombRight[677] 704 InsidePosnRHS: 698 RHSgradient 0.028621 +Summit location: 678 +WavCombRight[677] 705 InsidePosnRHS: 699 RHSgradient -0.040000 +Summit location: 678 +WavCombRight[677] 706 InsidePosnRHS: 700 RHSgradient -0.193064 +Summit location: 101 +WavCombRight[105] 117 InsidePosnRHS: 114 RHSgradient 0.693335 +Summit location: 101 +WavCombRight[105] 118 InsidePosnRHS: 114 RHSgradient 0.622839 +Summit location: 101 +WavCombRight[105] 119 InsidePosnRHS: 115 RHSgradient 0.538348 +Summit location: 101 +WavCombRight[105] 120 InsidePosnRHS: 116 RHSgradient 0.411200 +Summit location: 101 +WavCombRight[105] 121 InsidePosnRHS: 117 RHSgradient 0.315552 +Summit location: 101 +WavCombRight[105] 117 InsidePosnRHS: 114 RHSgradient 0.693335 +Summit location: 101 +WavCombRight[105] 118 InsidePosnRHS: 114 RHSgradient 0.622839 +Summit location: 101 +WavCombRight[105] 119 InsidePosnRHS: 115 RHSgradient 0.538348 +Summit location: 101 +WavCombRight[105] 120 InsidePosnRHS: 116 RHSgradient 0.411200 +Summit location: 101 +WavCombRight[105] 121 InsidePosnRHS: 117 RHSgradient 0.315552 +Summit location: 101 +WavCombRight[105] 122 InsidePosnRHS: 117 RHSgradient 0.295034 +Summit location: 101 +WavCombRight[105] 123 InsidePosnRHS: 118 RHSgradient 0.245728 +Summit location: 101 +WavCombRight[105] 124 InsidePosnRHS: 119 RHSgradient 0.198149 +Summit location: 101 +WavCombRight[105] 125 InsidePosnRHS: 120 RHSgradient 0.149019 +Summit location: 101 +WavCombRight[105] 126 InsidePosnRHS: 120 RHSgradient 0.119999 +Summit location: 101 +WavCombRight[105] 127 InsidePosnRHS: 121 RHSgradient 0.068628 +Summit location: 101 +WavCombRight[105] 128 InsidePosnRHS: 122 RHSgradient 0.010376 +Summit location: 101 +WavCombRight[105] 123 InsidePosnRHS: 118 RHSgradient 0.245728 +Summit location: 101 +WavCombRight[105] 124 InsidePosnRHS: 119 RHSgradient 0.198149 +Summit location: 101 +WavCombRight[105] 125 InsidePosnRHS: 120 RHSgradient 0.149019 +Summit location: 101 +WavCombRight[105] 126 InsidePosnRHS: 120 RHSgradient 0.119999 +Summit location: 101 +WavCombRight[105] 127 InsidePosnRHS: 121 RHSgradient 0.068628 +Summit location: 101 +WavCombRight[105] 128 InsidePosnRHS: 122 RHSgradient 0.010376 +Summit location: 101 +WavCombRight[105] 123 InsidePosnRHS: 118 RHSgradient 0.245728 +Summit location: 101 +WavCombRight[105] 124 InsidePosnRHS: 119 RHSgradient 0.198149 +Summit location: 101 +WavCombRight[105] 125 InsidePosnRHS: 120 RHSgradient 0.149019 +Summit location: 101 +WavCombRight[105] 126 InsidePosnRHS: 120 RHSgradient 0.119999 +Summit location: 101 +WavCombRight[105] 127 InsidePosnRHS: 121 RHSgradient 0.068628 +Summit location: 101 +WavCombRight[105] 128 InsidePosnRHS: 122 RHSgradient 0.010376 +Summit location: 101 +WavCombRight[105] 124 InsidePosnRHS: 119 RHSgradient 0.198149 +Summit location: 101 +WavCombRight[105] 125 InsidePosnRHS: 120 RHSgradient 0.149019 +Summit location: 101 +WavCombRight[105] 126 InsidePosnRHS: 120 RHSgradient 0.119999 +Summit location: 101 +WavCombRight[105] 127 InsidePosnRHS: 121 RHSgradient 0.068628 +Summit location: 101 +WavCombRight[105] 128 InsidePosnRHS: 122 RHSgradient 0.010376 +Summit location: 101 +WavCombRight[105] 125 InsidePosnRHS: 120 RHSgradient 0.149019 +Summit location: 101 +WavCombRight[105] 126 InsidePosnRHS: 120 RHSgradient 0.119999 +Summit location: 101 +WavCombRight[105] 127 InsidePosnRHS: 121 RHSgradient 0.068628 +Summit location: 101 +WavCombRight[105] 128 InsidePosnRHS: 122 RHSgradient 0.010376 +Summit location: 101 +WavCombRight[105] 126 InsidePosnRHS: 120 RHSgradient 0.119999 +Summit location: 101 +WavCombRight[105] 127 InsidePosnRHS: 121 RHSgradient 0.068628 +Summit location: 101 +WavCombRight[105] 128 InsidePosnRHS: 122 RHSgradient 0.010376 +Summit location: 640 +WavCombRight[638] 648 InsidePosnRHS: 647 RHSgradient 0.884131 +Summit location: 640 +WavCombRight[638] 649 InsidePosnRHS: 647 RHSgradient 1.154883 +Summit location: 640 +WavCombRight[638] 650 InsidePosnRHS: 648 RHSgradient 1.579053 +Summit location: 640 +WavCombRight[638] 651 InsidePosnRHS: 649 RHSgradient 1.337183 +Summit location: 640 +WavCombRight[638] 652 InsidePosnRHS: 650 RHSgradient 0.543707 +Summit location: 640 +WavCombRight[638] 653 InsidePosnRHS: 650 RHSgradient 0.394507 +Summit location: 640 +WavCombRight[638] 654 InsidePosnRHS: 651 RHSgradient 0.106669 +Summit location: 640 +WavCombRight[638] 655 InsidePosnRHS: 652 RHSgradient 0.085299 +Summit location: 2109 +WavCombRight[2112] 2130 InsidePosnRHS: 2125 RHSgradient 0.271597 +Summit location: 2109 +WavCombRight[2112] 2131 InsidePosnRHS: 2126 RHSgradient 0.250344 +Summit location: 2109 +WavCombRight[2112] 2132 InsidePosnRHS: 2127 RHSgradient 0.287415 +Summit location: 2109 +WavCombRight[2112] 2133 InsidePosnRHS: 2128 RHSgradient 0.383540 +Summit location: 2109 +WavCombRight[2112] 2134 InsidePosnRHS: 2128 RHSgradient 0.394141 +Summit location: 2109 +WavCombRight[2112] 2135 InsidePosnRHS: 2129 RHSgradient 0.461643 +Summit location: 2109 +WavCombRight[2112] 2136 InsidePosnRHS: 2130 RHSgradient 0.483333 +Summit location: 2109 +WavCombRight[2112] 2137 InsidePosnRHS: 2131 RHSgradient 0.431848 +Summit location: 2109 +WavCombRight[2112] 2138 InsidePosnRHS: 2131 RHSgradient 0.387974 +Summit location: 2109 +WavCombRight[2112] 2139 InsidePosnRHS: 2132 RHSgradient 0.331846 +Summit location: 2109 +WavCombRight[2112] 2140 InsidePosnRHS: 2133 RHSgradient 0.307472 +Summit location: 2109 +WavCombRight[2112] 2141 InsidePosnRHS: 2134 RHSgradient 0.307415 +Summit location: 2109 +WavCombRight[2112] 2142 InsidePosnRHS: 2134 RHSgradient 0.331607 +Summit location: 2109 +WavCombRight[2112] 2143 InsidePosnRHS: 2135 RHSgradient 0.354318 +Summit location: 2109 +WavCombRight[2112] 2144 InsidePosnRHS: 2136 RHSgradient 0.391609 +Summit location: 2109 +WavCombRight[2112] 2145 InsidePosnRHS: 2137 RHSgradient 0.437990 +Summit location: 2109 +WavCombRight[2112] 2146 InsidePosnRHS: 2137 RHSgradient 0.438383 +Summit location: 2109 +WavCombRight[2112] 2147 InsidePosnRHS: 2138 RHSgradient 0.460128 +Summit location: 2109 +WavCombRight[2112] 2148 InsidePosnRHS: 2139 RHSgradient 0.460002 +Summit location: 2109 +WavCombRight[2112] 2149 InsidePosnRHS: 2140 RHSgradient 0.433103 +Summit location: 2109 +WavCombRight[2112] 2150 InsidePosnRHS: 2140 RHSgradient 0.393057 +Summit location: 2109 +WavCombRight[2112] 2151 InsidePosnRHS: 2141 RHSgradient 0.340094 +Summit location: 2109 +WavCombRight[2112] 2152 InsidePosnRHS: 2142 RHSgradient 0.271427 +Summit location: 2109 +WavCombRight[2112] 2153 InsidePosnRHS: 2143 RHSgradient 0.186604 +Summit location: 2109 +WavCombRight[2112] 2154 InsidePosnRHS: 2143 RHSgradient 0.142203 +Summit location: 2109 +WavCombRight[2112] 2155 InsidePosnRHS: 2144 RHSgradient 0.049285 +Summit location: 2109 +WavCombRight[2112] 2156 InsidePosnRHS: 2145 RHSgradient -0.043293 +Summit location: 2109 +WavCombRight[2112] 2157 InsidePosnRHS: 2146 RHSgradient -0.125595 +Summit location: 2109 +WavCombRight[2112] 2158 InsidePosnRHS: 2146 RHSgradient -0.189405 +Summit location: 2109 +WavCombRight[2112] 2159 InsidePosnRHS: 2147 RHSgradient -0.308040 +Summit location: 2109 +WavCombRight[2112] 2160 InsidePosnRHS: 2148 RHSgradient -0.356667 +Summit location: 2109 +WavCombRight[2112] 2161 InsidePosnRHS: 2149 RHSgradient -0.340034 +Summit location: 715 +WavCombRight[714] 723 InsidePosnRHS: 722 RHSgradient 0.524463 +Summit location: 715 +WavCombRight[714] 724 InsidePosnRHS: 722 RHSgradient 0.576447 +Summit location: 715 +WavCombRight[714] 725 InsidePosnRHS: 723 RHSgradient 0.654596 +Summit location: 715 +WavCombRight[714] 726 InsidePosnRHS: 724 RHSgradient 0.665784 +Summit location: 715 +WavCombRight[714] 727 InsidePosnRHS: 725 RHSgradient 0.647266 +Summit location: 715 +WavCombRight[714] 728 InsidePosnRHS: 725 RHSgradient 0.599776 +Summit location: 715 +WavCombRight[714] 729 InsidePosnRHS: 726 RHSgradient 0.399996 +Summit location: 715 +WavCombRight[714] 730 InsidePosnRHS: 727 RHSgradient 0.092090 +Summit location: 715 +WavCombRight[714] 731 InsidePosnRHS: 728 RHSgradient -0.169507 +Summit location: 715 +WavCombRight[714] 732 InsidePosnRHS: 728 RHSgradient -0.197131 +Summit location: 715 +WavCombRight[714] 733 InsidePosnRHS: 729 RHSgradient -0.279999 +Summit location: 715 +WavCombRight[714] 734 InsidePosnRHS: 730 RHSgradient -0.279999 +Summit location: 1864 +WavCombRight[1859] 1877 InsidePosnRHS: 1874 RHSgradient 0.114315 +Summit location: 1864 +WavCombRight[1859] 1878 InsidePosnRHS: 1875 RHSgradient 0.006669 +Summit location: 1864 +WavCombRight[1859] 1879 InsidePosnRHS: 1876 RHSgradient 0.077055 +Summit location: 1864 +WavCombRight[1859] 1880 InsidePosnRHS: 1877 RHSgradient 0.211222 +Summit location: 1864 +WavCombRight[1859] 1881 InsidePosnRHS: 1877 RHSgradient 0.231445 +Summit location: 1864 +WavCombRight[1859] 1882 InsidePosnRHS: 1878 RHSgradient 0.289102 +Summit location: 1864 +WavCombRight[1859] 1883 InsidePosnRHS: 1879 RHSgradient 0.293567 +Summit location: 1864 +WavCombRight[1859] 1884 InsidePosnRHS: 1880 RHSgradient 0.298029 +Summit location: 1864 +WavCombRight[1859] 1885 InsidePosnRHS: 1880 RHSgradient 0.327192 +Summit location: 1864 +WavCombRight[1859] 1886 InsidePosnRHS: 1881 RHSgradient 0.376162 +Summit location: 1864 +WavCombRight[1859] 1887 InsidePosnRHS: 1882 RHSgradient 0.388718 +Summit location: 1864 +WavCombRight[1859] 1888 InsidePosnRHS: 1883 RHSgradient 0.364824 +Summit location: 1864 +WavCombRight[1859] 1889 InsidePosnRHS: 1883 RHSgradient 0.334021 +Summit location: 1864 +WavCombRight[1859] 1890 InsidePosnRHS: 1884 RHSgradient 0.313334 +Summit location: 1864 +WavCombRight[1859] 1891 InsidePosnRHS: 1885 RHSgradient 0.269358 +Summit location: 1864 +WavCombRight[1859] 1892 InsidePosnRHS: 1886 RHSgradient 0.209865 +Summit location: 1864 +WavCombRight[1859] 1893 InsidePosnRHS: 1886 RHSgradient 0.205598 +Summit location: 1864 +WavCombRight[1859] 1894 InsidePosnRHS: 1887 RHSgradient 0.175133 +Summit location: 1864 +WavCombRight[1859] 1895 InsidePosnRHS: 1888 RHSgradient 0.155662 +Summit location: 1864 +WavCombRight[1859] 1896 InsidePosnRHS: 1889 RHSgradient 0.114286 +Summit location: 2644 +WavCombRight[2638] 2653 InsidePosnRHS: 2651 RHSgradient 0.433014 +Summit location: 2644 +WavCombRight[2638] 2654 InsidePosnRHS: 2652 RHSgradient 0.382178 +Summit location: 2644 +WavCombRight[2638] 2655 InsidePosnRHS: 2653 RHSgradient 0.306561 +Summit location: 2644 +WavCombRight[2638] 2656 InsidePosnRHS: 2654 RHSgradient 0.215692 +Summit location: 2644 +WavCombRight[2638] 2657 InsidePosnRHS: 2654 RHSgradient 0.194832 +Summit location: 2644 +WavCombRight[2638] 2658 InsidePosnRHS: 2655 RHSgradient 0.153333 +Summit location: 2644 +WavCombRight[2638] 2659 InsidePosnRHS: 2656 RHSgradient 0.133057 +Summit location: 2644 +WavCombRight[2638] 2660 InsidePosnRHS: 2657 RHSgradient 0.118750 +Summit location: 2644 +WavCombRight[2638] 2661 InsidePosnRHS: 2657 RHSgradient 0.117789 +Summit location: 2644 +WavCombRight[2638] 2662 InsidePosnRHS: 2658 RHSgradient 0.124118 +Summit location: 2644 +WavCombRight[2638] 2663 InsidePosnRHS: 2659 RHSgradient 0.139999 +Summit location: 2644 +WavCombRight[2638] 2664 InsidePosnRHS: 2660 RHSgradient 0.143726 +Summit location: 2644 +WavCombRight[2638] 2665 InsidePosnRHS: 2660 RHSgradient 0.119868 +Summit location: 2644 +WavCombRight[2638] 2666 InsidePosnRHS: 2661 RHSgradient 0.087556 +Summit location: 2644 +WavCombRight[2638] 2658 InsidePosnRHS: 2655 RHSgradient 0.153333 +Summit location: 2644 +WavCombRight[2638] 2659 InsidePosnRHS: 2656 RHSgradient 0.133057 +Summit location: 2644 +WavCombRight[2638] 2660 InsidePosnRHS: 2657 RHSgradient 0.118750 +Summit location: 2644 +WavCombRight[2638] 2661 InsidePosnRHS: 2657 RHSgradient 0.117789 +Summit location: 2644 +WavCombRight[2638] 2662 InsidePosnRHS: 2658 RHSgradient 0.124118 +Summit location: 2644 +WavCombRight[2638] 2663 InsidePosnRHS: 2659 RHSgradient 0.139999 +Summit location: 2644 +WavCombRight[2638] 2664 InsidePosnRHS: 2660 RHSgradient 0.143726 +Summit location: 2644 +WavCombRight[2638] 2665 InsidePosnRHS: 2660 RHSgradient 0.119868 +Summit location: 2644 +WavCombRight[2638] 2666 InsidePosnRHS: 2661 RHSgradient 0.087556 +Summit location: 2644 +WavCombRight[2638] 2667 InsidePosnRHS: 2662 RHSgradient 0.040706 +Summit location: 2644 +WavCombRight[2638] 2668 InsidePosnRHS: 2663 RHSgradient -0.012026 +Summit location: 2644 +WavCombRight[2638] 2669 InsidePosnRHS: 2663 RHSgradient -0.024969 +Summit location: 2644 +WavCombRight[2638] 2670 InsidePosnRHS: 2664 RHSgradient -0.060000 +Summit location: 2644 +WavCombRight[2638] 2671 InsidePosnRHS: 2665 RHSgradient -0.078784 +Summit location: 2644 +WavCombRight[2638] 2672 InsidePosnRHS: 2666 RHSgradient -0.083521 +Summit location: 2644 +WavCombRight[2638] 2673 InsidePosnRHS: 2666 RHSgradient -0.073969 +Summit location: 2644 +WavCombRight[2638] 2674 InsidePosnRHS: 2667 RHSgradient -0.053988 +Summit location: 2644 +WavCombRight[2638] 2664 InsidePosnRHS: 2660 RHSgradient 0.143726 +Summit location: 2644 +WavCombRight[2638] 2665 InsidePosnRHS: 2660 RHSgradient 0.119868 +Summit location: 2644 +WavCombRight[2638] 2666 InsidePosnRHS: 2661 RHSgradient 0.087556 +Summit location: 2644 +WavCombRight[2638] 2667 InsidePosnRHS: 2662 RHSgradient 0.040706 +Summit location: 2644 +WavCombRight[2638] 2668 InsidePosnRHS: 2663 RHSgradient -0.012026 +Summit location: 2644 +WavCombRight[2638] 2669 InsidePosnRHS: 2663 RHSgradient -0.024969 +Summit location: 2644 +WavCombRight[2638] 2670 InsidePosnRHS: 2664 RHSgradient -0.060000 +Summit location: 2644 +WavCombRight[2638] 2671 InsidePosnRHS: 2665 RHSgradient -0.078784 +Summit location: 2644 +WavCombRight[2638] 2672 InsidePosnRHS: 2666 RHSgradient -0.083521 +Summit location: 2644 +WavCombRight[2638] 2673 InsidePosnRHS: 2666 RHSgradient -0.073969 +Summit location: 2644 +WavCombRight[2638] 2674 InsidePosnRHS: 2667 RHSgradient -0.053988 +Summit location: 2644 +WavCombRight[2638] 2675 InsidePosnRHS: 2668 RHSgradient -0.026685 +Summit location: 2644 +WavCombRight[2638] 2676 InsidePosnRHS: 2669 RHSgradient 0.002131 +Summit location: 2644 +WavCombRight[2638] 2677 InsidePosnRHS: 2669 RHSgradient 0.013765 +Summit location: 2644 +WavCombRight[2638] 2665 InsidePosnRHS: 2660 RHSgradient 0.119868 +Summit location: 2644 +WavCombRight[2638] 2666 InsidePosnRHS: 2661 RHSgradient 0.087556 +Summit location: 2644 +WavCombRight[2638] 2667 InsidePosnRHS: 2662 RHSgradient 0.040706 +Summit location: 2644 +WavCombRight[2638] 2668 InsidePosnRHS: 2663 RHSgradient -0.012026 +Summit location: 2644 +WavCombRight[2638] 2669 InsidePosnRHS: 2663 RHSgradient -0.024969 +Summit location: 2644 +WavCombRight[2638] 2670 InsidePosnRHS: 2664 RHSgradient -0.060000 +Summit location: 2644 +WavCombRight[2638] 2671 InsidePosnRHS: 2665 RHSgradient -0.078784 +Summit location: 2644 +WavCombRight[2638] 2672 InsidePosnRHS: 2666 RHSgradient -0.083521 +Summit location: 2644 +WavCombRight[2638] 2673 InsidePosnRHS: 2666 RHSgradient -0.073969 +Summit location: 2644 +WavCombRight[2638] 2674 InsidePosnRHS: 2667 RHSgradient -0.053988 +Summit location: 2644 +WavCombRight[2638] 2675 InsidePosnRHS: 2668 RHSgradient -0.026685 +Summit location: 2644 +WavCombRight[2638] 2676 InsidePosnRHS: 2669 RHSgradient 0.002131 +Summit location: 2644 +WavCombRight[2638] 2677 InsidePosnRHS: 2669 RHSgradient 0.013765 +Summit location: 2644 +WavCombRight[2638] 2665 InsidePosnRHS: 2660 RHSgradient 0.119868 +Summit location: 2644 +WavCombRight[2638] 2666 InsidePosnRHS: 2661 RHSgradient 0.087556 +Summit location: 2644 +WavCombRight[2638] 2667 InsidePosnRHS: 2662 RHSgradient 0.040706 +Summit location: 2644 +WavCombRight[2638] 2668 InsidePosnRHS: 2663 RHSgradient -0.012026 +Summit location: 2644 +WavCombRight[2638] 2669 InsidePosnRHS: 2663 RHSgradient -0.024969 +Summit location: 2644 +WavCombRight[2638] 2670 InsidePosnRHS: 2664 RHSgradient -0.060000 +Summit location: 2644 +WavCombRight[2638] 2671 InsidePosnRHS: 2665 RHSgradient -0.078784 +Summit location: 2644 +WavCombRight[2638] 2672 InsidePosnRHS: 2666 RHSgradient -0.083521 +Summit location: 2644 +WavCombRight[2638] 2673 InsidePosnRHS: 2666 RHSgradient -0.073969 +Summit location: 2644 +WavCombRight[2638] 2674 InsidePosnRHS: 2667 RHSgradient -0.053988 +Summit location: 2644 +WavCombRight[2638] 2675 InsidePosnRHS: 2668 RHSgradient -0.026685 +Summit location: 2644 +WavCombRight[2638] 2676 InsidePosnRHS: 2669 RHSgradient 0.002131 +Summit location: 2644 +WavCombRight[2638] 2677 InsidePosnRHS: 2669 RHSgradient 0.013765 +Summit location: 2644 +WavCombRight[2638] 2665 InsidePosnRHS: 2660 RHSgradient 0.119868 +Summit location: 2644 +WavCombRight[2638] 2666 InsidePosnRHS: 2661 RHSgradient 0.087556 +Summit location: 2644 +WavCombRight[2638] 2667 InsidePosnRHS: 2662 RHSgradient 0.040706 +Summit location: 2644 +WavCombRight[2638] 2668 InsidePosnRHS: 2663 RHSgradient -0.012026 +Summit location: 2644 +WavCombRight[2638] 2669 InsidePosnRHS: 2663 RHSgradient -0.024969 +Summit location: 2644 +WavCombRight[2638] 2670 InsidePosnRHS: 2664 RHSgradient -0.060000 +Summit location: 2644 +WavCombRight[2638] 2671 InsidePosnRHS: 2665 RHSgradient -0.078784 +Summit location: 2644 +WavCombRight[2638] 2672 InsidePosnRHS: 2666 RHSgradient -0.083521 +Summit location: 2644 +WavCombRight[2638] 2673 InsidePosnRHS: 2666 RHSgradient -0.073969 +Summit location: 2644 +WavCombRight[2638] 2674 InsidePosnRHS: 2667 RHSgradient -0.053988 +Summit location: 2644 +WavCombRight[2638] 2675 InsidePosnRHS: 2668 RHSgradient -0.026685 +Summit location: 2644 +WavCombRight[2638] 2676 InsidePosnRHS: 2669 RHSgradient 0.002131 +Summit location: 2644 +WavCombRight[2638] 2677 InsidePosnRHS: 2669 RHSgradient 0.013765 +Summit location: 2644 +WavCombRight[2638] 2665 InsidePosnRHS: 2660 RHSgradient 0.119868 +Summit location: 2644 +WavCombRight[2638] 2666 InsidePosnRHS: 2661 RHSgradient 0.087556 +Summit location: 2644 +WavCombRight[2638] 2667 InsidePosnRHS: 2662 RHSgradient 0.040706 +Summit location: 2644 +WavCombRight[2638] 2668 InsidePosnRHS: 2663 RHSgradient -0.012026 +Summit location: 2644 +WavCombRight[2638] 2669 InsidePosnRHS: 2663 RHSgradient -0.024969 +Summit location: 2644 +WavCombRight[2638] 2670 InsidePosnRHS: 2664 RHSgradient -0.060000 +Summit location: 2644 +WavCombRight[2638] 2671 InsidePosnRHS: 2665 RHSgradient -0.078784 +Summit location: 2644 +WavCombRight[2638] 2672 InsidePosnRHS: 2666 RHSgradient -0.083521 +Summit location: 2644 +WavCombRight[2638] 2673 InsidePosnRHS: 2666 RHSgradient -0.073969 +Summit location: 2644 +WavCombRight[2638] 2674 InsidePosnRHS: 2667 RHSgradient -0.053988 +Summit location: 2644 +WavCombRight[2638] 2675 InsidePosnRHS: 2668 RHSgradient -0.026685 +Summit location: 2644 +WavCombRight[2638] 2676 InsidePosnRHS: 2669 RHSgradient 0.002131 +Summit location: 2644 +WavCombRight[2638] 2677 InsidePosnRHS: 2669 RHSgradient 0.013765 +Summit location: 2644 +WavCombRight[2638] 2678 InsidePosnRHS: 2670 RHSgradient 0.037199 +Summit location: 2644 +WavCombRight[2638] 2665 InsidePosnRHS: 2660 RHSgradient 0.119868 +Summit location: 2644 +WavCombRight[2638] 2666 InsidePosnRHS: 2661 RHSgradient 0.087556 +Summit location: 2644 +WavCombRight[2638] 2667 InsidePosnRHS: 2662 RHSgradient 0.040706 +Summit location: 2644 +WavCombRight[2638] 2668 InsidePosnRHS: 2663 RHSgradient -0.012026 +Summit location: 2644 +WavCombRight[2638] 2669 InsidePosnRHS: 2663 RHSgradient -0.024969 +Summit location: 2644 +WavCombRight[2638] 2670 InsidePosnRHS: 2664 RHSgradient -0.060000 +Summit location: 2644 +WavCombRight[2638] 2671 InsidePosnRHS: 2665 RHSgradient -0.078784 +Summit location: 2644 +WavCombRight[2638] 2672 InsidePosnRHS: 2666 RHSgradient -0.083521 +Summit location: 2644 +WavCombRight[2638] 2673 InsidePosnRHS: 2666 RHSgradient -0.073969 +Summit location: 2644 +WavCombRight[2638] 2674 InsidePosnRHS: 2667 RHSgradient -0.053988 +Summit location: 2644 +WavCombRight[2638] 2675 InsidePosnRHS: 2668 RHSgradient -0.026685 +Summit location: 2644 +WavCombRight[2638] 2676 InsidePosnRHS: 2669 RHSgradient 0.002131 +Summit location: 2644 +WavCombRight[2638] 2677 InsidePosnRHS: 2669 RHSgradient 0.013765 +Summit location: 2644 +WavCombRight[2638] 2678 InsidePosnRHS: 2670 RHSgradient 0.037199 +Summit location: 2644 +WavCombRight[2638] 2666 InsidePosnRHS: 2661 RHSgradient 0.087556 +Summit location: 2644 +WavCombRight[2638] 2667 InsidePosnRHS: 2662 RHSgradient 0.040706 +Summit location: 2644 +WavCombRight[2638] 2668 InsidePosnRHS: 2663 RHSgradient -0.012026 +Summit location: 2644 +WavCombRight[2638] 2669 InsidePosnRHS: 2663 RHSgradient -0.024969 +Summit location: 2644 +WavCombRight[2638] 2670 InsidePosnRHS: 2664 RHSgradient -0.060000 +Summit location: 2644 +WavCombRight[2638] 2671 InsidePosnRHS: 2665 RHSgradient -0.078784 +Summit location: 2644 +WavCombRight[2638] 2672 InsidePosnRHS: 2666 RHSgradient -0.083521 +Summit location: 2644 +WavCombRight[2638] 2673 InsidePosnRHS: 2666 RHSgradient -0.073969 +Summit location: 2644 +WavCombRight[2638] 2674 InsidePosnRHS: 2667 RHSgradient -0.053988 +Summit location: 2644 +WavCombRight[2638] 2675 InsidePosnRHS: 2668 RHSgradient -0.026685 +Summit location: 2644 +WavCombRight[2638] 2676 InsidePosnRHS: 2669 RHSgradient 0.002131 +Summit location: 2644 +WavCombRight[2638] 2677 InsidePosnRHS: 2669 RHSgradient 0.013765 +Summit location: 2644 +WavCombRight[2638] 2678 InsidePosnRHS: 2670 RHSgradient 0.037199 +Summit location: 2644 +WavCombRight[2638] 2679 InsidePosnRHS: 2671 RHSgradient 0.066034 +Summit location: 2926 +WavCombRight[2925] 2937 InsidePosnRHS: 2935 RHSgradient 0.512158 +Summit location: 2926 +WavCombRight[2925] 2938 InsidePosnRHS: 2936 RHSgradient 0.469287 +Summit location: 2926 +WavCombRight[2925] 2939 InsidePosnRHS: 2936 RHSgradient 0.445931 +Summit location: 2926 +WavCombRight[2925] 2940 InsidePosnRHS: 2937 RHSgradient 0.400000 +Summit location: 2926 +WavCombRight[2925] 2941 InsidePosnRHS: 2938 RHSgradient 0.360742 +Summit location: 2926 +WavCombRight[2925] 2942 InsidePosnRHS: 2939 RHSgradient 0.318978 +Summit location: 2926 +WavCombRight[2925] 2943 InsidePosnRHS: 2939 RHSgradient 0.289929 +Summit location: 2926 +WavCombRight[2925] 2944 InsidePosnRHS: 2940 RHSgradient 0.237531 +Summit location: 2926 +WavCombRight[2925] 2945 InsidePosnRHS: 2941 RHSgradient 0.189795 +Summit location: 2926 +WavCombRight[2925] 2946 InsidePosnRHS: 2942 RHSgradient 0.150696 +Summit location: 2926 +WavCombRight[2925] 2947 InsidePosnRHS: 2942 RHSgradient 0.139692 +Summit location: 2926 +WavCombRight[2925] 2948 InsidePosnRHS: 2943 RHSgradient 0.116792 +Summit location: 2926 +WavCombRight[2925] 2949 InsidePosnRHS: 2944 RHSgradient 0.109976 +Summit location: 2926 +WavCombRight[2925] 2950 InsidePosnRHS: 2945 RHSgradient 0.114126 +Summit location: 2926 +WavCombRight[2925] 2951 InsidePosnRHS: 2945 RHSgradient 0.123397 +Summit location: 3016 +WavCombRight[3015] 3027 InsidePosnRHS: 3025 RHSgradient 0.377576 +Summit location: 3016 +WavCombRight[3015] 3028 InsidePosnRHS: 3026 RHSgradient 0.273267 +Summit location: 3016 +WavCombRight[3015] 3029 InsidePosnRHS: 3026 RHSgradient 0.206136 +Summit location: 3016 +WavCombRight[3015] 3030 InsidePosnRHS: 3027 RHSgradient 0.139998 +Summit location: 3016 +WavCombRight[3015] 3031 InsidePosnRHS: 3028 RHSgradient 0.225431 +Summit location: 3016 +WavCombRight[3015] 3032 InsidePosnRHS: 3029 RHSgradient 0.402938 +Summit location: 3016 +WavCombRight[3015] 3033 InsidePosnRHS: 3029 RHSgradient 0.397327 +Summit location: 3016 +WavCombRight[3015] 3034 InsidePosnRHS: 3030 RHSgradient 0.375989 +Summit location: 3016 +WavCombRight[3015] 3035 InsidePosnRHS: 3031 RHSgradient 0.244165 +Summit location: 3016 +WavCombRight[3015] 3036 InsidePosnRHS: 3032 RHSgradient 0.050122 +Summit location: 3016 +WavCombRight[3015] 3037 InsidePosnRHS: 3032 RHSgradient 0.000225 +Summit location: 3016 +WavCombRight[3015] 3038 InsidePosnRHS: 3033 RHSgradient -0.123379 +Summit location: 3016 +WavCombRight[3015] 3039 InsidePosnRHS: 3034 RHSgradient -0.208789 +Summit location: 3016 +WavCombRight[3015] 3040 InsidePosnRHS: 3035 RHSgradient -0.286616 +Summit location: 3016 +WavCombRight[3015] 3041 InsidePosnRHS: 3035 RHSgradient -0.317753 +Summit location: 3016 +WavCombRight[3015] 3034 InsidePosnRHS: 3030 RHSgradient 0.375989 +Summit location: 3016 +WavCombRight[3015] 3035 InsidePosnRHS: 3031 RHSgradient 0.244165 +Summit location: 3016 +WavCombRight[3015] 3036 InsidePosnRHS: 3032 RHSgradient 0.050122 +Summit location: 3016 +WavCombRight[3015] 3037 InsidePosnRHS: 3032 RHSgradient 0.000225 +Summit location: 3016 +WavCombRight[3015] 3038 InsidePosnRHS: 3033 RHSgradient -0.123379 +Summit location: 3016 +WavCombRight[3015] 3039 InsidePosnRHS: 3034 RHSgradient -0.208789 +Summit location: 3016 +WavCombRight[3015] 3040 InsidePosnRHS: 3035 RHSgradient -0.286616 +Summit location: 3016 +WavCombRight[3015] 3041 InsidePosnRHS: 3035 RHSgradient -0.317753 +Summit location: 3016 +WavCombRight[3015] 3034 InsidePosnRHS: 3030 RHSgradient 0.375989 +Summit location: 3016 +WavCombRight[3015] 3035 InsidePosnRHS: 3031 RHSgradient 0.244165 +Summit location: 3016 +WavCombRight[3015] 3036 InsidePosnRHS: 3032 RHSgradient 0.050122 +Summit location: 3016 +WavCombRight[3015] 3037 InsidePosnRHS: 3032 RHSgradient 0.000225 +Summit location: 3016 +WavCombRight[3015] 3038 InsidePosnRHS: 3033 RHSgradient -0.123379 +Summit location: 3016 +WavCombRight[3015] 3039 InsidePosnRHS: 3034 RHSgradient -0.208789 +Summit location: 3016 +WavCombRight[3015] 3040 InsidePosnRHS: 3035 RHSgradient -0.286616 +Summit location: 3016 +WavCombRight[3015] 3041 InsidePosnRHS: 3035 RHSgradient -0.317753 +Summit location: 3016 +WavCombRight[3015] 3042 InsidePosnRHS: 3036 RHSgradient -0.369999 +Summit location: 3016 +WavCombRight[3015] 3034 InsidePosnRHS: 3030 RHSgradient 0.375989 +Summit location: 3016 +WavCombRight[3015] 3035 InsidePosnRHS: 3031 RHSgradient 0.244165 +Summit location: 3016 +WavCombRight[3015] 3036 InsidePosnRHS: 3032 RHSgradient 0.050122 +Summit location: 3016 +WavCombRight[3015] 3037 InsidePosnRHS: 3032 RHSgradient 0.000225 +Summit location: 3016 +WavCombRight[3015] 3038 InsidePosnRHS: 3033 RHSgradient -0.123379 +Summit location: 3016 +WavCombRight[3015] 3039 InsidePosnRHS: 3034 RHSgradient -0.208789 +Summit location: 3016 +WavCombRight[3015] 3040 InsidePosnRHS: 3035 RHSgradient -0.286616 +Summit location: 3016 +WavCombRight[3015] 3041 InsidePosnRHS: 3035 RHSgradient -0.317753 +Summit location: 3016 +WavCombRight[3015] 3042 InsidePosnRHS: 3036 RHSgradient -0.369999 +Summit location: 3016 +WavCombRight[3015] 3034 InsidePosnRHS: 3030 RHSgradient 0.375989 +Summit location: 3016 +WavCombRight[3015] 3035 InsidePosnRHS: 3031 RHSgradient 0.244165 +Summit location: 3016 +WavCombRight[3015] 3036 InsidePosnRHS: 3032 RHSgradient 0.050122 +Summit location: 3016 +WavCombRight[3015] 3037 InsidePosnRHS: 3032 RHSgradient 0.000225 +Summit location: 3016 +WavCombRight[3015] 3038 InsidePosnRHS: 3033 RHSgradient -0.123379 +Summit location: 3016 +WavCombRight[3015] 3039 InsidePosnRHS: 3034 RHSgradient -0.208789 +Summit location: 3016 +WavCombRight[3015] 3040 InsidePosnRHS: 3035 RHSgradient -0.286616 +Summit location: 3016 +WavCombRight[3015] 3041 InsidePosnRHS: 3035 RHSgradient -0.317753 +Summit location: 3016 +WavCombRight[3015] 3042 InsidePosnRHS: 3036 RHSgradient -0.369999 +Summit location: 3016 +WavCombRight[3015] 3034 InsidePosnRHS: 3030 RHSgradient 0.375989 +Summit location: 3016 +WavCombRight[3015] 3035 InsidePosnRHS: 3031 RHSgradient 0.244165 +Summit location: 3016 +WavCombRight[3015] 3036 InsidePosnRHS: 3032 RHSgradient 0.050122 +Summit location: 3016 +WavCombRight[3015] 3037 InsidePosnRHS: 3032 RHSgradient 0.000225 +Summit location: 3016 +WavCombRight[3015] 3038 InsidePosnRHS: 3033 RHSgradient -0.123379 +Summit location: 3016 +WavCombRight[3015] 3039 InsidePosnRHS: 3034 RHSgradient -0.208789 +Summit location: 3016 +WavCombRight[3015] 3040 InsidePosnRHS: 3035 RHSgradient -0.286616 +Summit location: 3016 +WavCombRight[3015] 3041 InsidePosnRHS: 3035 RHSgradient -0.317753 +Summit location: 3016 +WavCombRight[3015] 3042 InsidePosnRHS: 3036 RHSgradient -0.369999 +Summit location: 3016 +WavCombRight[3015] 3034 InsidePosnRHS: 3030 RHSgradient 0.375989 +Summit location: 3016 +WavCombRight[3015] 3035 InsidePosnRHS: 3031 RHSgradient 0.244165 +Summit location: 3016 +WavCombRight[3015] 3036 InsidePosnRHS: 3032 RHSgradient 0.050122 +Summit location: 3016 +WavCombRight[3015] 3037 InsidePosnRHS: 3032 RHSgradient 0.000225 +Summit location: 3016 +WavCombRight[3015] 3038 InsidePosnRHS: 3033 RHSgradient -0.123379 +Summit location: 3016 +WavCombRight[3015] 3039 InsidePosnRHS: 3034 RHSgradient -0.208789 +Summit location: 3016 +WavCombRight[3015] 3040 InsidePosnRHS: 3035 RHSgradient -0.286616 +Summit location: 3016 +WavCombRight[3015] 3041 InsidePosnRHS: 3035 RHSgradient -0.317753 +Summit location: 3016 +WavCombRight[3015] 3042 InsidePosnRHS: 3036 RHSgradient -0.369999 +Summit location: 3016 +WavCombRight[3015] 3043 InsidePosnRHS: 3037 RHSgradient -0.418896 +Summit location: 3016 +WavCombRight[3015] 3034 InsidePosnRHS: 3030 RHSgradient 0.375989 +Summit location: 3016 +WavCombRight[3015] 3035 InsidePosnRHS: 3031 RHSgradient 0.244165 +Summit location: 3016 +WavCombRight[3015] 3036 InsidePosnRHS: 3032 RHSgradient 0.050122 +Summit location: 3016 +WavCombRight[3015] 3037 InsidePosnRHS: 3032 RHSgradient 0.000225 +Summit location: 3016 +WavCombRight[3015] 3038 InsidePosnRHS: 3033 RHSgradient -0.123379 +Summit location: 3016 +WavCombRight[3015] 3039 InsidePosnRHS: 3034 RHSgradient -0.208789 +Summit location: 3016 +WavCombRight[3015] 3040 InsidePosnRHS: 3035 RHSgradient -0.286616 +Summit location: 3016 +WavCombRight[3015] 3041 InsidePosnRHS: 3035 RHSgradient -0.317753 +Summit location: 3016 +WavCombRight[3015] 3042 InsidePosnRHS: 3036 RHSgradient -0.369999 +Summit location: 3016 +WavCombRight[3015] 3043 InsidePosnRHS: 3037 RHSgradient -0.418896 +Summit location: 3016 +WavCombRight[3015] 3034 InsidePosnRHS: 3030 RHSgradient 0.375989 +Summit location: 3016 +WavCombRight[3015] 3035 InsidePosnRHS: 3031 RHSgradient 0.244165 +Summit location: 3016 +WavCombRight[3015] 3036 InsidePosnRHS: 3032 RHSgradient 0.050122 +Summit location: 3016 +WavCombRight[3015] 3037 InsidePosnRHS: 3032 RHSgradient 0.000225 +Summit location: 3016 +WavCombRight[3015] 3038 InsidePosnRHS: 3033 RHSgradient -0.123379 +Summit location: 3016 +WavCombRight[3015] 3039 InsidePosnRHS: 3034 RHSgradient -0.208789 +Summit location: 3016 +WavCombRight[3015] 3040 InsidePosnRHS: 3035 RHSgradient -0.286616 +Summit location: 3016 +WavCombRight[3015] 3041 InsidePosnRHS: 3035 RHSgradient -0.317753 +Summit location: 3016 +WavCombRight[3015] 3042 InsidePosnRHS: 3036 RHSgradient -0.369999 +Summit location: 3016 +WavCombRight[3015] 3043 InsidePosnRHS: 3037 RHSgradient -0.418896 +Summit location: 3016 +WavCombRight[3015] 3035 InsidePosnRHS: 3031 RHSgradient 0.244165 +Summit location: 3016 +WavCombRight[3015] 3036 InsidePosnRHS: 3032 RHSgradient 0.050122 +Summit location: 3016 +WavCombRight[3015] 3037 InsidePosnRHS: 3032 RHSgradient 0.000225 +Summit location: 3016 +WavCombRight[3015] 3038 InsidePosnRHS: 3033 RHSgradient -0.123379 +Summit location: 3016 +WavCombRight[3015] 3039 InsidePosnRHS: 3034 RHSgradient -0.208789 +Summit location: 3016 +WavCombRight[3015] 3040 InsidePosnRHS: 3035 RHSgradient -0.286616 +Summit location: 3016 +WavCombRight[3015] 3041 InsidePosnRHS: 3035 RHSgradient -0.317753 +Summit location: 3016 +WavCombRight[3015] 3042 InsidePosnRHS: 3036 RHSgradient -0.369999 +Summit location: 3016 +WavCombRight[3015] 3043 InsidePosnRHS: 3037 RHSgradient -0.418896 +Summit location: 3016 +WavCombRight[3015] 3044 InsidePosnRHS: 3038 RHSgradient -0.461686 +Summit location: 1567 +WavCombRight[1568] 1580 InsidePosnRHS: 1577 RHSgradient 0.384896 +Summit location: 1567 +WavCombRight[1568] 1581 InsidePosnRHS: 1578 RHSgradient 0.419999 +Summit location: 1567 +WavCombRight[1568] 1582 InsidePosnRHS: 1579 RHSgradient 0.338513 +Summit location: 1567 +WavCombRight[1568] 1583 InsidePosnRHS: 1580 RHSgradient 0.226900 +Summit location: 1567 +WavCombRight[1568] 1584 InsidePosnRHS: 1580 RHSgradient 0.212283 +Summit location: 1567 +WavCombRight[1568] 1585 InsidePosnRHS: 1581 RHSgradient 0.181931 +Summit location: 1567 +WavCombRight[1568] 1586 InsidePosnRHS: 1582 RHSgradient 0.195840 +Summit location: 1567 +WavCombRight[1568] 1587 InsidePosnRHS: 1583 RHSgradient 0.202109 +Summit location: 1567 +WavCombRight[1568] 1582 InsidePosnRHS: 1579 RHSgradient 0.338513 +Summit location: 1567 +WavCombRight[1568] 1583 InsidePosnRHS: 1580 RHSgradient 0.226900 +Summit location: 1567 +WavCombRight[1568] 1584 InsidePosnRHS: 1580 RHSgradient 0.212283 +Summit location: 1567 +WavCombRight[1568] 1585 InsidePosnRHS: 1581 RHSgradient 0.181931 +Summit location: 1567 +WavCombRight[1568] 1586 InsidePosnRHS: 1582 RHSgradient 0.195840 +Summit location: 1567 +WavCombRight[1568] 1587 InsidePosnRHS: 1583 RHSgradient 0.202109 +Summit location: 1567 +WavCombRight[1568] 1588 InsidePosnRHS: 1583 RHSgradient 0.180564 +Summit location: 1567 +WavCombRight[1568] 1589 InsidePosnRHS: 1584 RHSgradient 0.160156 +Summit location: 1567 +WavCombRight[1568] 1590 InsidePosnRHS: 1585 RHSgradient 0.126455 +Summit location: 1567 +WavCombRight[1568] 1591 InsidePosnRHS: 1586 RHSgradient 0.090603 +Summit location: 1567 +WavCombRight[1568] 1592 InsidePosnRHS: 1586 RHSgradient 0.084399 +Summit location: 1567 +WavCombRight[1568] 1593 InsidePosnRHS: 1587 RHSgradient 0.063332 +Summit location: 1567 +WavCombRight[1568] 1594 InsidePosnRHS: 1588 RHSgradient 0.049392 +Summit location: 1567 +WavCombRight[1568] 1587 InsidePosnRHS: 1583 RHSgradient 0.202109 +Summit location: 1567 +WavCombRight[1568] 1588 InsidePosnRHS: 1583 RHSgradient 0.180564 +Summit location: 1567 +WavCombRight[1568] 1589 InsidePosnRHS: 1584 RHSgradient 0.160156 +Summit location: 1567 +WavCombRight[1568] 1590 InsidePosnRHS: 1585 RHSgradient 0.126455 +Summit location: 1567 +WavCombRight[1568] 1591 InsidePosnRHS: 1586 RHSgradient 0.090603 +Summit location: 1567 +WavCombRight[1568] 1592 InsidePosnRHS: 1586 RHSgradient 0.084399 +Summit location: 1567 +WavCombRight[1568] 1593 InsidePosnRHS: 1587 RHSgradient 0.063332 +Summit location: 1567 +WavCombRight[1568] 1594 InsidePosnRHS: 1588 RHSgradient 0.049392 +Summit location: 1567 +WavCombRight[1568] 1595 InsidePosnRHS: 1589 RHSgradient 0.027834 +Summit location: 1567 +WavCombRight[1568] 1596 InsidePosnRHS: 1589 RHSgradient 0.002745 +Summit location: 1567 +WavCombRight[1568] 1588 InsidePosnRHS: 1583 RHSgradient 0.180564 +Summit location: 1567 +WavCombRight[1568] 1589 InsidePosnRHS: 1584 RHSgradient 0.160156 +Summit location: 1567 +WavCombRight[1568] 1590 InsidePosnRHS: 1585 RHSgradient 0.126455 +Summit location: 1567 +WavCombRight[1568] 1591 InsidePosnRHS: 1586 RHSgradient 0.090603 +Summit location: 1567 +WavCombRight[1568] 1592 InsidePosnRHS: 1586 RHSgradient 0.084399 +Summit location: 1567 +WavCombRight[1568] 1593 InsidePosnRHS: 1587 RHSgradient 0.063332 +Summit location: 1567 +WavCombRight[1568] 1594 InsidePosnRHS: 1588 RHSgradient 0.049392 +Summit location: 1567 +WavCombRight[1568] 1595 InsidePosnRHS: 1589 RHSgradient 0.027834 +Summit location: 1567 +WavCombRight[1568] 1596 InsidePosnRHS: 1589 RHSgradient 0.002745 +Summit location: 1567 +WavCombRight[1568] 1588 InsidePosnRHS: 1583 RHSgradient 0.180564 +Summit location: 1567 +WavCombRight[1568] 1589 InsidePosnRHS: 1584 RHSgradient 0.160156 +Summit location: 1567 +WavCombRight[1568] 1590 InsidePosnRHS: 1585 RHSgradient 0.126455 +Summit location: 1567 +WavCombRight[1568] 1591 InsidePosnRHS: 1586 RHSgradient 0.090603 +Summit location: 1567 +WavCombRight[1568] 1592 InsidePosnRHS: 1586 RHSgradient 0.084399 +Summit location: 1567 +WavCombRight[1568] 1593 InsidePosnRHS: 1587 RHSgradient 0.063332 +Summit location: 1567 +WavCombRight[1568] 1594 InsidePosnRHS: 1588 RHSgradient 0.049392 +Summit location: 1567 +WavCombRight[1568] 1595 InsidePosnRHS: 1589 RHSgradient 0.027834 +Summit location: 1567 +WavCombRight[1568] 1596 InsidePosnRHS: 1589 RHSgradient 0.002745 +Summit location: 1808 +WavCombRight[1807] 1817 InsidePosnRHS: 1815 RHSgradient 0.829272 +Summit location: 1808 +WavCombRight[1807] 1818 InsidePosnRHS: 1816 RHSgradient 0.772461 +Summit location: 1808 +WavCombRight[1807] 1819 InsidePosnRHS: 1817 RHSgradient 0.481506 +Summit location: 1808 +WavCombRight[1807] 1820 InsidePosnRHS: 1818 RHSgradient 0.281451 +Summit location: 1808 +WavCombRight[1807] 1821 InsidePosnRHS: 1818 RHSgradient 0.253333 +Summit location: 1808 +WavCombRight[1807] 1822 InsidePosnRHS: 1819 RHSgradient 0.207137 +Summit location: 1808 +WavCombRight[1807] 1823 InsidePosnRHS: 1820 RHSgradient 0.180204 +Summit location: 1808 +WavCombRight[1807] 1824 InsidePosnRHS: 1821 RHSgradient 0.153337 +Summit location: 1808 +WavCombRight[1807] 1825 InsidePosnRHS: 1821 RHSgradient 0.103259 +Summit location: 1808 +WavCombRight[1807] 1826 InsidePosnRHS: 1822 RHSgradient 0.013455 +Summit location: 1808 +WavCombRight[1807] 1827 InsidePosnRHS: 1823 RHSgradient -0.050879 +Summit location: 1808 +WavCombRight[1807] 1828 InsidePosnRHS: 1824 RHSgradient -0.036099 +Summit location: 1808 +WavCombRight[1807] 1829 InsidePosnRHS: 1824 RHSgradient 0.029465 +Summit location: 794 +WavCombRight[794] 803 InsidePosnRHS: 801 RHSgradient 0.738647 +Summit location: 794 +WavCombRight[794] 804 InsidePosnRHS: 802 RHSgradient 0.724011 +Summit location: 794 +WavCombRight[794] 805 InsidePosnRHS: 803 RHSgradient 0.498029 +Summit location: 794 +WavCombRight[794] 806 InsidePosnRHS: 804 RHSgradient 0.267981 +Summit location: 794 +WavCombRight[794] 807 InsidePosnRHS: 804 RHSgradient 0.206665 +Summit location: 794 +WavCombRight[794] 808 InsidePosnRHS: 805 RHSgradient 0.098047 +Summit location: 794 +WavCombRight[794] 809 InsidePosnRHS: 806 RHSgradient 0.016984 +Summit location: 794 +WavCombRight[794] 810 InsidePosnRHS: 807 RHSgradient -0.073332 +Summit location: 794 +WavCombRight[794] 811 InsidePosnRHS: 807 RHSgradient -0.166827 +Summit location: 794 +WavCombRight[794] 806 InsidePosnRHS: 804 RHSgradient 0.267981 +Summit location: 794 +WavCombRight[794] 807 InsidePosnRHS: 804 RHSgradient 0.206665 +Summit location: 794 +WavCombRight[794] 808 InsidePosnRHS: 805 RHSgradient 0.098047 +Summit location: 794 +WavCombRight[794] 809 InsidePosnRHS: 806 RHSgradient 0.016984 +Summit location: 794 +WavCombRight[794] 810 InsidePosnRHS: 807 RHSgradient -0.073332 +Summit location: 794 +WavCombRight[794] 811 InsidePosnRHS: 807 RHSgradient -0.166827 +Summit location: 794 +WavCombRight[794] 806 InsidePosnRHS: 804 RHSgradient 0.267981 +Summit location: 794 +WavCombRight[794] 807 InsidePosnRHS: 804 RHSgradient 0.206665 +Summit location: 794 +WavCombRight[794] 808 InsidePosnRHS: 805 RHSgradient 0.098047 +Summit location: 794 +WavCombRight[794] 809 InsidePosnRHS: 806 RHSgradient 0.016984 +Summit location: 794 +WavCombRight[794] 810 InsidePosnRHS: 807 RHSgradient -0.073332 +Summit location: 794 +WavCombRight[794] 811 InsidePosnRHS: 807 RHSgradient -0.166827 +Summit location: 794 +WavCombRight[794] 807 InsidePosnRHS: 804 RHSgradient 0.206665 +Summit location: 794 +WavCombRight[794] 808 InsidePosnRHS: 805 RHSgradient 0.098047 +Summit location: 794 +WavCombRight[794] 809 InsidePosnRHS: 806 RHSgradient 0.016984 +Summit location: 794 +WavCombRight[794] 810 InsidePosnRHS: 807 RHSgradient -0.073332 +Summit location: 794 +WavCombRight[794] 811 InsidePosnRHS: 807 RHSgradient -0.166827 +Summit location: 794 +WavCombRight[794] 812 InsidePosnRHS: 808 RHSgradient -0.328384 +Summit location: 1743 +WavCombRight[1744] 1754 InsidePosnRHS: 1752 RHSgradient 0.194177 +Summit location: 1743 +WavCombRight[1744] 1755 InsidePosnRHS: 1753 RHSgradient 0.193182 +Summit location: 1743 +WavCombRight[1744] 1756 InsidePosnRHS: 1753 RHSgradient 0.223551 +Summit location: 1743 +WavCombRight[1744] 1757 InsidePosnRHS: 1754 RHSgradient 0.265552 +Summit location: 1743 +WavCombRight[1744] 1758 InsidePosnRHS: 1755 RHSgradient 0.280001 +Summit location: 1743 +WavCombRight[1744] 1759 InsidePosnRHS: 1756 RHSgradient 0.253886 +Summit location: 1743 +WavCombRight[1744] 1760 InsidePosnRHS: 1756 RHSgradient 0.239996 +Summit location: 1743 +WavCombRight[1744] 1761 InsidePosnRHS: 1757 RHSgradient 0.213748 +Summit location: 1743 +WavCombRight[1744] 1762 InsidePosnRHS: 1758 RHSgradient 0.198203 +Summit location: 1743 +WavCombRight[1744] 1763 InsidePosnRHS: 1759 RHSgradient 0.193347 +Summit location: 1743 +WavCombRight[1744] 1764 InsidePosnRHS: 1759 RHSgradient 0.190811 +Summit location: 1743 +WavCombRight[1744] 1765 InsidePosnRHS: 1760 RHSgradient 0.175017 +Summit location: 1743 +WavCombRight[1744] 1766 InsidePosnRHS: 1761 RHSgradient 0.135139 +Summit location: 1743 +WavCombRight[1744] 1767 InsidePosnRHS: 1762 RHSgradient 0.069436 +Summit location: 1743 +WavCombRight[1744] 1768 InsidePosnRHS: 1762 RHSgradient 0.014213 +Summit location: 1743 +WavCombRight[1744] 1769 InsidePosnRHS: 1763 RHSgradient -0.069633 +Summit location: 1743 +WavCombRight[1744] 1770 InsidePosnRHS: 1764 RHSgradient -0.146667 +Summit location: 1743 +WavCombRight[1744] 1771 InsidePosnRHS: 1765 RHSgradient -0.200714 +Summit location: 755 +WavCombRight[751] 764 InsidePosnRHS: 762 RHSgradient 0.337402 +Summit location: 755 +WavCombRight[751] 765 InsidePosnRHS: 763 RHSgradient 0.328162 +Summit location: 755 +WavCombRight[751] 766 InsidePosnRHS: 764 RHSgradient 0.305658 +Summit location: 755 +WavCombRight[751] 767 InsidePosnRHS: 765 RHSgradient 0.280200 +Summit location: 755 +WavCombRight[751] 768 InsidePosnRHS: 765 RHSgradient 0.306665 +Summit location: 755 +WavCombRight[751] 769 InsidePosnRHS: 766 RHSgradient 0.362390 +Summit location: 755 +WavCombRight[751] 770 InsidePosnRHS: 767 RHSgradient 0.429171 +Summit location: 755 +WavCombRight[751] 771 InsidePosnRHS: 768 RHSgradient 0.466667 +Summit location: 755 +WavCombRight[751] 772 InsidePosnRHS: 768 RHSgradient 0.465424 +Summit location: 755 +WavCombRight[751] 773 InsidePosnRHS: 769 RHSgradient 0.467047 +Summit location: 755 +WavCombRight[751] 774 InsidePosnRHS: 770 RHSgradient 0.463022 +Summit location: 755 +WavCombRight[751] 775 InsidePosnRHS: 771 RHSgradient 0.447162 +Summit location: 755 +WavCombRight[751] 776 InsidePosnRHS: 771 RHSgradient 0.423711 +Summit location: 755 +WavCombRight[751] 777 InsidePosnRHS: 772 RHSgradient 0.387661 +Summit location: 755 +WavCombRight[751] 778 InsidePosnRHS: 773 RHSgradient 0.323315 +Summit location: 755 +WavCombRight[751] 779 InsidePosnRHS: 774 RHSgradient 0.212915 +Summit location: 1624 +WavCombRight[1615] 1630 InsidePosnRHS: 1629 RHSgradient 0.939392 +Summit location: 1624 +WavCombRight[1615] 1631 InsidePosnRHS: 1630 RHSgradient 1.063904 +Summit location: 1624 +WavCombRight[1615] 1632 InsidePosnRHS: 1631 RHSgradient 0.816711 +Summit location: 1624 +WavCombRight[1615] 1633 InsidePosnRHS: 1631 RHSgradient 0.685217 +Summit location: 1624 +WavCombRight[1615] 1634 InsidePosnRHS: 1632 RHSgradient 0.541760 +Summit location: 1624 +WavCombRight[1615] 1635 InsidePosnRHS: 1633 RHSgradient 0.523138 +Summit location: 1624 +WavCombRight[1615] 1636 InsidePosnRHS: 1634 RHSgradient 0.514996 +Summit location: 1624 +WavCombRight[1615] 1637 InsidePosnRHS: 1634 RHSgradient 0.510059 +Summit location: 1624 +WavCombRight[1615] 1638 InsidePosnRHS: 1635 RHSgradient 0.493331 +Summit location: 1624 +WavCombRight[1615] 1639 InsidePosnRHS: 1636 RHSgradient 0.387118 +Summit location: 1624 +WavCombRight[1615] 1640 InsidePosnRHS: 1637 RHSgradient 0.206274 +Summit location: 1624 +WavCombRight[1615] 1641 InsidePosnRHS: 1637 RHSgradient 0.181573 +Summit location: 1624 +WavCombRight[1615] 1642 InsidePosnRHS: 1638 RHSgradient 0.154550 +Summit location: 1624 +WavCombRight[1615] 1643 InsidePosnRHS: 1639 RHSgradient 0.204593 +Summit location: 1624 +WavCombRight[1615] 1644 InsidePosnRHS: 1640 RHSgradient 0.301868 +Summit location: 1624 +WavCombRight[1615] 1645 InsidePosnRHS: 1640 RHSgradient 0.301230 +Summit location: 1624 +WavCombRight[1615] 1646 InsidePosnRHS: 1641 RHSgradient 0.335796 +Summit location: 1624 +WavCombRight[1615] 1647 InsidePosnRHS: 1642 RHSgradient 0.308359 +Summit location: 2854 +WavCombRight[2868] 2889 InsidePosnRHS: 2881 RHSgradient 0.101807 +Summit location: 2854 +WavCombRight[2868] 2890 InsidePosnRHS: 2882 RHSgradient 0.068808 +Summit location: 2854 +WavCombRight[2868] 2891 InsidePosnRHS: 2882 RHSgradient 0.054500 +Summit location: 2854 +WavCombRight[2868] 2892 InsidePosnRHS: 2883 RHSgradient 0.024444 +Summit location: 2854 +WavCombRight[2868] 2893 InsidePosnRHS: 2884 RHSgradient -0.014214 +Summit location: 2854 +WavCombRight[2868] 2894 InsidePosnRHS: 2885 RHSgradient -0.056529 +Summit location: 2854 +WavCombRight[2868] 2895 InsidePosnRHS: 2885 RHSgradient -0.063289 +Summit location: 2854 +WavCombRight[2868] 2896 InsidePosnRHS: 2886 RHSgradient -0.073022 +Summit location: 2854 +WavCombRight[2868] 2897 InsidePosnRHS: 2887 RHSgradient -0.059766 +Summit location: 2854 +WavCombRight[2868] 2898 InsidePosnRHS: 2888 RHSgradient -0.030410 +Summit location: 2854 +WavCombRight[2868] 2889 InsidePosnRHS: 2881 RHSgradient 0.101807 +Summit location: 2854 +WavCombRight[2868] 2890 InsidePosnRHS: 2882 RHSgradient 0.068808 +Summit location: 2854 +WavCombRight[2868] 2891 InsidePosnRHS: 2882 RHSgradient 0.054500 +Summit location: 2854 +WavCombRight[2868] 2892 InsidePosnRHS: 2883 RHSgradient 0.024444 +Summit location: 2854 +WavCombRight[2868] 2893 InsidePosnRHS: 2884 RHSgradient -0.014214 +Summit location: 2854 +WavCombRight[2868] 2894 InsidePosnRHS: 2885 RHSgradient -0.056529 +Summit location: 2854 +WavCombRight[2868] 2895 InsidePosnRHS: 2885 RHSgradient -0.063289 +Summit location: 2854 +WavCombRight[2868] 2896 InsidePosnRHS: 2886 RHSgradient -0.073022 +Summit location: 2854 +WavCombRight[2868] 2897 InsidePosnRHS: 2887 RHSgradient -0.059766 +Summit location: 2854 +WavCombRight[2868] 2898 InsidePosnRHS: 2888 RHSgradient -0.030410 +Summit location: 2854 +WavCombRight[2868] 2889 InsidePosnRHS: 2881 RHSgradient 0.101807 +Summit location: 2854 +WavCombRight[2868] 2890 InsidePosnRHS: 2882 RHSgradient 0.068808 +Summit location: 2854 +WavCombRight[2868] 2891 InsidePosnRHS: 2882 RHSgradient 0.054500 +Summit location: 2854 +WavCombRight[2868] 2892 InsidePosnRHS: 2883 RHSgradient 0.024444 +Summit location: 2854 +WavCombRight[2868] 2893 InsidePosnRHS: 2884 RHSgradient -0.014214 +Summit location: 2854 +WavCombRight[2868] 2894 InsidePosnRHS: 2885 RHSgradient -0.056529 +Summit location: 2854 +WavCombRight[2868] 2895 InsidePosnRHS: 2885 RHSgradient -0.063289 +Summit location: 2854 +WavCombRight[2868] 2896 InsidePosnRHS: 2886 RHSgradient -0.073022 +Summit location: 2854 +WavCombRight[2868] 2897 InsidePosnRHS: 2887 RHSgradient -0.059766 +Summit location: 2854 +WavCombRight[2868] 2898 InsidePosnRHS: 2888 RHSgradient -0.030410 +Summit location: 2854 +WavCombRight[2868] 2889 InsidePosnRHS: 2881 RHSgradient 0.101807 +Summit location: 2854 +WavCombRight[2868] 2890 InsidePosnRHS: 2882 RHSgradient 0.068808 +Summit location: 2854 +WavCombRight[2868] 2891 InsidePosnRHS: 2882 RHSgradient 0.054500 +Summit location: 2854 +WavCombRight[2868] 2892 InsidePosnRHS: 2883 RHSgradient 0.024444 +Summit location: 2854 +WavCombRight[2868] 2893 InsidePosnRHS: 2884 RHSgradient -0.014214 +Summit location: 2854 +WavCombRight[2868] 2894 InsidePosnRHS: 2885 RHSgradient -0.056529 +Summit location: 2854 +WavCombRight[2868] 2895 InsidePosnRHS: 2885 RHSgradient -0.063289 +Summit location: 2854 +WavCombRight[2868] 2896 InsidePosnRHS: 2886 RHSgradient -0.073022 +Summit location: 2854 +WavCombRight[2868] 2897 InsidePosnRHS: 2887 RHSgradient -0.059766 +Summit location: 2854 +WavCombRight[2868] 2898 InsidePosnRHS: 2888 RHSgradient -0.030410 +Summit location: 2854 +WavCombRight[2868] 2899 InsidePosnRHS: 2888 RHSgradient -0.000661 +Summit location: 2854 +WavCombRight[2868] 2889 InsidePosnRHS: 2881 RHSgradient 0.101807 +Summit location: 2854 +WavCombRight[2868] 2890 InsidePosnRHS: 2882 RHSgradient 0.068808 +Summit location: 2854 +WavCombRight[2868] 2891 InsidePosnRHS: 2882 RHSgradient 0.054500 +Summit location: 2854 +WavCombRight[2868] 2892 InsidePosnRHS: 2883 RHSgradient 0.024444 +Summit location: 2854 +WavCombRight[2868] 2893 InsidePosnRHS: 2884 RHSgradient -0.014214 +Summit location: 2854 +WavCombRight[2868] 2894 InsidePosnRHS: 2885 RHSgradient -0.056529 +Summit location: 2854 +WavCombRight[2868] 2895 InsidePosnRHS: 2885 RHSgradient -0.063289 +Summit location: 2854 +WavCombRight[2868] 2896 InsidePosnRHS: 2886 RHSgradient -0.073022 +Summit location: 2854 +WavCombRight[2868] 2897 InsidePosnRHS: 2887 RHSgradient -0.059766 +Summit location: 2854 +WavCombRight[2868] 2898 InsidePosnRHS: 2888 RHSgradient -0.030410 +Summit location: 2854 +WavCombRight[2868] 2899 InsidePosnRHS: 2888 RHSgradient -0.000661 +Summit location: 2854 +WavCombRight[2868] 2889 InsidePosnRHS: 2881 RHSgradient 0.101807 +Summit location: 2854 +WavCombRight[2868] 2890 InsidePosnRHS: 2882 RHSgradient 0.068808 +Summit location: 2854 +WavCombRight[2868] 2891 InsidePosnRHS: 2882 RHSgradient 0.054500 +Summit location: 2854 +WavCombRight[2868] 2892 InsidePosnRHS: 2883 RHSgradient 0.024444 +Summit location: 2854 +WavCombRight[2868] 2893 InsidePosnRHS: 2884 RHSgradient -0.014214 +Summit location: 2854 +WavCombRight[2868] 2894 InsidePosnRHS: 2885 RHSgradient -0.056529 +Summit location: 2854 +WavCombRight[2868] 2895 InsidePosnRHS: 2885 RHSgradient -0.063289 +Summit location: 2854 +WavCombRight[2868] 2896 InsidePosnRHS: 2886 RHSgradient -0.073022 +Summit location: 2854 +WavCombRight[2868] 2897 InsidePosnRHS: 2887 RHSgradient -0.059766 +Summit location: 2854 +WavCombRight[2868] 2898 InsidePosnRHS: 2888 RHSgradient -0.030410 +Summit location: 2854 +WavCombRight[2868] 2899 InsidePosnRHS: 2888 RHSgradient -0.000661 +Summit location: 2854 +WavCombRight[2868] 2889 InsidePosnRHS: 2881 RHSgradient 0.101807 +Summit location: 2854 +WavCombRight[2868] 2890 InsidePosnRHS: 2882 RHSgradient 0.068808 +Summit location: 2854 +WavCombRight[2868] 2891 InsidePosnRHS: 2882 RHSgradient 0.054500 +Summit location: 2854 +WavCombRight[2868] 2892 InsidePosnRHS: 2883 RHSgradient 0.024444 +Summit location: 2854 +WavCombRight[2868] 2893 InsidePosnRHS: 2884 RHSgradient -0.014214 +Summit location: 2854 +WavCombRight[2868] 2894 InsidePosnRHS: 2885 RHSgradient -0.056529 +Summit location: 2854 +WavCombRight[2868] 2895 InsidePosnRHS: 2885 RHSgradient -0.063289 +Summit location: 2854 +WavCombRight[2868] 2896 InsidePosnRHS: 2886 RHSgradient -0.073022 +Summit location: 2854 +WavCombRight[2868] 2897 InsidePosnRHS: 2887 RHSgradient -0.059766 +Summit location: 2854 +WavCombRight[2868] 2898 InsidePosnRHS: 2888 RHSgradient -0.030410 +Summit location: 2854 +WavCombRight[2868] 2899 InsidePosnRHS: 2888 RHSgradient -0.000661 +Summit location: 2854 +WavCombRight[2868] 2889 InsidePosnRHS: 2881 RHSgradient 0.101807 +Summit location: 2854 +WavCombRight[2868] 2890 InsidePosnRHS: 2882 RHSgradient 0.068808 +Summit location: 2854 +WavCombRight[2868] 2891 InsidePosnRHS: 2882 RHSgradient 0.054500 +Summit location: 2854 +WavCombRight[2868] 2892 InsidePosnRHS: 2883 RHSgradient 0.024444 +Summit location: 2854 +WavCombRight[2868] 2893 InsidePosnRHS: 2884 RHSgradient -0.014214 +Summit location: 2854 +WavCombRight[2868] 2894 InsidePosnRHS: 2885 RHSgradient -0.056529 +Summit location: 2854 +WavCombRight[2868] 2895 InsidePosnRHS: 2885 RHSgradient -0.063289 +Summit location: 2854 +WavCombRight[2868] 2896 InsidePosnRHS: 2886 RHSgradient -0.073022 +Summit location: 2854 +WavCombRight[2868] 2897 InsidePosnRHS: 2887 RHSgradient -0.059766 +Summit location: 2854 +WavCombRight[2868] 2898 InsidePosnRHS: 2888 RHSgradient -0.030410 +Summit location: 2854 +WavCombRight[2868] 2899 InsidePosnRHS: 2888 RHSgradient -0.000661 +Summit location: 2854 +WavCombRight[2868] 2900 InsidePosnRHS: 2889 RHSgradient 0.032864 +Summit location: 2854 +WavCombRight[2868] 2889 InsidePosnRHS: 2881 RHSgradient 0.101807 +Summit location: 2854 +WavCombRight[2868] 2890 InsidePosnRHS: 2882 RHSgradient 0.068808 +Summit location: 2854 +WavCombRight[2868] 2891 InsidePosnRHS: 2882 RHSgradient 0.054500 +Summit location: 2854 +WavCombRight[2868] 2892 InsidePosnRHS: 2883 RHSgradient 0.024444 +Summit location: 2854 +WavCombRight[2868] 2893 InsidePosnRHS: 2884 RHSgradient -0.014214 +Summit location: 2854 +WavCombRight[2868] 2894 InsidePosnRHS: 2885 RHSgradient -0.056529 +Summit location: 2854 +WavCombRight[2868] 2895 InsidePosnRHS: 2885 RHSgradient -0.063289 +Summit location: 2854 +WavCombRight[2868] 2896 InsidePosnRHS: 2886 RHSgradient -0.073022 +Summit location: 2854 +WavCombRight[2868] 2897 InsidePosnRHS: 2887 RHSgradient -0.059766 +Summit location: 2854 +WavCombRight[2868] 2898 InsidePosnRHS: 2888 RHSgradient -0.030410 +Summit location: 2854 +WavCombRight[2868] 2899 InsidePosnRHS: 2888 RHSgradient -0.000661 +Summit location: 2854 +WavCombRight[2868] 2900 InsidePosnRHS: 2889 RHSgradient 0.032864 +Summit location: 845 +WavCombRight[845] 850 InsidePosnRHS: 849 RHSgradient 0.757495 +Summit location: 845 +WavCombRight[845] 851 InsidePosnRHS: 850 RHSgradient 0.877673 +Summit location: 828 +WavCombRight[828] 834 InsidePosnRHS: 833 RHSgradient 0.538232 +Summit location: 828 +WavCombRight[828] 835 InsidePosnRHS: 834 RHSgradient 0.369397 +Summit location: 828 +WavCombRight[828] 836 InsidePosnRHS: 835 RHSgradient 0.138916 +Summit location: 828 +WavCombRight[828] 837 InsidePosnRHS: 835 RHSgradient 0.035303 +Summit location: 828 +WavCombRight[828] 838 InsidePosnRHS: 836 RHSgradient -0.157623 +Summit location: 828 +WavCombRight[828] 836 InsidePosnRHS: 835 RHSgradient 0.138916 +Summit location: 828 +WavCombRight[828] 837 InsidePosnRHS: 835 RHSgradient 0.035303 +Summit location: 828 +WavCombRight[828] 838 InsidePosnRHS: 836 RHSgradient -0.157623 +Summit location: 828 +WavCombRight[828] 839 InsidePosnRHS: 837 RHSgradient -0.314435 +Summit location: 828 +WavCombRight[828] 836 InsidePosnRHS: 835 RHSgradient 0.138916 +Summit location: 828 +WavCombRight[828] 837 InsidePosnRHS: 835 RHSgradient 0.035303 +Summit location: 828 +WavCombRight[828] 838 InsidePosnRHS: 836 RHSgradient -0.157623 +Summit location: 828 +WavCombRight[828] 839 InsidePosnRHS: 837 RHSgradient -0.314435 +Summit location: 828 +WavCombRight[828] 836 InsidePosnRHS: 835 RHSgradient 0.138916 +Summit location: 828 +WavCombRight[828] 837 InsidePosnRHS: 835 RHSgradient 0.035303 +Summit location: 828 +WavCombRight[828] 838 InsidePosnRHS: 836 RHSgradient -0.157623 +Summit location: 828 +WavCombRight[828] 839 InsidePosnRHS: 837 RHSgradient -0.314435 +Summit location: 828 +WavCombRight[828] 837 InsidePosnRHS: 835 RHSgradient 0.035303 +Summit location: 828 +WavCombRight[828] 838 InsidePosnRHS: 836 RHSgradient -0.157623 +Summit location: 828 +WavCombRight[828] 839 InsidePosnRHS: 837 RHSgradient -0.314435 +Summit location: 828 +WavCombRight[828] 840 InsidePosnRHS: 838 RHSgradient -0.426532 +Summit location: 2160 +WavCombRight[2162] 2167 InsidePosnRHS: 2166 RHSgradient 0.544092 +Summit location: 2160 +WavCombRight[2162] 2168 InsidePosnRHS: 2167 RHSgradient 0.694067 +Summit location: 2160 +WavCombRight[2162] 2169 InsidePosnRHS: 2167 RHSgradient 0.587964 +Summit location: 2160 +WavCombRight[2162] 2170 InsidePosnRHS: 2168 RHSgradient 0.175745 +Summit location: 2160 +WavCombRight[2162] 2171 InsidePosnRHS: 2169 RHSgradient -0.317590 +Summit location: 2160 +WavCombRight[2162] 2172 InsidePosnRHS: 2170 RHSgradient -0.394824 +Summit location: 2160 +WavCombRight[2162] 2170 InsidePosnRHS: 2168 RHSgradient 0.175745 +Summit location: 2160 +WavCombRight[2162] 2171 InsidePosnRHS: 2169 RHSgradient -0.317590 +Summit location: 2160 +WavCombRight[2162] 2172 InsidePosnRHS: 2170 RHSgradient -0.394824 +Summit location: 2160 +WavCombRight[2162] 2173 InsidePosnRHS: 2170 RHSgradient -0.247933 +Summit location: 2160 +WavCombRight[2162] 2170 InsidePosnRHS: 2168 RHSgradient 0.175745 +Summit location: 2160 +WavCombRight[2162] 2171 InsidePosnRHS: 2169 RHSgradient -0.317590 +Summit location: 2160 +WavCombRight[2162] 2172 InsidePosnRHS: 2170 RHSgradient -0.394824 +Summit location: 2160 +WavCombRight[2162] 2173 InsidePosnRHS: 2170 RHSgradient -0.247933 +Summit location: 2160 +WavCombRight[2162] 2170 InsidePosnRHS: 2168 RHSgradient 0.175745 +Summit location: 2160 +WavCombRight[2162] 2171 InsidePosnRHS: 2169 RHSgradient -0.317590 +Summit location: 2160 +WavCombRight[2162] 2172 InsidePosnRHS: 2170 RHSgradient -0.394824 +Summit location: 2160 +WavCombRight[2162] 2173 InsidePosnRHS: 2170 RHSgradient -0.247933 +Summit location: 534 +WavCombRight[530] 538 InsidePosnRHS: 537 RHSgradient 0.776489 +Summit location: 534 +WavCombRight[530] 539 InsidePosnRHS: 538 RHSgradient 0.938843 +Summit location: 534 +WavCombRight[530] 540 InsidePosnRHS: 539 RHSgradient 0.564673 +Summit location: 534 +WavCombRight[530] 541 InsidePosnRHS: 540 RHSgradient 0.059497 +Summit location: 534 +WavCombRight[530] 542 InsidePosnRHS: 541 RHSgradient -0.170728 +Summit location: 534 +WavCombRight[530] 539 InsidePosnRHS: 538 RHSgradient 0.938843 +Summit location: 534 +WavCombRight[530] 540 InsidePosnRHS: 539 RHSgradient 0.564673 +Summit location: 534 +WavCombRight[530] 541 InsidePosnRHS: 540 RHSgradient 0.059497 +Summit location: 534 +WavCombRight[530] 542 InsidePosnRHS: 541 RHSgradient -0.170728 +Summit location: 1781 +WavCombRight[1780] 1787 InsidePosnRHS: 1786 RHSgradient 0.471082 +Summit location: 1781 +WavCombRight[1780] 1788 InsidePosnRHS: 1787 RHSgradient 0.408496 +Summit location: 1781 +WavCombRight[1780] 1789 InsidePosnRHS: 1788 RHSgradient 0.250403 +Summit location: 1781 +WavCombRight[1780] 1790 InsidePosnRHS: 1788 RHSgradient 0.179474 +Summit location: 1781 +WavCombRight[1780] 1791 InsidePosnRHS: 1789 RHSgradient 0.074799 +Summit location: 1781 +WavCombRight[1780] 1792 InsidePosnRHS: 1790 RHSgradient 0.028821 +Summit location: 1781 +WavCombRight[1780] 1793 InsidePosnRHS: 1791 RHSgradient -0.025220 +Summit location: 1781 +WavCombRight[1780] 1790 InsidePosnRHS: 1788 RHSgradient 0.179474 +Summit location: 1781 +WavCombRight[1780] 1791 InsidePosnRHS: 1789 RHSgradient 0.074799 +Summit location: 1781 +WavCombRight[1780] 1792 InsidePosnRHS: 1790 RHSgradient 0.028821 +Summit location: 1781 +WavCombRight[1780] 1793 InsidePosnRHS: 1791 RHSgradient -0.025220 +Summit location: 1781 +WavCombRight[1780] 1790 InsidePosnRHS: 1788 RHSgradient 0.179474 +Summit location: 1781 +WavCombRight[1780] 1791 InsidePosnRHS: 1789 RHSgradient 0.074799 +Summit location: 1781 +WavCombRight[1780] 1792 InsidePosnRHS: 1790 RHSgradient 0.028821 +Summit location: 1781 +WavCombRight[1780] 1793 InsidePosnRHS: 1791 RHSgradient -0.025220 +Summit location: 1781 +WavCombRight[1780] 1790 InsidePosnRHS: 1788 RHSgradient 0.179474 +Summit location: 1781 +WavCombRight[1780] 1791 InsidePosnRHS: 1789 RHSgradient 0.074799 +Summit location: 1781 +WavCombRight[1780] 1792 InsidePosnRHS: 1790 RHSgradient 0.028821 +Summit location: 1781 +WavCombRight[1780] 1793 InsidePosnRHS: 1791 RHSgradient -0.025220 +Summit location: 1781 +WavCombRight[1780] 1790 InsidePosnRHS: 1788 RHSgradient 0.179474 +Summit location: 1781 +WavCombRight[1780] 1791 InsidePosnRHS: 1789 RHSgradient 0.074799 +Summit location: 1781 +WavCombRight[1780] 1792 InsidePosnRHS: 1790 RHSgradient 0.028821 +Summit location: 1781 +WavCombRight[1780] 1793 InsidePosnRHS: 1791 RHSgradient -0.025220 +Summit location: 1781 +WavCombRight[1780] 1791 InsidePosnRHS: 1789 RHSgradient 0.074799 +Summit location: 1781 +WavCombRight[1780] 1792 InsidePosnRHS: 1790 RHSgradient 0.028821 +Summit location: 1781 +WavCombRight[1780] 1793 InsidePosnRHS: 1791 RHSgradient -0.025220 +Summit location: 1669 +WavCombRight[1667] 1674 InsidePosnRHS: 1673 RHSgradient 0.535913 +Summit location: 1669 +WavCombRight[1667] 1675 InsidePosnRHS: 1674 RHSgradient 0.310254 +Summit location: 1669 +WavCombRight[1667] 1676 InsidePosnRHS: 1675 RHSgradient 0.189160 +Summit location: 1669 +WavCombRight[1667] 1677 InsidePosnRHS: 1676 RHSgradient 0.000586 +Summit location: 1669 +WavCombRight[1667] 1678 InsidePosnRHS: 1676 RHSgradient -0.061115 +Summit location: 1669 +WavCombRight[1667] 1679 InsidePosnRHS: 1677 RHSgradient -0.128534 +Summit location: 1669 +WavCombRight[1667] 1680 InsidePosnRHS: 1678 RHSgradient -0.138593 +Summit location: 1669 +WavCombRight[1667] 1677 InsidePosnRHS: 1676 RHSgradient 0.000586 +Summit location: 1669 +WavCombRight[1667] 1678 InsidePosnRHS: 1676 RHSgradient -0.061115 +Summit location: 1669 +WavCombRight[1667] 1679 InsidePosnRHS: 1677 RHSgradient -0.128534 +Summit location: 1669 +WavCombRight[1667] 1680 InsidePosnRHS: 1678 RHSgradient -0.138593 +Summit location: 1669 +WavCombRight[1667] 1681 InsidePosnRHS: 1679 RHSgradient -0.128546 +Summit location: 1669 +WavCombRight[1667] 1677 InsidePosnRHS: 1676 RHSgradient 0.000586 +Summit location: 1669 +WavCombRight[1667] 1678 InsidePosnRHS: 1676 RHSgradient -0.061115 +Summit location: 1669 +WavCombRight[1667] 1679 InsidePosnRHS: 1677 RHSgradient -0.128534 +Summit location: 1669 +WavCombRight[1667] 1680 InsidePosnRHS: 1678 RHSgradient -0.138593 +Summit location: 1669 +WavCombRight[1667] 1681 InsidePosnRHS: 1679 RHSgradient -0.128546 +Summit location: 1669 +WavCombRight[1667] 1677 InsidePosnRHS: 1676 RHSgradient 0.000586 +Summit location: 1669 +WavCombRight[1667] 1678 InsidePosnRHS: 1676 RHSgradient -0.061115 +Summit location: 1669 +WavCombRight[1667] 1679 InsidePosnRHS: 1677 RHSgradient -0.128534 +Summit location: 1669 +WavCombRight[1667] 1680 InsidePosnRHS: 1678 RHSgradient -0.138593 +Summit location: 1669 +WavCombRight[1667] 1681 InsidePosnRHS: 1679 RHSgradient -0.128546 +Summit location: 1669 +WavCombRight[1667] 1677 InsidePosnRHS: 1676 RHSgradient 0.000586 +Summit location: 1669 +WavCombRight[1667] 1678 InsidePosnRHS: 1676 RHSgradient -0.061115 +Summit location: 1669 +WavCombRight[1667] 1679 InsidePosnRHS: 1677 RHSgradient -0.128534 +Summit location: 1669 +WavCombRight[1667] 1680 InsidePosnRHS: 1678 RHSgradient -0.138593 +Summit location: 1669 +WavCombRight[1667] 1681 InsidePosnRHS: 1679 RHSgradient -0.128546 +Summit location: 562 +WavCombRight[564] 569 InsidePosnRHS: 568 RHSgradient 0.237292 +Summit location: 562 +WavCombRight[564] 570 InsidePosnRHS: 569 RHSgradient 0.204468 +Summit location: 562 +WavCombRight[564] 569 InsidePosnRHS: 568 RHSgradient 0.237292 +Summit location: 562 +WavCombRight[564] 570 InsidePosnRHS: 569 RHSgradient 0.204468 +Summit location: 562 +WavCombRight[564] 571 InsidePosnRHS: 569 RHSgradient 0.172552 +Summit location: 562 +WavCombRight[564] 572 InsidePosnRHS: 570 RHSgradient 0.114838 +Summit location: 562 +WavCombRight[564] 573 InsidePosnRHS: 571 RHSgradient 0.069684 +Summit location: 976 +WavCombRight[976] 981 InsidePosnRHS: 980 RHSgradient 0.349707 +Summit location: 976 +WavCombRight[976] 982 InsidePosnRHS: 981 RHSgradient 0.233545 +Summit location: 3060 +WavCombRight[3061] 3069 InsidePosnRHS: 3067 RHSgradient 0.252014 +Summit location: 3060 +WavCombRight[3061] 3070 InsidePosnRHS: 3068 RHSgradient 0.208630 +Summit location: 3060 +WavCombRight[3061] 3071 InsidePosnRHS: 3069 RHSgradient 0.171606 +Summit location: 3060 +WavCombRight[3061] 3069 InsidePosnRHS: 3067 RHSgradient 0.252014 +Summit location: 3060 +WavCombRight[3061] 3070 InsidePosnRHS: 3068 RHSgradient 0.208630 +Summit location: 3060 +WavCombRight[3061] 3071 InsidePosnRHS: 3069 RHSgradient 0.171606 +Summit location: 2183 +WavCombRight[2183] 2186 InsidePosnRHS: 2185 RHSgradient 0.573315 +Summit location: 2588 +WavCombRight[2586] 2591 InsidePosnRHS: 2590 RHSgradient 0.596228 +Summit location: 2588 +WavCombRight[2586] 2592 InsidePosnRHS: 2591 RHSgradient 0.565955 +Summit location: 2552 +WavCombRight[2550] 2557 InsidePosnRHS: 2556 RHSgradient 0.226917 +Summit location: 2552 +WavCombRight[2550] 2558 InsidePosnRHS: 2557 RHSgradient 0.220605 +Summit location: 2552 +WavCombRight[2550] 2559 InsidePosnRHS: 2558 RHSgradient 0.212476 +Summit location: 2552 +WavCombRight[2550] 2560 InsidePosnRHS: 2559 RHSgradient 0.152808 +Summit location: 2552 +WavCombRight[2550] 2561 InsidePosnRHS: 2559 RHSgradient 0.130200 +Summit location: 2552 +WavCombRight[2550] 2562 InsidePosnRHS: 2560 RHSgradient 0.133594 +Summit location: 2552 +WavCombRight[2550] 2563 InsidePosnRHS: 2561 RHSgradient 0.255536 +Summit location: 2552 +WavCombRight[2550] 2564 InsidePosnRHS: 2562 RHSgradient 0.412134 +Summit location: 2552 +WavCombRight[2550] 2565 InsidePosnRHS: 2562 RHSgradient 0.400000 +Summit location: 1068 +WavCombRight[1068] 1073 InsidePosnRHS: 1072 RHSgradient 0.379309 +Summit location: 1068 +WavCombRight[1068] 1074 InsidePosnRHS: 1073 RHSgradient 0.235413 +Summit location: 1068 +WavCombRight[1068] 1075 InsidePosnRHS: 1074 RHSgradient -0.034753 +Summit location: 1068 +WavCombRight[1068] 1075 InsidePosnRHS: 1074 RHSgradient -0.034753 +Summit location: 1068 +WavCombRight[1068] 1075 InsidePosnRHS: 1074 RHSgradient -0.034753 +Summit location: 1068 +WavCombRight[1068] 1075 InsidePosnRHS: 1074 RHSgradient -0.034753 +Summit location: 3090 +WavCombRight[3089] 3093 InsidePosnRHS: 3092 RHSgradient 0.286304 +Summit location: 2172 +WavCombRight[2173] 2176 InsidePosnRHS: 2175 RHSgradient 0.325195 +Summit location: 317 +WavCombRight[317] 321 InsidePosnRHS: 320 RHSgradient 0.193677 +Summit location: 317 +WavCombRight[317] 321 InsidePosnRHS: 320 RHSgradient 0.193677 +Summit location: 2895 +WavCombRight[2894] 2898 InsidePosnRHS: 2897 RHSgradient 0.238940 +Summit location: 2895 +WavCombRight[2894] 2899 InsidePosnRHS: 2898 RHSgradient 0.296826 +Summit location: 987 +WavCombRight[989] 993 InsidePosnRHS: 992 RHSgradient 0.033447 +Summit location: 987 +WavCombRight[989] 994 InsidePosnRHS: 993 RHSgradient 0.149988 +Summit location: 987 +WavCombRight[989] 995 InsidePosnRHS: 994 RHSgradient 0.273987 +Summit location: 987 +WavCombRight[989] 996 InsidePosnRHS: 994 RHSgradient 0.295007 +Summit location: 2715 +WavCombRight[2714] 2718 InsidePosnRHS: 2717 RHSgradient 0.285303 +Summit location: 2673 +WavCombRight[2672] 2677 InsidePosnRHS: 2676 RHSgradient 0.095203 +Summit location: 2673 +WavCombRight[2672] 2678 InsidePosnRHS: 2677 RHSgradient 0.102393 +Summit location: 2673 +WavCombRight[2672] 2679 InsidePosnRHS: 2678 RHSgradient 0.142407 +Summit location: 2673 +WavCombRight[2672] 2680 InsidePosnRHS: 2679 RHSgradient 0.246667 +Summit location: 2673 +WavCombRight[2672] 2681 InsidePosnRHS: 2680 RHSgradient 0.326660 +Summit location: 2673 +WavCombRight[2672] 2682 InsidePosnRHS: 2680 RHSgradient 0.316669 +Summit location: 2673 +WavCombRight[2672] 2680 InsidePosnRHS: 2679 RHSgradient 0.246667 +Summit location: 2673 +WavCombRight[2672] 2681 InsidePosnRHS: 2680 RHSgradient 0.326660 +Summit location: 2673 +WavCombRight[2672] 2682 InsidePosnRHS: 2680 RHSgradient 0.316669 +Summit location: 957 +WavCombRight[959] 963 InsidePosnRHS: 962 RHSgradient -0.007581 +Summit location: 0 +WavCombRight[2427] 2431 InsidePosnRHS: 1824 RHSgradient -0.001906 +Summit location: 44 +WavCombRight[44] 46 InsidePosnRHS: 45 RHSgradient 0.318994 +Summit location: 68 +WavCombRight[68] 70 InsidePosnRHS: 69 RHSgradient 0.483594 +Summit location: 68 +WavCombRight[68] 71 InsidePosnRHS: 70 RHSgradient 0.730347 +Summit location: 1827 +WavCombRight[1827] 1829 InsidePosnRHS: 1828 RHSgradient 0.291724 +Summit location: 1827 +WavCombRight[1827] 1830 InsidePosnRHS: 1829 RHSgradient 0.092664 +Summit location: 576 +WavCombRight[576] 578 InsidePosnRHS: 577 RHSgradient 0.200354 +Summit location: 576 +WavCombRight[576] 578 InsidePosnRHS: 577 RHSgradient 0.200354 +Summit location: 576 +WavCombRight[576] 579 InsidePosnRHS: 578 RHSgradient 0.096619 +Summit location: 56 +WavCombRight[56] 58 InsidePosnRHS: 57 RHSgradient 0.123120 +Summit location: 56 +WavCombRight[56] 59 InsidePosnRHS: 58 RHSgradient 0.169995 +Summit location: 2538 +WavCombRight[2538] 2540 InsidePosnRHS: 2539 RHSgradient 0.056763 +Summit location: 2538 +WavCombRight[2538] 2541 InsidePosnRHS: 2540 RHSgradient 0.026038 +Summit location: 2538 +WavCombRight[2538] 2542 InsidePosnRHS: 2541 RHSgradient -0.045679 +Summit location: 2529 +WavCombRight[2529] 2531 InsidePosnRHS: 2530 RHSgradient 0.112415 +Summit location: 2529 +WavCombRight[2529] 2531 InsidePosnRHS: 2530 RHSgradient 0.112415 +Summit location: 2529 +WavCombRight[2529] 2532 InsidePosnRHS: 2531 RHSgradient 0.132483 +Summit location: 589 +WavCombRight[589] 591 InsidePosnRHS: 590 RHSgradient -0.118066 +Summit location: 1640 +WavCombRight[1640] 1642 InsidePosnRHS: 1641 RHSgradient 0.358203 +Summit location: 2963 +WavCombRight[2963] 2965 InsidePosnRHS: 2964 RHSgradient 0.134033 +Summit location: 2295 +WavCombRight[2295] 2297 InsidePosnRHS: 2296 RHSgradient -0.034729 +Summit location: 963 +WavCombRight[963] 965 InsidePosnRHS: 964 RHSgradient 0.252576 +Summit location: 963 +WavCombRight[963] 965 InsidePosnRHS: 964 RHSgradient 0.252576 diff --git a/test/seamounts_output.txt b/test/seamounts_output.txt new file mode 100644 index 0000000..19f0b20 --- /dev/null +++ b/test/seamounts_output.txt @@ -0,0 +1,29821 @@ +Output File test/frustrum.out Cleaned +Output Properties File test/properties.out Cleaned +In Object 0 3100 +Before Frustum +In Frustum +Min depth -1074.699951 max depth -1075.986572 +begin 43 finish 45, distance[43] = 215.000000 depth[43] = -1075.986572 FracDist[43] = 0.000000 FracDepth[43] = 0.000000 +begin 43 finish 45, distance[44] = 220.000000 depth[44] = -1074.776611 FracDist[44] = 0.500000 FracDepth[44] = 0.940417 +begin 43 finish 45, distance[45] = 225.000000 depth[45] = -1074.699951 FracDist[45] = 1.000000 FracDepth[45] = 1.000000 +Forced to adjust the seed postition +PointY[1] = 1.000000 PointY[2] = 0.990000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.000000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 0.990000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.010000 acrossB = 0.010000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =40.140625, Avmisfit[0] = 0.405461 +count[1] = 1.000000, misfit[1] =0.010000, Avmisfit[1] = 0.010000 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.405461 Avmisfit[1] = 0.010000 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +0 = (0.000000,0.000000) 1= (0.000000,1.000000) 2= (1.000000,0.990000) 3= (1.000000,1.000000) +Initial value of misfit = 0.415461 +Itteration = 0 + +Point 0 +Move[0] = 0.100000 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.000000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 0.990000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.000000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 0.990000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.010000 acrossB = 0.010000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =40.140625, Avmisfit[0] = 0.405461 +count[1] = 1.000000, misfit[1] =0.010000, Avmisfit[1] = 0.010000 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.405461 Avmisfit[1] = 0.010000 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.415461 + +MotionUnit = 0.050000 +OUTSIDEBOX +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.050000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.050000 +PointX[1] = 0.000000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 0.990000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.010000 acrossB = 0.010000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =40.140625, Avmisfit[0] = 0.405461 +count[1] = 1.000000, misfit[1] =0.010000, Avmisfit[1] = 0.010000 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =2.256437, Avmisfit[3] = 0.012536 +Avmisfit[0] = 0.405461 Avmisfit[1] = 0.010000 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.012536 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = 0.427997 + +MotionUnit = 0.050000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.050000 PointY[0] = 0.050000 +PointX[1] = 0.000000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 0.990000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.010000 acrossB = 0.010000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =38.583588, Avmisfit[0] = 0.389733 +count[1] = 1.000000, misfit[1] =0.010000, Avmisfit[1] = 0.010000 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.389733 Avmisfit[1] = 0.010000 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = 0.399733 + +MotionUnit = 0.000000 +BaselineHeight = 0.050000 BELOW BASELINE +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +BaselineHeight = 0.050000 BELOW BASELINE +PointCopyX[0] = 0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +PointCopyX[0] = -0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.100000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.100000 +PointX[1] = 0.000000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 0.990000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.010000 acrossB = 0.010000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =40.140625, Avmisfit[0] = 0.405461 +count[1] = 1.000000, misfit[1] =0.010000, Avmisfit[1] = 0.010000 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =4.512875, Avmisfit[3] = 0.025072 +Avmisfit[0] = 0.405461 Avmisfit[1] = 0.010000 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.025072 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = 0.440532 + +MotionUnit = 0.100000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.000000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 0.990000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.010000 acrossB = 0.010000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =37.508820, Avmisfit[0] = 0.378877 +count[1] = 1.000000, misfit[1] =0.010000, Avmisfit[1] = 0.010000 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.378877 Avmisfit[1] = 0.010000 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = 0.388877 + +MotionUnit = 0.000000 +BaselineHeight = 0.100000 BELOW BASELINE +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +BaselineHeight = 0.100000 BELOW BASELINE +PointCopyX[0] = 0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +PointCopyX[0] = -0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +PointCopyX[0] = -0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = -0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = -0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.200000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.200000 +PointX[1] = 0.000000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 0.990000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.010000 acrossB = 0.010000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =40.140625, Avmisfit[0] = 0.405461 +count[1] = 1.000000, misfit[1] =0.010000, Avmisfit[1] = 0.010000 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =9.025751, Avmisfit[3] = 0.050143 +Avmisfit[0] = 0.405461 Avmisfit[1] = 0.010000 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.050143 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = 0.465604 + +MotionUnit = 0.200000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.000000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 0.990000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.010000 acrossB = 0.010000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =36.842014, Avmisfit[0] = 0.372142 +count[1] = 1.000000, misfit[1] =0.010000, Avmisfit[1] = 0.010000 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.372142 Avmisfit[1] = 0.010000 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = 0.382142 + +MotionUnit = 0.000000 +BaselineHeight = 0.200000 BELOW BASELINE +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +BaselineHeight = 0.200000 BELOW BASELINE +PointCopyX[0] = 0.200000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +PointCopyX[0] = -0.200000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = -0.200000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = -0.200000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.200000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = -0.200000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = -0.200000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +MoveMisfit[0][1] = 0.427997 +MoveMisfit[0][2] = 0.399733 +MoveMisfit[1][1] = 0.440532 +MoveMisfit[1][2] = 0.388877 +MoveMisfit[2][1] = 0.465604 +MoveMisfit[2][2] = 0.382142 +Minimum misfit = 0.382142 cont = 2 No. = 2 +Point 0 location changed from (0.000000,0.000000) to (0.200000,0.200000) +MISFIT reduced to 0.382142 +Move[0] changed to 0.200000 + +Point 1 +Move[1] = 0.100000 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.000000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 0.990000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.000000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 0.990000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.010000 acrossB = 0.010000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =36.842014, Avmisfit[0] = 0.372142 +count[1] = 1.000000, misfit[1] =0.010000, Avmisfit[1] = 0.010000 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.372142 Avmisfit[1] = 0.010000 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.382142 + +MotionUnit = 0.050000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.050000 PointCopyY[1] = 1.050000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.040000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.050000 PointCopyY[1] = 1.050000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.040000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.050000 PointCopyY[1] = 1.050000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.040000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.050000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.040000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.050000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.040000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.050000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.040000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.050000 PointCopyY[1] = 1.050000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.040000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.050000 PointCopyY[1] = 1.050000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.040000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.050000 PointCopyY[1] = 1.050000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.040000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.050000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.050000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.050000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 0.990000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.010000 acrossB = 0.010000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =34.087898, Avmisfit[0] = 0.344322 +count[1] = 1.000000, misfit[1] =0.010000, Avmisfit[1] = 0.010000 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.344322 Avmisfit[1] = 0.010000 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.050000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = 0.354322 + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.050000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.940000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.050000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.940000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.050000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.940000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.060000 acrossB = 0.060000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =15.332100, Avmisfit[0] = 0.210029 +count[1] = 27.000000, misfit[1] =0.903796, Avmisfit[1] = 0.033474 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.210029 Avmisfit[1] = 0.033474 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.050000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.940000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = 0.243503 + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.940000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.940000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.000000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.940000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.060000 acrossB = 0.060000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =16.930876, Avmisfit[0] = 0.231930 +count[1] = 27.000000, misfit[1] =0.906702, Avmisfit[1] = 0.033582 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.231930 Avmisfit[1] = 0.033582 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.940000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = 0.265511 + +MotionUnit = 0.050000 +OUTSIDEBOX +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.050000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.940000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.050000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.940000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.050000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.940000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.050000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.050000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.050000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.090000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.090000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.090000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.090000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.090000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.090000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.090000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.090000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.090000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.100000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 0.990000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.010000 acrossB = 0.010000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =31.345861, Avmisfit[0] = 0.316625 +count[1] = 1.000000, misfit[1] =0.010000, Avmisfit[1] = 0.010000 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.316625 Avmisfit[1] = 0.010000 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = 0.326625 + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.890000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.890000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.890000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.110000 acrossB = 0.110000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =10.537935, Avmisfit[0] = 0.162122 +count[1] = 35.000000, misfit[1] =2.586437, Avmisfit[1] = 0.073898 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.162122 Avmisfit[1] = 0.073898 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.890000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = 0.236020 + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.890000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.890000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.000000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.890000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.110000 acrossB = 0.110000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =13.113629, Avmisfit[0] = 0.201748 +count[1] = 35.000000, misfit[1] =2.596805, Avmisfit[1] = 0.074194 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.201748 Avmisfit[1] = 0.074194 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.890000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = 0.275943 + +MotionUnit = 0.100000 +OUTSIDEBOX +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.890000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.890000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.890000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.200000 PointCopyY[1] = 1.200000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.190000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.200000 PointCopyY[1] = 1.200000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.190000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.200000 PointCopyY[1] = 1.200000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.190000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.200000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.190000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.200000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.190000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.200000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.190000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 1.200000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.190000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 1.200000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.190000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 1.200000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.190000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.200000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 0.990000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.010000 acrossB = 0.010000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =25.918978, Avmisfit[0] = 0.261808 +count[1] = 1.000000, misfit[1] =0.010000, Avmisfit[1] = 0.010000 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.261808 Avmisfit[1] = 0.010000 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = 0.271808 + +MotionUnit = 0.200000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.790000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.790000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.200000 PointY[1] = 0.800000 +PointX[2] = 1.000000 PointY[2] = 0.790000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.210000 acrossB = 0.210000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 58.000000, misfit[0] =6.273768, Avmisfit[0] = 0.108168 +count[1] = 42.000000, misfit[1] =6.469452, Avmisfit[1] = 0.154035 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.108168 Avmisfit[1] = 0.154035 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.790000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = 0.262203 + +MotionUnit = 0.200000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.790000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.790000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.000000 PointY[1] = 0.800000 +PointX[2] = 1.000000 PointY[2] = 0.790000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.210000 acrossB = 0.210000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 58.000000, misfit[0] =10.680549, Avmisfit[0] = 0.184147 +count[1] = 42.000000, misfit[1] =6.502340, Avmisfit[1] = 0.154818 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.184147 Avmisfit[1] = 0.154818 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.790000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = 0.338965 + +MotionUnit = 0.200000 +OUTSIDEBOX +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.200000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.790000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.200000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.790000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.200000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.790000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.200000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.200000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = -0.200000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.990000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +MoveMisfit[0][3] = 0.354322 +MoveMisfit[0][4] = 0.243503 +MoveMisfit[0][5] = 0.265511 +MoveMisfit[1][3] = 0.326625 +MoveMisfit[1][4] = 0.236020 +MoveMisfit[1][5] = 0.275943 +MoveMisfit[2][3] = 0.271808 +MoveMisfit[2][4] = 0.262203 +MoveMisfit[2][5] = 0.338965 +Minimum misfit = 0.236020 cont = 1 No. = 4 +Point 1 location changed from (0.000000,1.000000) to (0.100000,0.900000) +MISFIT reduced to 0.236020 + +Point 2 +Move[2] = 0.100000 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =10.537935, Avmisfit[0] = 0.162122 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.162122 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.228982 + +MotionUnit = 0.050000 +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.050000 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +BaselineHeight = 1.050000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.050000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +BaselineHeight = 1.050000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.050000 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.050000 +BaselineHeight = 0.950000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.950000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.100000 +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 0.900000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 0.900000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.100000 PointY[1] = 1.000000 +PointX[2] = 0.900000 PointY[2] = 1.000000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.000000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = nan +Forcing Right line to include the Last point +Idist = nan misfitTemp = nan +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =31.345861, Avmisfit[0] = 0.316625 +count[1] = 1.000000, misfit[1] =0.000000, Avmisfit[1] = 0.000000 +count[2] = 1.000000, misfit[2] =nan, Avmisfit[2] = nan +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.316625 Avmisfit[1] = 0.000000 Avmisfit[2] = nan Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 0.900000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = nan + +MotionUnit = 0.100000 +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.100000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 1.000000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.000000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = nan +Forcing Right line to include the Last point +Idist = nan misfitTemp = nan +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =31.345861, Avmisfit[0] = 0.316625 +count[1] = 1.000000, misfit[1] =0.000000, Avmisfit[1] = 0.000000 +count[2] = 1.000000, misfit[2] =nan, Avmisfit[2] = nan +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.316625 Avmisfit[1] = 0.000000 Avmisfit[2] = nan Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = nan + +MotionUnit = 0.100000 +OUTSIDEBOX +BaselineHeight = 1.100000 BELOW BASELINE +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.100000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.100000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.100000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.100000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.100000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.100000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.100000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +BaselineHeight = 1.100000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.100000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.100000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.100000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.100000 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.100000 +BaselineHeight = 0.900000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 0.900000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 0.900000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 0.900000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.900000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.900000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.900000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 0.800000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 0.800000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 0.800000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +BaselineHeight = 1.200000 BELOW BASELINE +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.200000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.200000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.200000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.200000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.200000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.200000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.200000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +BaselineHeight = 1.200000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.200000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.200000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.200000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.200000 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.200000 +BaselineHeight = 0.800000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 0.800000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 0.800000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 0.800000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.800000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.800000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.800000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +Minimum misfit = 1000000.000000 cont = 1 No. = 4 +Existing point was at least equal best fit, no change +But, Move[2] shrunk anyway to 0.050000 + +Point 3 +Move[3] = 0.100000 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =10.537935, Avmisfit[0] = 0.162122 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.162122 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.228982 + +MotionUnit = 0.050000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 1.050000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 1.050000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 1.050000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.050000 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.050000 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.050000 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 1.050000 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 1.050000 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 1.050000 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.050000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +BaselineHeight = 1.050000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 0.950000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 0.950000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 0.950000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.050000 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.950000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.950000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.950000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.050000 +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 0.950000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 0.950000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 0.950000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.900000 PointCopyY[3] = 1.100000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.900000 PointCopyY[3] = 1.100000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.900000 PointCopyY[3] = 1.100000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.100000 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.100000 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.100000 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.100000 PointCopyY[3] = 1.100000 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.100000 PointCopyY[3] = 1.100000 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.100000 PointCopyY[3] = 1.100000 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.100000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.100000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.100000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.100000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +BaselineHeight = 1.100000 BELOW BASELINE +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.100000 PointCopyY[3] = 0.900000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.100000 PointCopyY[3] = 0.900000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.100000 PointCopyY[3] = 0.900000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.100000 +BaselineHeight = 1.000000 BELOW BASELINE +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.900000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.900000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.900000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.100000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.900000 PointCopyY[3] = 0.900000 +todo = 1 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.900000 PointCopyY[3] = 0.900000 +MoveMisfit[1][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 0.900000 PointY[3] = 0.900000 +acrossA = 0.100000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = inf +Forcing Right line to include the Last point +Idist = -inf misfitTemp = inf +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =10.537935, Avmisfit[0] = 0.162122 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =inf, Avmisfit[2] = inf +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.162122 Avmisfit[1] = 0.066860 Avmisfit[2] = inf Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.900000 PointCopyY[3] = 0.900000 +MoveMisfit[1][6] = inf + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.900000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.900000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.900000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.800000 PointCopyY[3] = 1.200000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.800000 PointCopyY[3] = 1.200000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.800000 PointCopyY[3] = 1.200000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.200000 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.200000 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.200000 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.200000 PointCopyY[3] = 1.200000 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.200000 PointCopyY[3] = 1.200000 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.200000 PointCopyY[3] = 1.200000 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.200000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.200000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.200000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.200000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +BaselineHeight = 1.200000 BELOW BASELINE +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.200000 PointCopyY[3] = 0.800000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.200000 PointCopyY[3] = 0.800000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.200000 PointCopyY[3] = 0.800000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.200000 +BaselineHeight = 1.000000 BELOW BASELINE +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.800000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.800000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.800000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.200000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.800000 PointCopyY[3] = 0.800000 +todo = 1 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.800000 PointCopyY[3] = 0.800000 +MoveMisfit[2][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 0.800000 PointY[3] = 0.800000 +acrossA = 0.100000 acrossB = -0.100000 +FracDepth[99] = 1.000000 betweenpercent = -1.000001 +Forcing Right line to include the Last point +Idist = 1.200000 misfitTemp = 0.200000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =10.537935, Avmisfit[0] = 0.162122 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.200000, Avmisfit[2] = 0.200000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.162122 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.200000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.800000 PointCopyY[3] = 0.800000 +MoveMisfit[2][6] = 0.428983 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.800000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.800000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.800000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +MoveMisfit[1][6] = inf +MoveMisfit[2][6] = 0.428983 +Minimum misfit = 0.428983 cont = 2 No. = 6 +Existing point was at least equal best fit, no change +But, Move[3] shrunk anyway to 0.050000 +Itteration = 1 + +Point 0 +Move[0] = 0.200000 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =10.537935, Avmisfit[0] = 0.162122 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.162122 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.228982 + +MotionUnit = 0.100000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.300000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.300000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.300000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =10.417785, Avmisfit[0] = 0.160274 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =10.028611, Avmisfit[3] = 0.055715 +Avmisfit[0] = 0.160274 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.055715 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.300000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = 0.282849 + +MotionUnit = 0.100000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.300000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.300000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.300000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =10.720995, Avmisfit[0] = 0.164938 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =5.641093, Avmisfit[3] = 0.031339 +Avmisfit[0] = 0.164938 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.031339 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.300000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = 0.263138 + +MotionUnit = 0.100000 +PointCopyX[0] = 0.300000 PointCopyY[0] = 0.300000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.300000 PointCopyY[0] = 0.300000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.300000 PointY[0] = 0.300000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =12.793344, Avmisfit[0] = 0.196821 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.196821 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.300000 PointCopyY[0] = 0.300000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = 0.263681 + +MotionUnit = 0.000000 +BaselineHeight = 0.300000 BELOW BASELINE +PointCopyX[0] = 0.300000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.300000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.300000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.100000 +BaselineHeight = 0.300000 BELOW BASELINE +PointCopyX[0] = 0.300000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.300000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.300000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.100000 +BaselineHeight = 0.200000 BELOW BASELINE +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.100000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =10.417785, Avmisfit[0] = 0.160274 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.160274 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = 0.227134 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.200000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =10.417785, Avmisfit[0] = 0.160274 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =5.014306, Avmisfit[3] = 0.027857 +Avmisfit[0] = 0.160274 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.027857 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = 0.254991 + +MotionUnit = 0.200000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.400000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.400000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.400000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =14.851660, Avmisfit[0] = 0.228487 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =18.051502, Avmisfit[3] = 0.100286 +Avmisfit[0] = 0.228487 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.100286 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.400000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = 0.395634 + +MotionUnit = 0.200000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.400000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.400000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.400000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =11.032809, Avmisfit[0] = 0.169736 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =11.282185, Avmisfit[3] = 0.062679 +Avmisfit[0] = 0.169736 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.062679 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.400000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = 0.299275 + +MotionUnit = 0.200000 +PointCopyX[0] = 0.400000 PointCopyY[0] = 0.400000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.400000 PointCopyY[0] = 0.400000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.400000 PointY[0] = 0.400000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =17.846218, Avmisfit[0] = 0.274557 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.274557 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.400000 PointCopyY[0] = 0.400000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = 0.341418 + +MotionUnit = 0.000000 +BaselineHeight = 0.400000 BELOW BASELINE +PointCopyX[0] = 0.400000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.400000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.400000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.200000 +BaselineHeight = 0.400000 BELOW BASELINE +PointCopyX[0] = 0.400000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.400000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.400000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.200000 +BaselineHeight = 0.200000 BELOW BASELINE +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.200000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =12.238276, Avmisfit[0] = 0.188281 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.188281 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = 0.255142 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.200000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =13.171628, Avmisfit[0] = 0.202640 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =9.025751, Avmisfit[3] = 0.050143 +Avmisfit[0] = 0.202640 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.050143 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = 0.319644 + +MotionUnit = 0.400000 +OUTSIDEBOX +PointCopyX[0] = -0.200000 PointCopyY[0] = 0.600000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = -0.200000 PointCopyY[0] = 0.600000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = -0.200000 PointCopyY[0] = 0.600000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.400000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.600000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.600000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.600000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =12.793344, Avmisfit[0] = 0.196821 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =22.564367, Avmisfit[3] = 0.125358 +Avmisfit[0] = 0.196821 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.125358 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.600000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = 0.389039 + +MotionUnit = 0.400000 +PointCopyX[0] = 0.600000 PointCopyY[0] = 0.600000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.600000 PointCopyY[0] = 0.600000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.600000 PointY[0] = 0.600000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =44.809566, Avmisfit[0] = 0.689378 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.689378 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.600000 PointCopyY[0] = 0.600000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = 0.756238 + +MotionUnit = 0.000000 +BaselineHeight = 0.600000 BELOW BASELINE +PointCopyX[0] = 0.600000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.600000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.600000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.400000 +OUTSIDEBOX +BaselineHeight = 0.600000 BELOW BASELINE +PointCopyX[0] = 0.600000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.600000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.600000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.400000 +OUTSIDEBOX +BaselineHeight = 0.200000 BELOW BASELINE +PointCopyX[0] = 0.200000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.400000 +OUTSIDEBOX +PointCopyX[0] = -0.200000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = -0.200000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = -0.200000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = -0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = -0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +MoveMisfit[0][0] = 0.282849 +MoveMisfit[0][1] = 0.263138 +MoveMisfit[0][2] = 0.263681 +MoveMisfit[0][6] = 0.227134 +MoveMisfit[0][7] = 0.254991 +MoveMisfit[1][0] = 0.395634 +MoveMisfit[1][1] = 0.299275 +MoveMisfit[1][2] = 0.341418 +MoveMisfit[1][6] = 0.255142 +MoveMisfit[1][7] = 0.319644 +MoveMisfit[2][1] = 0.389039 +MoveMisfit[2][2] = 0.756238 +Minimum misfit = 0.227134 cont = 0 No. = 6 +Point 0 location changed from (0.200000,0.200000) to (0.100000,0.100000) +MISFIT reduced to 0.227134 +Move[0] changed to 0.100000 + +Point 1 +Move[1] = 0.100000 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =10.417785, Avmisfit[0] = 0.160274 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.160274 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.227134 + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.050000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.050000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.050000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =15.550575, Avmisfit[0] = 0.213022 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.213022 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.050000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = 0.238648 + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.100000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =13.809236, Avmisfit[0] = 0.189168 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.189168 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = 0.214795 + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.150000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.150000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.150000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =12.073921, Avmisfit[0] = 0.165396 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.165396 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.150000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = 0.191023 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.150000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.150000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.150000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =8.993171, Avmisfit[0] = 0.138356 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.138356 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.150000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = 0.205217 + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.150000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.150000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.150000 PointY[1] = 0.850000 +PointX[2] = 1.000000 PointY[2] = 0.850000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.150000 acrossB = 0.150000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 61.000000, misfit[0] =7.645688, Avmisfit[0] = 0.125339 +count[1] = 39.000000, misfit[1] =4.187642, Avmisfit[1] = 0.107375 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.125339 Avmisfit[1] = 0.107375 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.150000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = 0.232715 + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.100000 PointY[1] = 0.850000 +PointX[2] = 1.000000 PointY[2] = 0.850000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.150000 acrossB = 0.150000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 61.000000, misfit[0] =8.958224, Avmisfit[0] = 0.146856 +count[1] = 39.000000, misfit[1] =4.187642, Avmisfit[1] = 0.107375 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.146856 Avmisfit[1] = 0.107375 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = 0.254232 + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.050000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.050000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.050000 PointY[1] = 0.850000 +PointX[2] = 1.000000 PointY[2] = 0.850000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.150000 acrossB = 0.150000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 61.000000, misfit[0] =10.279580, Avmisfit[0] = 0.168518 +count[1] = 39.000000, misfit[1] =4.187642, Avmisfit[1] = 0.107375 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.168518 Avmisfit[1] = 0.107375 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.050000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = 0.275893 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.050000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.050000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.050000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =11.849738, Avmisfit[0] = 0.182304 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.182304 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.050000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = 0.249164 + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.000000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 1.000000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.000000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = nan +Forcing Right line to include the Last point +Idist = nan misfitTemp = nan +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =37.508820, Avmisfit[0] = 0.378877 +count[1] = 1.000000, misfit[1] =0.000000, Avmisfit[1] = 0.000000 +count[2] = 1.000000, misfit[2] =nan, Avmisfit[2] = nan +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.378877 Avmisfit[1] = 0.000000 Avmisfit[2] = nan Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = nan + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.100000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 1.000000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.000000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = nan +Forcing Right line to include the Last point +Idist = nan misfitTemp = nan +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =31.686863, Avmisfit[0] = 0.320069 +count[1] = 1.000000, misfit[1] =0.000000, Avmisfit[1] = 0.000000 +count[2] = 1.000000, misfit[2] =nan, Avmisfit[2] = nan +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.320069 Avmisfit[1] = 0.000000 Avmisfit[2] = nan Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = nan + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.200000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 1.000000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.000000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = nan +Forcing Right line to include the Last point +Idist = nan misfitTemp = nan +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =25.890789, Avmisfit[0] = 0.261523 +count[1] = 1.000000, misfit[1] =0.000000, Avmisfit[1] = 0.000000 +count[2] = 1.000000, misfit[2] =nan, Avmisfit[2] = nan +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.261523 Avmisfit[1] = 0.000000 Avmisfit[2] = nan Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = nan + +MotionUnit = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.200000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =7.581141, Avmisfit[0] = 0.116633 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.116633 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = 0.183493 + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.200000 PointY[1] = 0.800000 +PointX[2] = 1.000000 PointY[2] = 0.800000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.200000 acrossB = 0.200000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 58.000000, misfit[0] =5.457662, Avmisfit[0] = 0.094098 +count[1] = 42.000000, misfit[1] =6.213890, Avmisfit[1] = 0.147950 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.094098 Avmisfit[1] = 0.147950 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = 0.242047 + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.100000 PointY[1] = 0.800000 +PointX[2] = 1.000000 PointY[2] = 0.800000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.200000 acrossB = 0.200000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 58.000000, misfit[0] =7.941655, Avmisfit[0] = 0.136925 +count[1] = 42.000000, misfit[1] =6.213890, Avmisfit[1] = 0.147950 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.136925 Avmisfit[1] = 0.147950 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = 0.284875 + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.000000 PointY[1] = 0.800000 +PointX[2] = 1.000000 PointY[2] = 0.800000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.200000 acrossB = 0.200000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 58.000000, misfit[0] =10.469790, Avmisfit[0] = 0.180514 +count[1] = 42.000000, misfit[1] =6.213890, Avmisfit[1] = 0.147950 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.180514 Avmisfit[1] = 0.147950 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = 0.328463 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.000000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =13.288300, Avmisfit[0] = 0.204435 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.204435 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.000000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = 0.271296 + +MotionUnit = 0.200000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =4.824216, Avmisfit[0] = 0.074219 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.074219 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = 0.141079 + +MotionUnit = 0.200000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.300000 PointY[1] = 0.700000 +PointX[2] = 1.000000 PointY[2] = 0.700000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.300000 acrossB = 0.300000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 51.000000, misfit[0] =1.806373, Avmisfit[0] = 0.035419 +count[1] = 49.000000, misfit[1] =10.802149, Avmisfit[1] = 0.220452 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.035419 Avmisfit[1] = 0.220452 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = 0.255871 + +MotionUnit = 0.200000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.100000 PointY[1] = 0.700000 +PointX[2] = 1.000000 PointY[2] = 0.700000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.300000 acrossB = 0.300000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 51.000000, misfit[0] =5.829999, Avmisfit[0] = 0.114314 +count[1] = 49.000000, misfit[1] =10.802149, Avmisfit[1] = 0.220452 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.114314 Avmisfit[1] = 0.220452 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = 0.334766 + +MotionUnit = 0.200000 +OUTSIDEBOX +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +MoveMisfit[0][0] = 0.238648 +MoveMisfit[0][1] = 0.214795 +MoveMisfit[0][2] = 0.191023 +MoveMisfit[0][3] = 0.205217 +MoveMisfit[0][4] = 0.232715 +MoveMisfit[0][5] = 0.254232 +MoveMisfit[0][6] = 0.275893 +MoveMisfit[0][7] = 0.249164 +MoveMisfit[1][3] = 0.183493 +MoveMisfit[1][4] = 0.242047 +MoveMisfit[1][5] = 0.284875 +MoveMisfit[1][6] = 0.328463 +MoveMisfit[1][7] = 0.271296 +MoveMisfit[2][3] = 0.141079 +MoveMisfit[2][4] = 0.255871 +MoveMisfit[2][5] = 0.334766 +Minimum misfit = 0.141079 cont = 2 No. = 3 +Point 1 location changed from (0.100000,0.900000) to (0.300000,0.900000) +MISFIT reduced to 0.141079 +Move[1] changed to 0.200000 + +Point 2 +Move[2] = 0.050000 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =4.824216, Avmisfit[0] = 0.074219 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.074219 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.141079 + +MotionUnit = 0.025000 +BaselineHeight = 0.975000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.025000 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +BaselineHeight = 1.025000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.025000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +BaselineHeight = 1.025000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.025000 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.025000 +BaselineHeight = 0.975000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.975000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.050000 +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.050000 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +BaselineHeight = 1.050000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.050000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +BaselineHeight = 1.050000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.050000 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.050000 +BaselineHeight = 0.950000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.950000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.100000 +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 0.900000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 0.900000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.300000 PointY[1] = 1.000000 +PointX[2] = 0.900000 PointY[2] = 1.000000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.000000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = nan +Forcing Right line to include the Last point +Idist = nan misfitTemp = nan +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =20.151505, Avmisfit[0] = 0.203551 +count[1] = 1.000000, misfit[1] =0.000000, Avmisfit[1] = 0.000000 +count[2] = 1.000000, misfit[2] =nan, Avmisfit[2] = nan +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.203551 Avmisfit[1] = 0.000000 Avmisfit[2] = nan Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 0.900000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = nan + +MotionUnit = 0.100000 +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.300000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 1.000000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.000000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = nan +Forcing Right line to include the Last point +Idist = nan misfitTemp = nan +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =20.151505, Avmisfit[0] = 0.203551 +count[1] = 1.000000, misfit[1] =0.000000, Avmisfit[1] = 0.000000 +count[2] = 1.000000, misfit[2] =nan, Avmisfit[2] = nan +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.203551 Avmisfit[1] = 0.000000 Avmisfit[2] = nan Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = nan + +MotionUnit = 0.100000 +OUTSIDEBOX +BaselineHeight = 1.100000 BELOW BASELINE +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.100000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.100000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.100000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.100000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.100000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.100000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.100000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +BaselineHeight = 1.100000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.100000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.100000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.100000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.100000 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.100000 +BaselineHeight = 0.900000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 0.900000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 0.900000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 0.900000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.900000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.900000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.900000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +Minimum misfit = 1000000.000000 cont = 2 No. = 3 +Existing point was at least equal best fit, no change +But, Move[2] shrunk anyway to 0.025000 + +Point 3 +Move[3] = 0.050000 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =4.824216, Avmisfit[0] = 0.074219 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.074219 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.141079 + +MotionUnit = 0.025000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 1.025000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 1.025000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 1.025000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.025000 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.025000 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.025000 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 1.025000 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 1.025000 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 1.025000 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.025000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +BaselineHeight = 1.025000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 0.975000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 0.975000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 0.975000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.025000 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.975000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.975000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.975000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.025000 +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 0.975000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 0.975000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 0.975000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 1.050000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 1.050000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 1.050000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.050000 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.050000 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.050000 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 1.050000 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 1.050000 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 1.050000 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.050000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +BaselineHeight = 1.050000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 0.950000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 0.950000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 0.950000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.050000 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.950000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.950000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.950000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.050000 +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 0.950000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 0.950000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 0.950000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.900000 PointCopyY[3] = 1.100000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.900000 PointCopyY[3] = 1.100000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.900000 PointCopyY[3] = 1.100000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.100000 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.100000 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.100000 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.100000 PointCopyY[3] = 1.100000 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.100000 PointCopyY[3] = 1.100000 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.100000 PointCopyY[3] = 1.100000 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.100000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.100000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.100000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.100000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +BaselineHeight = 1.100000 BELOW BASELINE +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.100000 PointCopyY[3] = 0.900000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.100000 PointCopyY[3] = 0.900000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.100000 PointCopyY[3] = 0.900000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.100000 +BaselineHeight = 1.000000 BELOW BASELINE +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.900000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.900000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.900000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.100000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.900000 PointCopyY[3] = 0.900000 +todo = 1 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.900000 PointCopyY[3] = 0.900000 +MoveMisfit[2][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 0.900000 PointY[3] = 0.900000 +acrossA = 0.100000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = inf +Forcing Right line to include the Last point +Idist = -inf misfitTemp = inf +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =4.824216, Avmisfit[0] = 0.074219 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =inf, Avmisfit[2] = inf +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.074219 Avmisfit[1] = 0.066860 Avmisfit[2] = inf Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.900000 PointCopyY[3] = 0.900000 +MoveMisfit[2][6] = inf + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.900000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.900000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.900000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +MoveMisfit[2][6] = inf +Minimum misfit = 1000000.000000 cont = 2 No. = 3 +Existing point was at least equal best fit, no change +But, Move[3] shrunk anyway to 0.025000 +Itteration = 2 + +Point 0 +Move[0] = 0.100000 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =4.824216, Avmisfit[0] = 0.074219 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.074219 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.141079 + +MotionUnit = 0.050000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.150000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.150000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.050000 PointY[0] = 0.150000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =5.771738, Avmisfit[0] = 0.088796 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =4.750398, Avmisfit[3] = 0.026391 +Avmisfit[0] = 0.088796 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.026391 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.150000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = 0.182047 + +MotionUnit = 0.050000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.150000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.150000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.150000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =4.843245, Avmisfit[0] = 0.074511 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =2.507154, Avmisfit[3] = 0.013929 +Avmisfit[0] = 0.074511 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.013929 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.150000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = 0.155300 + +MotionUnit = 0.050000 +PointCopyX[0] = 0.150000 PointCopyY[0] = 0.150000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.150000 PointCopyY[0] = 0.150000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.150000 PointY[0] = 0.150000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =5.075515, Avmisfit[0] = 0.078085 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.078085 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.150000 PointCopyY[0] = 0.150000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = 0.144945 + +MotionUnit = 0.000000 +BaselineHeight = 0.150000 BELOW BASELINE +PointCopyX[0] = 0.150000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.150000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.150000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.050000 +BaselineHeight = 0.150000 BELOW BASELINE +PointCopyX[0] = 0.150000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.150000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.150000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.050000 +BaselineHeight = 0.100000 BELOW BASELINE +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.050000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.050000 PointY[0] = 0.050000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =5.029658, Avmisfit[0] = 0.077379 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.077379 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = 0.144240 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.050000 PointY[0] = 0.100000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =5.292939, Avmisfit[0] = 0.081430 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =2.375197, Avmisfit[3] = 0.013196 +Avmisfit[0] = 0.081430 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.013196 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = 0.161486 + +MotionUnit = 0.100000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.200000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =8.571792, Avmisfit[0] = 0.131874 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =9.025751, Avmisfit[3] = 0.050143 +Avmisfit[0] = 0.131874 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.050143 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = 0.248877 + +MotionUnit = 0.100000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.200000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =4.949188, Avmisfit[0] = 0.076141 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =5.014306, Avmisfit[3] = 0.027857 +Avmisfit[0] = 0.076141 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.027857 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = 0.170859 + +MotionUnit = 0.100000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =5.746917, Avmisfit[0] = 0.088414 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.088414 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = 0.155275 + +MotionUnit = 0.000000 +BaselineHeight = 0.200000 BELOW BASELINE +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.100000 +BaselineHeight = 0.200000 BELOW BASELINE +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.100000 +BaselineHeight = 0.100000 BELOW BASELINE +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.100000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =5.771737, Avmisfit[0] = 0.088796 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.088796 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = 0.155656 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.100000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =6.996761, Avmisfit[0] = 0.107642 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =4.512875, Avmisfit[3] = 0.025072 +Avmisfit[0] = 0.107642 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.025072 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = 0.199574 + +MotionUnit = 0.200000 +OUTSIDEBOX +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.300000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.300000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.300000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.200000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.300000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.300000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.300000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =5.771738, Avmisfit[0] = 0.088796 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =10.028611, Avmisfit[3] = 0.055715 +Avmisfit[0] = 0.088796 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.055715 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.300000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = 0.211371 + +MotionUnit = 0.200000 +PointCopyX[0] = 0.300000 PointCopyY[0] = 0.300000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.300000 PointCopyY[0] = 0.300000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.300000 PointY[0] = 0.300000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =8.372828, Avmisfit[0] = 0.128813 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.128813 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.300000 PointCopyY[0] = 0.300000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = 0.195673 + +MotionUnit = 0.000000 +BaselineHeight = 0.300000 BELOW BASELINE +PointCopyX[0] = 0.300000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.300000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.300000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +BaselineHeight = 0.300000 BELOW BASELINE +PointCopyX[0] = 0.300000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.300000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.300000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +BaselineHeight = 0.100000 BELOW BASELINE +PointCopyX[0] = 0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +PointCopyX[0] = -0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +MoveMisfit[0][0] = 0.182047 +MoveMisfit[0][1] = 0.155300 +MoveMisfit[0][2] = 0.144945 +MoveMisfit[0][6] = 0.144240 +MoveMisfit[0][7] = 0.161486 +MoveMisfit[1][0] = 0.248877 +MoveMisfit[1][1] = 0.170859 +MoveMisfit[1][2] = 0.155275 +MoveMisfit[1][6] = 0.155656 +MoveMisfit[1][7] = 0.199574 +MoveMisfit[2][1] = 0.211371 +MoveMisfit[2][2] = 0.195673 +Minimum misfit = 0.144240 cont = 0 No. = 6 +Existing point was at least equal best fit, no change +But, Move[0] shrunk anyway to 0.050000 + +Point 1 +Move[1] = 0.200000 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =4.824216, Avmisfit[0] = 0.074219 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.074219 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.141079 + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.200000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 1.000000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.000000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = nan +Forcing Right line to include the Last point +Idist = nan misfitTemp = nan +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =25.890785, Avmisfit[0] = 0.261523 +count[1] = 1.000000, misfit[1] =0.000000, Avmisfit[1] = 0.000000 +count[2] = 1.000000, misfit[2] =nan, Avmisfit[2] = nan +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.261523 Avmisfit[1] = 0.000000 Avmisfit[2] = nan Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = nan + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.300000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 1.000000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.000000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = nan +Forcing Right line to include the Last point +Idist = nan misfitTemp = nan +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =20.151505, Avmisfit[0] = 0.203551 +count[1] = 1.000000, misfit[1] =0.000000, Avmisfit[1] = 0.000000 +count[2] = 1.000000, misfit[2] =nan, Avmisfit[2] = nan +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.203551 Avmisfit[1] = 0.000000 Avmisfit[2] = nan Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = nan + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.400000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 1.000000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.000000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = nan +Forcing Right line to include the Last point +Idist = nan misfitTemp = nan +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =14.562518, Avmisfit[0] = 0.147096 +count[1] = 1.000000, misfit[1] =0.000000, Avmisfit[1] = 0.000000 +count[2] = 1.000000, misfit[2] =nan, Avmisfit[2] = nan +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.147096 Avmisfit[1] = 0.000000 Avmisfit[2] = nan Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = nan + +MotionUnit = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.400000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =2.341896, Avmisfit[0] = 0.036029 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.036029 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = 0.102890 + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.400000 PointY[1] = 0.800000 +PointX[2] = 1.000000 PointY[2] = 0.800000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.200000 acrossB = 0.200000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 58.000000, misfit[0] =1.391294, Avmisfit[0] = 0.023988 +count[1] = 42.000000, misfit[1] =6.213890, Avmisfit[1] = 0.147950 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.023988 Avmisfit[1] = 0.147950 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = 0.171938 + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.300000 PointY[1] = 0.800000 +PointX[2] = 1.000000 PointY[2] = 0.800000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.200000 acrossB = 0.200000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 58.000000, misfit[0] =3.099980, Avmisfit[0] = 0.053448 +count[1] = 42.000000, misfit[1] =6.213890, Avmisfit[1] = 0.147950 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.053448 Avmisfit[1] = 0.147950 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = 0.201398 + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.200000 PointY[1] = 0.800000 +PointX[2] = 1.000000 PointY[2] = 0.800000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.200000 acrossB = 0.200000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 58.000000, misfit[0] =5.457661, Avmisfit[0] = 0.094098 +count[1] = 42.000000, misfit[1] =6.213890, Avmisfit[1] = 0.147950 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.094098 Avmisfit[1] = 0.147950 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = 0.242047 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.200000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =7.581141, Avmisfit[0] = 0.116633 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.116633 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.200000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = 0.183493 + +MotionUnit = 0.200000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =2.328166, Avmisfit[0] = 0.035818 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.035818 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = 0.102678 + +MotionUnit = 0.200000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.500000 PointY[1] = 0.700000 +PointX[2] = 1.000000 PointY[2] = 0.700000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.300000 acrossB = 0.300000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 51.000000, misfit[0] =4.107832, Avmisfit[0] = 0.080546 +count[1] = 49.000000, misfit[1] =10.802149, Avmisfit[1] = 0.220452 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.080546 Avmisfit[1] = 0.220452 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = 0.300998 + +MotionUnit = 0.200000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.300000 PointY[1] = 0.700000 +PointX[2] = 1.000000 PointY[2] = 0.700000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.300000 acrossB = 0.300000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 51.000000, misfit[0] =1.806373, Avmisfit[0] = 0.035419 +count[1] = 49.000000, misfit[1] =10.802149, Avmisfit[1] = 0.220452 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.035419 Avmisfit[1] = 0.220452 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = 0.255871 + +MotionUnit = 0.200000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.100000 PointY[1] = 0.700000 +PointX[2] = 1.000000 PointY[2] = 0.700000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.300000 acrossB = 0.300000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 51.000000, misfit[0] =5.829999, Avmisfit[0] = 0.114314 +count[1] = 49.000000, misfit[1] =10.802149, Avmisfit[1] = 0.220452 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.114314 Avmisfit[1] = 0.220452 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = 0.334766 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =10.417784, Avmisfit[0] = 0.160274 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.160274 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = 0.227134 + +MotionUnit = 0.400000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 1.300000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.300000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 1.300000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.300000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 1.300000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.300000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.400000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.300000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.300000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.300000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.300000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.300000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.300000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.400000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 1.300000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.300000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 1.300000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.300000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 1.300000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.300000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.700000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =7.978023, Avmisfit[0] = 0.122739 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.122739 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = 0.189599 + +MotionUnit = 0.400000 +BaselineHeight = 0.700000 BELOW BASELINE +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 0.500000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.500000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 0.500000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.500000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 0.500000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.500000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.400000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.500000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.500000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.500000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.500000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.300000 PointY[1] = 0.500000 +PointX[2] = 1.000000 PointY[2] = 0.500000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.500000 acrossB = 0.500000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 36.000000, misfit[0] =1.520791, Avmisfit[0] = 0.042244 +count[1] = 64.000000, misfit[1] =22.125763, Avmisfit[1] = 0.345715 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.042244 Avmisfit[1] = 0.345715 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.500000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.500000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = 0.387959 + +MotionUnit = 0.400000 +OUTSIDEBOX +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 0.500000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.500000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 0.500000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.500000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 0.500000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.500000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = -0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +MoveMisfit[0][3] = 0.102890 +MoveMisfit[0][4] = 0.171938 +MoveMisfit[0][5] = 0.201398 +MoveMisfit[0][6] = 0.242047 +MoveMisfit[0][7] = 0.183493 +MoveMisfit[1][3] = 0.102678 +MoveMisfit[1][4] = 0.300998 +MoveMisfit[1][5] = 0.255871 +MoveMisfit[1][6] = 0.334766 +MoveMisfit[1][7] = 0.227134 +MoveMisfit[2][3] = 0.189599 +MoveMisfit[2][5] = 0.387959 +Minimum misfit = 0.102678 cont = 1 No. = 3 +Point 1 location changed from (0.300000,0.900000) to (0.500000,0.900000) +MISFIT reduced to 0.102678 + +Point 2 +Move[2] = 0.025000 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =2.328166, Avmisfit[0] = 0.035818 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.035818 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.102678 + +MotionUnit = 0.012500 +BaselineHeight = 0.987500 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.912500 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.912500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.912500 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.912500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.912500 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.912500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.012500 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.912500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.912500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.912500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.912500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.912500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.912500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +BaselineHeight = 1.012500 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.912500 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.912500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.912500 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.912500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.912500 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.912500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.012500 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +BaselineHeight = 1.012500 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.887500 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.887500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.887500 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.887500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.887500 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.887500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.012500 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.887500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.887500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.887500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.887500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.887500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.887500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.012500 +BaselineHeight = 0.987500 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.887500 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.887500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.887500 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.887500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.887500 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.887500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.987500 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.025000 +BaselineHeight = 0.975000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.025000 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +BaselineHeight = 1.025000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.025000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +BaselineHeight = 1.025000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.025000 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.025000 +BaselineHeight = 0.975000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.975000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.050000 +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.050000 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +BaselineHeight = 1.050000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.050000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +BaselineHeight = 1.050000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.050000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.050000 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.050000 +BaselineHeight = 0.950000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.950000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.950000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +Minimum misfit = 1000000.000000 cont = 1 No. = 3 +Existing point was at least equal best fit, no change +But, Move[2] shrunk anyway to 0.012500 + +Point 3 +Move[3] = 0.025000 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =2.328166, Avmisfit[0] = 0.035818 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.035818 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.102678 + +MotionUnit = 0.012500 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 1.012500 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 1.012500 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 1.012500 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.012500 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.012500 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.012500 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 1.012500 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 1.012500 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 1.012500 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.012500 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +BaselineHeight = 1.012500 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 0.987500 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 0.987500 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 0.987500 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.012500 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.987500 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.987500 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.987500 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.012500 +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 0.987500 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 0.987500 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 0.987500 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 1.025000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 1.025000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 1.025000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.025000 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.025000 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.025000 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 1.025000 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 1.025000 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 1.025000 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.025000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +BaselineHeight = 1.025000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 0.975000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 0.975000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 0.975000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.025000 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.975000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.975000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.975000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.025000 +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 0.975000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 0.975000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 0.975000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 1.050000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 1.050000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 1.050000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.050000 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.050000 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.050000 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 1.050000 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 1.050000 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 1.050000 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.050000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +BaselineHeight = 1.050000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 0.950000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 0.950000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.050000 PointCopyY[3] = 0.950000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.050000 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.950000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.950000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.950000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.050000 +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 0.950000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 0.950000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 0.950000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.950000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +Minimum misfit = 1000000.000000 cont = 1 No. = 3 +Existing point was at least equal best fit, no change +But, Move[3] shrunk anyway to 0.012500 +Itteration = 3 + +Point 0 +Move[0] = 0.050000 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =2.328166, Avmisfit[0] = 0.035818 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.035818 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.102678 + +MotionUnit = 0.025000 +PointCopyX[0] = 0.075000 PointCopyY[0] = 0.125000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.075000 PointCopyY[0] = 0.125000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.075000 PointY[0] = 0.125000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =0.905559, Avmisfit[0] = 0.013932 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =2.439392, Avmisfit[3] = 0.013552 +Avmisfit[0] = 0.013932 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.013552 +PointCopyX[0] = 0.075000 PointCopyY[0] = 0.125000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = 0.094344 + +MotionUnit = 0.025000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.125000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.125000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.125000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =1.853964, Avmisfit[0] = 0.028523 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =1.253577, Avmisfit[3] = 0.006964 +Avmisfit[0] = 0.028523 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.006964 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.125000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = 0.102347 + +MotionUnit = 0.025000 +PointCopyX[0] = 0.125000 PointCopyY[0] = 0.125000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.125000 PointCopyY[0] = 0.125000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.125000 PointY[0] = 0.125000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =2.802369, Avmisfit[0] = 0.043113 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.043113 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.125000 PointCopyY[0] = 0.125000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = 0.109974 + +MotionUnit = 0.000000 +BaselineHeight = 0.125000 BELOW BASELINE +PointCopyX[0] = 0.125000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.125000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.125000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.025000 +BaselineHeight = 0.125000 BELOW BASELINE +PointCopyX[0] = 0.125000 PointCopyY[0] = 0.075000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.125000 PointCopyY[0] = 0.075000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.125000 PointCopyY[0] = 0.075000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.025000 +BaselineHeight = 0.100000 BELOW BASELINE +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.075000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.075000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.075000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.025000 +PointCopyX[0] = 0.075000 PointCopyY[0] = 0.075000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.075000 PointCopyY[0] = 0.075000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.075000 PointY[0] = 0.075000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =1.882704, Avmisfit[0] = 0.028965 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.028965 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.075000 PointCopyY[0] = 0.075000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = 0.095825 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.075000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.075000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.075000 PointY[0] = 0.100000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =1.409400, Avmisfit[0] = 0.021683 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =1.219695, Avmisfit[3] = 0.006776 +Avmisfit[0] = 0.021683 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.006776 +PointCopyX[0] = 0.075000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = 0.095320 + +MotionUnit = 0.050000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.150000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.150000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.050000 PointY[0] = 0.150000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =1.102184, Avmisfit[0] = 0.016957 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =4.750398, Avmisfit[3] = 0.026391 +Avmisfit[0] = 0.016957 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.026391 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.150000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = 0.110208 + +MotionUnit = 0.050000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.150000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.150000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.150000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =1.348147, Avmisfit[0] = 0.020741 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =2.507154, Avmisfit[3] = 0.013929 +Avmisfit[0] = 0.020741 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.013929 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.150000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = 0.101530 + +MotionUnit = 0.050000 +PointCopyX[0] = 0.150000 PointCopyY[0] = 0.150000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.150000 PointCopyY[0] = 0.150000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.150000 PointY[0] = 0.150000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =3.308186, Avmisfit[0] = 0.050895 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.050895 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.150000 PointCopyY[0] = 0.150000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = 0.117756 + +MotionUnit = 0.000000 +BaselineHeight = 0.150000 BELOW BASELINE +PointCopyX[0] = 0.150000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.150000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.150000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.050000 +BaselineHeight = 0.150000 BELOW BASELINE +PointCopyX[0] = 0.150000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.150000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.150000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.050000 +BaselineHeight = 0.100000 BELOW BASELINE +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.050000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.050000 PointY[0] = 0.050000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =1.463444, Avmisfit[0] = 0.022515 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.022515 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = 0.089375 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.050000 PointY[0] = 0.100000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =0.587580, Avmisfit[0] = 0.009040 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =2.375197, Avmisfit[3] = 0.013196 +Avmisfit[0] = 0.009040 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.013196 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = 0.089096 + +MotionUnit = 0.100000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.200000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =4.159595, Avmisfit[0] = 0.063994 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =9.025751, Avmisfit[3] = 0.050143 +Avmisfit[0] = 0.063994 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.050143 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = 0.180997 + +MotionUnit = 0.100000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.200000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =0.609515, Avmisfit[0] = 0.009377 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =5.014306, Avmisfit[3] = 0.027857 +Avmisfit[0] = 0.009377 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.027857 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = 0.104095 + +MotionUnit = 0.100000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =4.428208, Avmisfit[0] = 0.068126 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.068126 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = 0.134987 + +MotionUnit = 0.000000 +BaselineHeight = 0.200000 BELOW BASELINE +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.100000 +BaselineHeight = 0.200000 BELOW BASELINE +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.100000 +BaselineHeight = 0.100000 BELOW BASELINE +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.100000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =0.694801, Avmisfit[0] = 0.010689 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.010689 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = 0.077550 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.100000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =1.707719, Avmisfit[0] = 0.026273 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =4.512875, Avmisfit[3] = 0.025072 +Avmisfit[0] = 0.026273 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.025072 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = 0.118205 + +MoveMisfit[0][0] = 0.094344 +MoveMisfit[0][1] = 0.102347 +MoveMisfit[0][2] = 0.109974 +MoveMisfit[0][6] = 0.095825 +MoveMisfit[0][7] = 0.095320 +MoveMisfit[1][0] = 0.110208 +MoveMisfit[1][1] = 0.101530 +MoveMisfit[1][2] = 0.117756 +MoveMisfit[1][6] = 0.089375 +MoveMisfit[1][7] = 0.089096 +MoveMisfit[2][0] = 0.180997 +MoveMisfit[2][1] = 0.104095 +MoveMisfit[2][2] = 0.134987 +MoveMisfit[2][6] = 0.077550 +MoveMisfit[2][7] = 0.118205 +Minimum misfit = 0.077550 cont = 2 No. = 6 +Point 0 location changed from (0.100000,0.100000) to (0.000000,0.000000) +MISFIT reduced to 0.077550 +Move[0] changed to 0.100000 + +Point 1 +Move[1] = 0.200000 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =0.694801, Avmisfit[0] = 0.010689 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.010689 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.077550 + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.400000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 1.000000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.000000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = nan +Forcing Right line to include the Last point +Idist = nan misfitTemp = nan +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =15.364809, Avmisfit[0] = 0.155200 +count[1] = 1.000000, misfit[1] =0.000000, Avmisfit[1] = 0.000000 +count[2] = 1.000000, misfit[2] =nan, Avmisfit[2] = nan +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.155200 Avmisfit[1] = 0.000000 Avmisfit[2] = nan Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = nan + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 1.000000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.000000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = nan +Forcing Right line to include the Last point +Idist = nan misfitTemp = nan +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =9.170856, Avmisfit[0] = 0.092635 +count[1] = 1.000000, misfit[1] =0.000000, Avmisfit[1] = 0.000000 +count[2] = 1.000000, misfit[2] =nan, Avmisfit[2] = nan +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.092635 Avmisfit[1] = 0.000000 Avmisfit[2] = nan Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = nan + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.600000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 1.000000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.000000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = nan +Forcing Right line to include the Last point +Idist = nan misfitTemp = nan +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =7.579194, Avmisfit[0] = 0.076558 +count[1] = 1.000000, misfit[1] =0.000000, Avmisfit[1] = 0.000000 +count[2] = 1.000000, misfit[2] =nan, Avmisfit[2] = nan +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.076558 Avmisfit[1] = 0.000000 Avmisfit[2] = nan Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = nan + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.600000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =3.928071, Avmisfit[0] = 0.060432 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.060432 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = 0.127292 + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.600000 PointY[1] = 0.800000 +PointX[2] = 1.000000 PointY[2] = 0.800000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.200000 acrossB = 0.200000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 58.000000, misfit[0] =5.048821, Avmisfit[0] = 0.087049 +count[1] = 42.000000, misfit[1] =6.213890, Avmisfit[1] = 0.147950 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.087049 Avmisfit[1] = 0.147950 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = 0.234998 + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.800000 +PointX[2] = 1.000000 PointY[2] = 0.800000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.200000 acrossB = 0.200000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 58.000000, misfit[0] =2.158115, Avmisfit[0] = 0.037209 +count[1] = 42.000000, misfit[1] =6.213890, Avmisfit[1] = 0.147950 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.037209 Avmisfit[1] = 0.147950 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = 0.185159 + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.400000 PointY[1] = 0.800000 +PointX[2] = 1.000000 PointY[2] = 0.800000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.200000 acrossB = 0.200000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 58.000000, misfit[0] =0.732591, Avmisfit[0] = 0.012631 +count[1] = 42.000000, misfit[1] =6.213890, Avmisfit[1] = 0.147950 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.012631 Avmisfit[1] = 0.147950 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = 0.160581 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.400000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =2.538468, Avmisfit[0] = 0.039053 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.039053 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = 0.105914 + +MotionUnit = 0.200000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.700000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =7.161340, Avmisfit[0] = 0.110174 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.110174 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = 0.177035 + +MotionUnit = 0.200000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.700000 PointY[1] = 0.700000 +PointX[2] = 1.000000 PointY[2] = 0.700000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.300000 acrossB = 0.300000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 51.000000, misfit[0] =8.353625, Avmisfit[0] = 0.163797 +count[1] = 49.000000, misfit[1] =10.802149, Avmisfit[1] = 0.220452 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.163797 Avmisfit[1] = 0.220452 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = 0.384249 + +MotionUnit = 0.200000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.700000 +PointX[2] = 1.000000 PointY[2] = 0.700000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.300000 acrossB = 0.300000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 51.000000, misfit[0] =3.257230, Avmisfit[0] = 0.063867 +count[1] = 49.000000, misfit[1] =10.802149, Avmisfit[1] = 0.220452 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.063867 Avmisfit[1] = 0.220452 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = 0.284319 + +MotionUnit = 0.200000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.300000 PointY[1] = 0.700000 +PointX[2] = 1.000000 PointY[2] = 0.700000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.300000 acrossB = 0.300000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 51.000000, misfit[0] =1.839165, Avmisfit[0] = 0.036062 +count[1] = 49.000000, misfit[1] =10.802149, Avmisfit[1] = 0.220452 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.036062 Avmisfit[1] = 0.220452 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = 0.256514 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =5.771737, Avmisfit[0] = 0.088796 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.088796 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = 0.155656 + +MotionUnit = 0.400000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.300000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.300000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.300000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.300000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 1.300000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.300000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.400000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.300000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.300000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.300000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.300000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.300000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.300000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.400000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.900000 PointCopyY[1] = 1.300000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.300000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.900000 PointCopyY[1] = 1.300000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.300000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.900000 PointCopyY[1] = 1.300000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.300000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.900000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.900000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.900000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =13.627876, Avmisfit[0] = 0.209660 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.209660 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.900000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = 0.276520 + +MotionUnit = 0.400000 +BaselineHeight = 0.900000 BELOW BASELINE +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.900000 PointCopyY[1] = 0.500000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.500000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.900000 PointCopyY[1] = 0.500000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.500000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.900000 PointCopyY[1] = 0.500000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.500000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.400000 +BaselineHeight = 0.500000 BELOW BASELINE +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.500000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.500000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.500000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.500000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.500000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.500000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.400000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.500000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.500000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.500000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.500000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.100000 PointY[1] = 0.500000 +PointX[2] = 1.000000 PointY[2] = 0.500000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.500000 acrossB = 0.500000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 36.000000, misfit[0] =2.923339, Avmisfit[0] = 0.081204 +count[1] = 64.000000, misfit[1] =22.125763, Avmisfit[1] = 0.345715 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.081204 Avmisfit[1] = 0.345715 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.500000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.500000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = 0.426919 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.100000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =12.238276, Avmisfit[0] = 0.188281 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.188281 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.100000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = 0.255142 + +MoveMisfit[0][3] = 0.127292 +MoveMisfit[0][4] = 0.234998 +MoveMisfit[0][5] = 0.185159 +MoveMisfit[0][6] = 0.160581 +MoveMisfit[0][7] = 0.105914 +MoveMisfit[1][3] = 0.177035 +MoveMisfit[1][4] = 0.384249 +MoveMisfit[1][5] = 0.284319 +MoveMisfit[1][6] = 0.256514 +MoveMisfit[1][7] = 0.155656 +MoveMisfit[2][3] = 0.276520 +MoveMisfit[2][6] = 0.426919 +MoveMisfit[2][7] = 0.255142 +Minimum misfit = 0.105914 cont = 0 No. = 7 +Existing point was at least equal best fit, no change +But, Move[1] shrunk anyway to 0.100000 + +Point 2 +Move[2] = 0.012500 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =0.694801, Avmisfit[0] = 0.010689 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.010689 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.077550 + +MotionUnit = 0.006250 +BaselineHeight = 0.993750 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.906250 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.906250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.906250 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.906250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.906250 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.906250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.006250 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.906250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.906250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.906250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.906250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.906250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.906250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +BaselineHeight = 1.006250 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.906250 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.906250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.906250 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.906250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.906250 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.906250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.006250 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +BaselineHeight = 1.006250 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.893750 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.893750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.893750 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.893750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.893750 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.893750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.006250 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.893750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.893750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.893750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.893750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.893750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.893750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.006250 +BaselineHeight = 0.993750 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.893750 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.893750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.893750 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.893750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.893750 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.893750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.993750 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.012500 +BaselineHeight = 0.987500 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.912500 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.912500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.912500 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.912500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.912500 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.912500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.012500 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.912500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.912500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.912500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.912500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.912500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.912500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +BaselineHeight = 1.012500 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.912500 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.912500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.912500 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.912500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.912500 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.912500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.012500 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +BaselineHeight = 1.012500 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.887500 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.887500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.887500 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.887500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.887500 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.887500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.012500 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.887500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.887500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.887500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.887500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.887500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.887500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.012500 +BaselineHeight = 0.987500 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.887500 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.887500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.887500 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.887500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.887500 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.887500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.987500 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.025000 +BaselineHeight = 0.975000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.025000 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +BaselineHeight = 1.025000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.025000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +BaselineHeight = 1.025000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 1.025000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.025000 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.025000 +BaselineHeight = 0.975000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.875000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.875000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.975000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 0.975000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +Minimum misfit = 1000000.000000 cont = 0 No. = 7 +Existing point was at least equal best fit, no change +But, Move[2] shrunk anyway to 0.006250 + +Point 3 +Move[3] = 0.012500 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =0.694801, Avmisfit[0] = 0.010689 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.010689 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.077550 + +MotionUnit = 0.006250 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 1.006250 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 1.006250 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 1.006250 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.006250 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.006250 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.006250 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 1.006250 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 1.006250 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 1.006250 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.006250 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +BaselineHeight = 1.006250 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 0.993750 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 0.993750 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 0.993750 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.006250 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.993750 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.993750 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.993750 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.006250 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 0.993750 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 0.993750 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 0.993750 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 1.012500 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 1.012500 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 1.012500 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.012500 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.012500 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.012500 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 1.012500 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 1.012500 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 1.012500 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.012500 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +BaselineHeight = 1.012500 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 0.987500 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 0.987500 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 0.987500 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.012500 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.987500 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.987500 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.987500 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.012500 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 0.987500 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 0.987500 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 0.987500 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 1.025000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 1.025000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 1.025000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.025000 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.025000 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.025000 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 1.025000 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 1.025000 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 1.025000 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.025000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +BaselineHeight = 1.025000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 0.975000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 0.975000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.025000 PointCopyY[3] = 0.975000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.025000 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.975000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.975000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.975000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.025000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 0.975000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 0.975000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 0.975000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 0.975000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +Minimum misfit = 1000000.000000 cont = 0 No. = 7 +Existing point was at least equal best fit, no change +But, Move[3] shrunk anyway to 0.006250 +Itteration = 4 + +Point 0 +Move[0] = 0.100000 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =0.694801, Avmisfit[0] = 0.010689 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.010689 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.077550 + +MotionUnit = 0.050000 +OUTSIDEBOX +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.050000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.050000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =0.856820, Avmisfit[0] = 0.013182 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =2.256437, Avmisfit[3] = 0.012536 +Avmisfit[0] = 0.013182 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.012536 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = 0.092578 + +MotionUnit = 0.050000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.050000 PointY[0] = 0.050000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =1.463444, Avmisfit[0] = 0.022515 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.022515 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = 0.089375 + +MotionUnit = 0.000000 +BaselineHeight = 0.050000 BELOW BASELINE +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +BaselineHeight = 0.050000 BELOW BASELINE +PointCopyX[0] = 0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +PointCopyX[0] = -0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.100000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.100000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =1.707719, Avmisfit[0] = 0.026273 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =4.512875, Avmisfit[3] = 0.025072 +Avmisfit[0] = 0.026273 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.025072 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = 0.118205 + +MotionUnit = 0.100000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =2.328166, Avmisfit[0] = 0.035818 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.035818 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = 0.102678 + +MotionUnit = 0.000000 +BaselineHeight = 0.100000 BELOW BASELINE +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +BaselineHeight = 0.100000 BELOW BASELINE +PointCopyX[0] = 0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +PointCopyX[0] = -0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +PointCopyX[0] = -0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = -0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = -0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.200000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.200000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =4.159595, Avmisfit[0] = 0.063994 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =9.025751, Avmisfit[3] = 0.050143 +Avmisfit[0] = 0.063994 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.050143 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = 0.180997 + +MotionUnit = 0.200000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.200000 PointY[0] = 0.200000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =4.428208, Avmisfit[0] = 0.068126 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.068126 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = 0.134987 + +MotionUnit = 0.000000 +BaselineHeight = 0.200000 BELOW BASELINE +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +BaselineHeight = 0.200000 BELOW BASELINE +PointCopyX[0] = 0.200000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.200000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +PointCopyX[0] = -0.200000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = -0.200000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = -0.200000 PointCopyY[0] = -0.200000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.200000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = -0.200000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = -0.200000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +MoveMisfit[0][1] = 0.092578 +MoveMisfit[0][2] = 0.089375 +MoveMisfit[1][1] = 0.118205 +MoveMisfit[1][2] = 0.102678 +MoveMisfit[2][1] = 0.180997 +MoveMisfit[2][2] = 0.134987 +Minimum misfit = 0.089375 cont = 0 No. = 2 +Existing point was at least equal best fit, no change +But, Move[0] shrunk anyway to 0.050000 + +Point 1 +Move[1] = 0.100000 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =0.694801, Avmisfit[0] = 0.010689 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.010689 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.077550 + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.450000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =2.327285, Avmisfit[0] = 0.031881 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.031881 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = 0.057508 + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.401095, Avmisfit[0] = 0.005494 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005494 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = 0.031121 + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.550000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =1.598046, Avmisfit[0] = 0.021891 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.021891 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = 0.047518 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.550000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =2.311436, Avmisfit[0] = 0.035561 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.035561 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = 0.102421 + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.550000 PointY[1] = 0.850000 +PointX[2] = 1.000000 PointY[2] = 0.850000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.150000 acrossB = 0.150000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 61.000000, misfit[0] =2.953949, Avmisfit[0] = 0.048425 +count[1] = 39.000000, misfit[1] =4.187642, Avmisfit[1] = 0.107375 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.048425 Avmisfit[1] = 0.107375 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = 0.155801 + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.850000 +PointX[2] = 1.000000 PointY[2] = 0.850000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.150000 acrossB = 0.150000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 61.000000, misfit[0] =1.447955, Avmisfit[0] = 0.023737 +count[1] = 39.000000, misfit[1] =4.187642, Avmisfit[1] = 0.107375 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.023737 Avmisfit[1] = 0.107375 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = 0.131112 + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.450000 PointY[1] = 0.850000 +PointX[2] = 1.000000 PointY[2] = 0.850000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.150000 acrossB = 0.150000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 61.000000, misfit[0] =0.058039, Avmisfit[0] = 0.000951 +count[1] = 39.000000, misfit[1] =4.187642, Avmisfit[1] = 0.107375 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.000951 Avmisfit[1] = 0.107375 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = 0.108327 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.450000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =0.921834, Avmisfit[0] = 0.014182 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.014182 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = 0.081042 + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.400000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 1.000000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.000000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = nan +Forcing Right line to include the Last point +Idist = nan misfitTemp = nan +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =15.364809, Avmisfit[0] = 0.155200 +count[1] = 1.000000, misfit[1] =0.000000, Avmisfit[1] = 0.000000 +count[2] = 1.000000, misfit[2] =nan, Avmisfit[2] = nan +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.155200 Avmisfit[1] = 0.000000 Avmisfit[2] = nan Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = nan + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 1.000000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.000000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = nan +Forcing Right line to include the Last point +Idist = nan misfitTemp = nan +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =9.170856, Avmisfit[0] = 0.092635 +count[1] = 1.000000, misfit[1] =0.000000, Avmisfit[1] = 0.000000 +count[2] = 1.000000, misfit[2] =nan, Avmisfit[2] = nan +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.092635 Avmisfit[1] = 0.000000 Avmisfit[2] = nan Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = nan + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.600000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 1.000000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.000000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = nan +Forcing Right line to include the Last point +Idist = nan misfitTemp = nan +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =7.579194, Avmisfit[0] = 0.076558 +count[1] = 1.000000, misfit[1] =0.000000, Avmisfit[1] = 0.000000 +count[2] = 1.000000, misfit[2] =nan, Avmisfit[2] = nan +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.076558 Avmisfit[1] = 0.000000 Avmisfit[2] = nan Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = nan + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.600000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =3.928071, Avmisfit[0] = 0.060432 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.060432 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = 0.127292 + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.600000 PointY[1] = 0.800000 +PointX[2] = 1.000000 PointY[2] = 0.800000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.200000 acrossB = 0.200000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 58.000000, misfit[0] =5.048821, Avmisfit[0] = 0.087049 +count[1] = 42.000000, misfit[1] =6.213890, Avmisfit[1] = 0.147950 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.087049 Avmisfit[1] = 0.147950 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = 0.234998 + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.800000 +PointX[2] = 1.000000 PointY[2] = 0.800000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.200000 acrossB = 0.200000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 58.000000, misfit[0] =2.158115, Avmisfit[0] = 0.037209 +count[1] = 42.000000, misfit[1] =6.213890, Avmisfit[1] = 0.147950 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.037209 Avmisfit[1] = 0.147950 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = 0.185159 + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.400000 PointY[1] = 0.800000 +PointX[2] = 1.000000 PointY[2] = 0.800000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.200000 acrossB = 0.200000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 58.000000, misfit[0] =0.732591, Avmisfit[0] = 0.012631 +count[1] = 42.000000, misfit[1] =6.213890, Avmisfit[1] = 0.147950 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.012631 Avmisfit[1] = 0.147950 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.800000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.800000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = 0.160581 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.400000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =2.538468, Avmisfit[0] = 0.039053 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.039053 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = 0.105914 + +MotionUnit = 0.200000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.200000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 1.100000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.100000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.700000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =7.161340, Avmisfit[0] = 0.110174 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.110174 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = 0.177035 + +MotionUnit = 0.200000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.700000 PointY[1] = 0.700000 +PointX[2] = 1.000000 PointY[2] = 0.700000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.300000 acrossB = 0.300000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 51.000000, misfit[0] =8.353625, Avmisfit[0] = 0.163797 +count[1] = 49.000000, misfit[1] =10.802149, Avmisfit[1] = 0.220452 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.163797 Avmisfit[1] = 0.220452 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.700000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = 0.384249 + +MotionUnit = 0.200000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.700000 +PointX[2] = 1.000000 PointY[2] = 0.700000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.300000 acrossB = 0.300000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 51.000000, misfit[0] =3.257230, Avmisfit[0] = 0.063867 +count[1] = 49.000000, misfit[1] =10.802149, Avmisfit[1] = 0.220452 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.063867 Avmisfit[1] = 0.220452 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = 0.284319 + +MotionUnit = 0.200000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.300000 PointY[1] = 0.700000 +PointX[2] = 1.000000 PointY[2] = 0.700000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.300000 acrossB = 0.300000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 51.000000, misfit[0] =1.839165, Avmisfit[0] = 0.036062 +count[1] = 49.000000, misfit[1] =10.802149, Avmisfit[1] = 0.220452 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.036062 Avmisfit[1] = 0.220452 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.700000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.700000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = 0.256514 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.300000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =5.771737, Avmisfit[0] = 0.088796 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.088796 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.300000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = 0.155656 + +MoveMisfit[0][0] = 0.057508 +MoveMisfit[0][1] = 0.031121 +MoveMisfit[0][2] = 0.047518 +MoveMisfit[0][3] = 0.102421 +MoveMisfit[0][4] = 0.155801 +MoveMisfit[0][5] = 0.131112 +MoveMisfit[0][6] = 0.108327 +MoveMisfit[0][7] = 0.081042 +MoveMisfit[1][3] = 0.127292 +MoveMisfit[1][4] = 0.234998 +MoveMisfit[1][5] = 0.185159 +MoveMisfit[1][6] = 0.160581 +MoveMisfit[1][7] = 0.105914 +MoveMisfit[2][3] = 0.177035 +MoveMisfit[2][4] = 0.384249 +MoveMisfit[2][5] = 0.284319 +MoveMisfit[2][6] = 0.256514 +MoveMisfit[2][7] = 0.155656 +Minimum misfit = 0.031121 cont = 0 No. = 1 +Point 1 location changed from (0.500000,0.900000) to (0.500000,0.950000) +MISFIT reduced to 0.031121 +Move[1] changed to 0.050000 + +Point 2 +Move[2] = 0.006250 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.401095, Avmisfit[0] = 0.005494 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005494 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.031121 + +MotionUnit = 0.003125 +BaselineHeight = 0.996875 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.003125 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +BaselineHeight = 1.003125 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.003125 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +BaselineHeight = 1.003125 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.946875 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.946875 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.946875 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.003125 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.946875 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.946875 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.946875 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.003125 +BaselineHeight = 0.996875 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.946875 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.946875 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.946875 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.996875 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.006250 +BaselineHeight = 0.993750 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.956250 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.956250 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.956250 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.006250 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +BaselineHeight = 1.006250 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.006250 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +BaselineHeight = 1.006250 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.943750 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.943750 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.943750 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.006250 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.943750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.943750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.943750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.006250 +BaselineHeight = 0.993750 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.943750 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.943750 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.943750 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.993750 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.012500 +BaselineHeight = 0.987500 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.962500 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.962500 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.962500 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.012500 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +BaselineHeight = 1.012500 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.012500 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +BaselineHeight = 1.012500 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.012500 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.012500 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.012500 +BaselineHeight = 0.987500 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.937500 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.937500 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.937500 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.987500 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.987500 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +Minimum misfit = 1000000.000000 cont = 0 No. = 1 +Existing point was at least equal best fit, no change +But, Move[2] shrunk anyway to 0.003125 + +Point 3 +Move[3] = 0.006250 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.401095, Avmisfit[0] = 0.005494 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005494 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.031121 + +MotionUnit = 0.003125 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.996875 PointCopyY[3] = 1.003125 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.996875 PointCopyY[3] = 1.003125 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.996875 PointCopyY[3] = 1.003125 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.003125 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.003125 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.003125 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.003125 PointCopyY[3] = 1.003125 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.003125 PointCopyY[3] = 1.003125 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.003125 PointCopyY[3] = 1.003125 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.003125 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.003125 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.003125 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.003125 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +BaselineHeight = 1.003125 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.003125 PointCopyY[3] = 0.996875 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.003125 PointCopyY[3] = 0.996875 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.003125 PointCopyY[3] = 0.996875 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.003125 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.996875 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.996875 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.996875 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.003125 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.996875 PointCopyY[3] = 0.996875 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.996875 PointCopyY[3] = 0.996875 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.996875 PointCopyY[3] = 0.996875 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.996875 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.996875 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.996875 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 1.006250 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 1.006250 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 1.006250 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.006250 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.006250 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.006250 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 1.006250 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 1.006250 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 1.006250 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.006250 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +BaselineHeight = 1.006250 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 0.993750 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 0.993750 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 0.993750 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.006250 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.993750 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.993750 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.993750 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.006250 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 0.993750 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 0.993750 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 0.993750 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 1.012500 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 1.012500 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 1.012500 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.012500 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.012500 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.012500 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 1.012500 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 1.012500 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 1.012500 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.012500 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +BaselineHeight = 1.012500 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 0.987500 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 0.987500 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.012500 PointCopyY[3] = 0.987500 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.012500 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.987500 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.987500 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.987500 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.012500 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 0.987500 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 0.987500 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 0.987500 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.987500 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +Minimum misfit = 1000000.000000 cont = 0 No. = 1 +Existing point was at least equal best fit, no change +But, Move[3] shrunk anyway to 0.003125 +Itteration = 5 + +Point 0 +Move[0] = 0.050000 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.401095, Avmisfit[0] = 0.005494 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005494 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.031121 + +MotionUnit = 0.025000 +OUTSIDEBOX +PointCopyX[0] = -0.025000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = -0.025000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = -0.025000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.025000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.025000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.866990, Avmisfit[0] = 0.011877 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =1.128219, Avmisfit[3] = 0.006268 +Avmisfit[0] = 0.011877 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.006268 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = 0.043771 + +MotionUnit = 0.025000 +PointCopyX[0] = 0.025000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.025000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.025000 PointY[0] = 0.025000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.576032, Avmisfit[0] = 0.007891 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.007891 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.025000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = 0.033518 + +MotionUnit = 0.000000 +BaselineHeight = 0.025000 BELOW BASELINE +PointCopyX[0] = 0.025000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.025000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.025000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +BaselineHeight = 0.025000 BELOW BASELINE +PointCopyX[0] = 0.025000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.025000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.025000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +PointCopyX[0] = -0.025000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = -0.025000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = -0.025000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.025000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = -0.025000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = -0.025000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.050000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.050000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =1.358768, Avmisfit[0] = 0.018613 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =2.256437, Avmisfit[3] = 0.012536 +Avmisfit[0] = 0.018613 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.012536 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = 0.056776 + +MotionUnit = 0.050000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.050000 PointY[0] = 0.050000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.974530, Avmisfit[0] = 0.013350 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.013350 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = 0.038977 + +MotionUnit = 0.000000 +BaselineHeight = 0.050000 BELOW BASELINE +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +BaselineHeight = 0.050000 BELOW BASELINE +PointCopyX[0] = 0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +PointCopyX[0] = -0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.100000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.100000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =2.429106, Avmisfit[0] = 0.033275 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =4.512875, Avmisfit[3] = 0.025072 +Avmisfit[0] = 0.033275 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.025072 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = 0.083974 + +MotionUnit = 0.100000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.100000 PointY[0] = 0.100000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =1.908255, Avmisfit[0] = 0.026140 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.026140 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = 0.051767 + +MotionUnit = 0.000000 +BaselineHeight = 0.100000 BELOW BASELINE +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +BaselineHeight = 0.100000 BELOW BASELINE +PointCopyX[0] = 0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +PointCopyX[0] = -0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = -0.100000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = -0.100000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +MoveMisfit[0][1] = 0.043771 +MoveMisfit[0][2] = 0.033518 +MoveMisfit[1][1] = 0.056776 +MoveMisfit[1][2] = 0.038977 +MoveMisfit[2][1] = 0.083974 +MoveMisfit[2][2] = 0.051767 +Minimum misfit = 0.033518 cont = 0 No. = 2 +Existing point was at least equal best fit, no change +But, Move[0] shrunk anyway to 0.025000 + +Point 1 +Move[1] = 0.050000 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.401095, Avmisfit[0] = 0.005494 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005494 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.031121 + +MotionUnit = 0.025000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.475000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.475000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.475000 PointY[1] = 0.975000 +PointX[2] = 1.000000 PointY[2] = 0.975000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.025000 acrossB = 0.025000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 86.000000, misfit[0] =4.646892, Avmisfit[0] = 0.054034 +count[1] = 14.000000, misfit[1] =0.179389, Avmisfit[1] = 0.012813 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.054034 Avmisfit[1] = 0.012813 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.475000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = 0.066847 + +MotionUnit = 0.025000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.975000 +PointX[2] = 1.000000 PointY[2] = 0.975000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.025000 acrossB = 0.025000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 86.000000, misfit[0] =3.387657, Avmisfit[0] = 0.039391 +count[1] = 14.000000, misfit[1] =0.179389, Avmisfit[1] = 0.012813 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.039391 Avmisfit[1] = 0.012813 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = 0.052205 + +MotionUnit = 0.025000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.525000 PointY[1] = 0.975000 +PointX[2] = 1.000000 PointY[2] = 0.975000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.025000 acrossB = 0.025000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 86.000000, misfit[0] =2.560750, Avmisfit[0] = 0.029776 +count[1] = 14.000000, misfit[1] =0.179389, Avmisfit[1] = 0.012813 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.029776 Avmisfit[1] = 0.012813 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = 0.042590 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.525000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.789996, Avmisfit[0] = 0.010822 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.010822 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = 0.036449 + +MotionUnit = 0.025000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.525000 PointY[1] = 0.925000 +PointX[2] = 1.000000 PointY[2] = 0.925000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.075000 acrossB = 0.075000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 67.000000, misfit[0] =1.110116, Avmisfit[0] = 0.016569 +count[1] = 33.000000, misfit[1] =1.482409, Avmisfit[1] = 0.044921 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.016569 Avmisfit[1] = 0.044921 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = 0.061490 + +MotionUnit = 0.025000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.925000 +PointX[2] = 1.000000 PointY[2] = 0.925000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.075000 acrossB = 0.075000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 67.000000, misfit[0] =0.274113, Avmisfit[0] = 0.004091 +count[1] = 33.000000, misfit[1] =1.482409, Avmisfit[1] = 0.044921 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004091 Avmisfit[1] = 0.044921 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = 0.049013 + +MotionUnit = 0.025000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.475000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.475000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.475000 PointY[1] = 0.925000 +PointX[2] = 1.000000 PointY[2] = 0.925000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.075000 acrossB = 0.075000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 67.000000, misfit[0] =0.561890, Avmisfit[0] = 0.008386 +count[1] = 33.000000, misfit[1] =1.482409, Avmisfit[1] = 0.044921 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.008386 Avmisfit[1] = 0.044921 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.475000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = 0.053308 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.475000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.475000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.475000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =1.364190, Avmisfit[0] = 0.018688 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.018688 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.475000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = 0.044314 + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.450000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 1.000000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.000000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = nan +Forcing Right line to include the Last point +Idist = nan misfitTemp = nan +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =12.267832, Avmisfit[0] = 0.123917 +count[1] = 1.000000, misfit[1] =0.000000, Avmisfit[1] = 0.000000 +count[2] = 1.000000, misfit[2] =nan, Avmisfit[2] = nan +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.123917 Avmisfit[1] = 0.000000 Avmisfit[2] = nan Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = nan + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 1.000000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.000000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = nan +Forcing Right line to include the Last point +Idist = nan misfitTemp = nan +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =9.170856, Avmisfit[0] = 0.092635 +count[1] = 1.000000, misfit[1] =0.000000, Avmisfit[1] = 0.000000 +count[2] = 1.000000, misfit[2] =nan, Avmisfit[2] = nan +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.092635 Avmisfit[1] = 0.000000 Avmisfit[2] = nan Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = nan + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.550000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 1.000000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.000000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = nan +Forcing Right line to include the Last point +Idist = nan misfitTemp = nan +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =7.253183, Avmisfit[0] = 0.073264 +count[1] = 1.000000, misfit[1] =0.000000, Avmisfit[1] = 0.000000 +count[2] = 1.000000, misfit[2] =nan, Avmisfit[2] = nan +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.073264 Avmisfit[1] = 0.000000 Avmisfit[2] = nan Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = nan + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.550000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =1.598046, Avmisfit[0] = 0.021891 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.021891 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = 0.047518 + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.550000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =2.311436, Avmisfit[0] = 0.035561 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.035561 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = 0.102421 + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =0.694801, Avmisfit[0] = 0.010689 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.010689 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = 0.077550 + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.450000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =0.921834, Avmisfit[0] = 0.014182 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.014182 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = 0.081042 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.450000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =2.327285, Avmisfit[0] = 0.031881 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.031881 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = 0.057508 + +MotionUnit = 0.100000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 1.050000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.050000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 1.050000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.050000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 1.050000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.050000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.050000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.050000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.050000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.050000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.050000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.050000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.100000 +OUTSIDEBOX +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 1.050000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.050000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 1.050000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.050000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 1.050000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.050000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.600000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =3.451285, Avmisfit[0] = 0.047278 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.047278 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = 0.072905 + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.600000 PointY[1] = 0.850000 +PointX[2] = 1.000000 PointY[2] = 0.850000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.150000 acrossB = 0.150000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 61.000000, misfit[0] =4.459944, Avmisfit[0] = 0.073114 +count[1] = 39.000000, misfit[1] =4.187642, Avmisfit[1] = 0.107375 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.073114 Avmisfit[1] = 0.107375 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.600000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = 0.180489 + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.850000 +PointX[2] = 1.000000 PointY[2] = 0.850000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.150000 acrossB = 0.150000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 61.000000, misfit[0] =1.447955, Avmisfit[0] = 0.023737 +count[1] = 39.000000, misfit[1] =4.187642, Avmisfit[1] = 0.107375 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.023737 Avmisfit[1] = 0.107375 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = 0.131112 + +MotionUnit = 0.100000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.400000 PointY[1] = 0.850000 +PointX[2] = 1.000000 PointY[2] = 0.850000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.150000 acrossB = 0.150000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 61.000000, misfit[0] =1.564033, Avmisfit[0] = 0.025640 +count[1] = 39.000000, misfit[1] =4.187642, Avmisfit[1] = 0.107375 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.025640 Avmisfit[1] = 0.107375 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.850000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.850000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = 0.133015 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.400000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =4.253475, Avmisfit[0] = 0.058267 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.058267 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.400000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = 0.083894 + +MoveMisfit[0][0] = 0.066847 +MoveMisfit[0][1] = 0.052205 +MoveMisfit[0][2] = 0.042590 +MoveMisfit[0][3] = 0.036449 +MoveMisfit[0][4] = 0.061490 +MoveMisfit[0][5] = 0.049013 +MoveMisfit[0][6] = 0.053308 +MoveMisfit[0][7] = 0.044314 +MoveMisfit[1][3] = 0.047518 +MoveMisfit[1][4] = 0.102421 +MoveMisfit[1][5] = 0.077550 +MoveMisfit[1][6] = 0.081042 +MoveMisfit[1][7] = 0.057508 +MoveMisfit[2][3] = 0.072905 +MoveMisfit[2][4] = 0.180489 +MoveMisfit[2][5] = 0.131112 +MoveMisfit[2][6] = 0.133015 +MoveMisfit[2][7] = 0.083894 +Minimum misfit = 0.036449 cont = 0 No. = 3 +Existing point was at least equal best fit, no change +But, Move[1] shrunk anyway to 0.025000 + +Point 2 +Move[2] = 0.003125 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.401095, Avmisfit[0] = 0.005494 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005494 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.031121 + +MotionUnit = 0.001562 +BaselineHeight = 0.998438 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.951562 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.951562 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.951562 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.001562 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.001562 +OUTSIDEBOX +BaselineHeight = 1.001562 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.001562 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.001562 +OUTSIDEBOX +BaselineHeight = 1.001562 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.948438 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.948438 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.948438 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.948438 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.948438 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.948438 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.001562 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.948438 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.948438 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.948438 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.948438 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.948438 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.948438 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.001562 +BaselineHeight = 0.998438 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.948438 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.948438 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.948438 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.948438 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.948438 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.948438 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.998438 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.003125 +BaselineHeight = 0.996875 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.003125 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +BaselineHeight = 1.003125 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.003125 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +BaselineHeight = 1.003125 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.946875 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.946875 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.946875 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.003125 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.946875 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.946875 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.946875 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.003125 +BaselineHeight = 0.996875 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.946875 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.946875 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.946875 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.996875 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.006250 +BaselineHeight = 0.993750 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.956250 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.956250 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.956250 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.006250 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +BaselineHeight = 1.006250 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.006250 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +BaselineHeight = 1.006250 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.943750 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.943750 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.943750 +PointCopyX[2] = 1.006250 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.006250 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.943750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.943750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.943750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.006250 +BaselineHeight = 0.993750 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.943750 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.943750 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.943750 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.993750 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 0.993750 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +Minimum misfit = 1000000.000000 cont = 0 No. = 3 +Existing point was at least equal best fit, no change +But, Move[2] shrunk anyway to 0.001563 + +Point 3 +Move[3] = 0.003125 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.401095, Avmisfit[0] = 0.005494 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005494 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.031121 + +MotionUnit = 0.001562 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.998438 PointCopyY[3] = 1.001562 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.998438 PointCopyY[3] = 1.001562 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.998438 PointCopyY[3] = 1.001562 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.001562 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.001562 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.001562 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.001562 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.001562 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.001562 PointCopyY[3] = 1.001562 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.001562 PointCopyY[3] = 1.001562 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.001562 PointCopyY[3] = 1.001562 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.001562 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.001562 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.001562 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.001562 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.001562 +OUTSIDEBOX +BaselineHeight = 1.001562 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.001562 PointCopyY[3] = 0.998438 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.001562 PointCopyY[3] = 0.998438 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.001562 PointCopyY[3] = 0.998438 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.001562 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.998438 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.998438 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.998438 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.001562 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.998438 PointCopyY[3] = 0.998438 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.998438 PointCopyY[3] = 0.998438 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.998438 PointCopyY[3] = 0.998438 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.998438 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.998438 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.998438 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.996875 PointCopyY[3] = 1.003125 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.996875 PointCopyY[3] = 1.003125 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.996875 PointCopyY[3] = 1.003125 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.003125 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.003125 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.003125 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.003125 PointCopyY[3] = 1.003125 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.003125 PointCopyY[3] = 1.003125 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.003125 PointCopyY[3] = 1.003125 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.003125 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.003125 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.003125 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.003125 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +BaselineHeight = 1.003125 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.003125 PointCopyY[3] = 0.996875 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.003125 PointCopyY[3] = 0.996875 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.003125 PointCopyY[3] = 0.996875 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.003125 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.996875 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.996875 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.996875 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.003125 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.996875 PointCopyY[3] = 0.996875 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.996875 PointCopyY[3] = 0.996875 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.996875 PointCopyY[3] = 0.996875 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.996875 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.996875 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.996875 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 1.006250 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 1.006250 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 1.006250 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.006250 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.006250 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.006250 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 1.006250 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 1.006250 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 1.006250 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.006250 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +BaselineHeight = 1.006250 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 0.993750 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 0.993750 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.006250 PointCopyY[3] = 0.993750 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.006250 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.993750 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.993750 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.993750 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.006250 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 0.993750 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 0.993750 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 0.993750 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 0.993750 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +Minimum misfit = 1000000.000000 cont = 0 No. = 3 +Existing point was at least equal best fit, no change +But, Move[3] shrunk anyway to 0.001563 +Itteration = 6 + +Point 0 +Move[0] = 0.025000 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.401095, Avmisfit[0] = 0.005494 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005494 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.031121 + +MotionUnit = 0.012500 +OUTSIDEBOX +PointCopyX[0] = -0.012500 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = -0.012500 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = -0.012500 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.012500 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.012500 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.630937, Avmisfit[0] = 0.008643 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.564110, Avmisfit[3] = 0.003134 +Avmisfit[0] = 0.008643 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.003134 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = 0.037404 + +MotionUnit = 0.012500 +PointCopyX[0] = 0.012500 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.012500 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.012500 PointY[0] = 0.012500 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.420606, Avmisfit[0] = 0.005762 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005762 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.012500 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = 0.031389 + +MotionUnit = 0.000000 +BaselineHeight = 0.012500 BELOW BASELINE +PointCopyX[0] = 0.012500 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.012500 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.012500 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +BaselineHeight = 0.012500 BELOW BASELINE +PointCopyX[0] = 0.012500 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.012500 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.012500 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +PointCopyX[0] = -0.012500 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = -0.012500 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = -0.012500 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.012500 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = -0.012500 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = -0.012500 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +PointCopyX[0] = -0.025000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = -0.025000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = -0.025000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.025000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.025000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.866990, Avmisfit[0] = 0.011877 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =1.128219, Avmisfit[3] = 0.006268 +Avmisfit[0] = 0.011877 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.006268 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = 0.043771 + +MotionUnit = 0.025000 +PointCopyX[0] = 0.025000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.025000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.025000 PointY[0] = 0.025000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.576032, Avmisfit[0] = 0.007891 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.007891 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.025000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = 0.033518 + +MotionUnit = 0.000000 +BaselineHeight = 0.025000 BELOW BASELINE +PointCopyX[0] = 0.025000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.025000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.025000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +BaselineHeight = 0.025000 BELOW BASELINE +PointCopyX[0] = 0.025000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.025000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.025000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +PointCopyX[0] = -0.025000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = -0.025000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = -0.025000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.025000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = -0.025000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = -0.025000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.050000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.050000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =1.358768, Avmisfit[0] = 0.018613 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =2.256437, Avmisfit[3] = 0.012536 +Avmisfit[0] = 0.018613 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.012536 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = 0.056776 + +MotionUnit = 0.050000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.050000 PointY[0] = 0.050000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.974530, Avmisfit[0] = 0.013350 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.013350 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = 0.038977 + +MotionUnit = 0.000000 +BaselineHeight = 0.050000 BELOW BASELINE +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +BaselineHeight = 0.050000 BELOW BASELINE +PointCopyX[0] = 0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.050000 +OUTSIDEBOX +PointCopyX[0] = -0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = -0.050000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = -0.050000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +MoveMisfit[0][1] = 0.037404 +MoveMisfit[0][2] = 0.031389 +MoveMisfit[1][1] = 0.043771 +MoveMisfit[1][2] = 0.033518 +MoveMisfit[2][1] = 0.056776 +MoveMisfit[2][2] = 0.038977 +Minimum misfit = 0.031389 cont = 0 No. = 2 +Existing point was at least equal best fit, no change +But, Move[0] shrunk anyway to 0.012500 + +Point 1 +Move[1] = 0.025000 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.401095, Avmisfit[0] = 0.005494 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005494 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.031121 + +MotionUnit = 0.012500 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.487500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.487500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.487500 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.037500 acrossB = 0.037500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 79.000000, misfit[0] =2.003086, Avmisfit[0] = 0.025356 +count[1] = 21.000000, misfit[1] =0.393781, Avmisfit[1] = 0.018751 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.025356 Avmisfit[1] = 0.018751 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.487500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = 0.044107 + +MotionUnit = 0.012500 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.037500 acrossB = 0.037500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 79.000000, misfit[0] =1.453304, Avmisfit[0] = 0.018396 +count[1] = 21.000000, misfit[1] =0.393781, Avmisfit[1] = 0.018751 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.018396 Avmisfit[1] = 0.018751 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = 0.037148 + +MotionUnit = 0.012500 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.512500 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.037500 acrossB = 0.037500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 79.000000, misfit[0] =0.953797, Avmisfit[0] = 0.012073 +count[1] = 21.000000, misfit[1] =0.393781, Avmisfit[1] = 0.018751 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.012073 Avmisfit[1] = 0.018751 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = 0.030825 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.512500 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.416387, Avmisfit[0] = 0.005704 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005704 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = 0.031331 + +MotionUnit = 0.012500 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.512500 PointY[1] = 0.937500 +PointX[2] = 1.000000 PointY[2] = 0.937500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.062500 acrossB = 0.062500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 68.000000, misfit[0] =0.477656, Avmisfit[0] = 0.007024 +count[1] = 32.000000, misfit[1] =1.070072, Avmisfit[1] = 0.033440 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.007024 Avmisfit[1] = 0.033440 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = 0.040464 + +MotionUnit = 0.012500 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.937500 +PointX[2] = 1.000000 PointY[2] = 0.937500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.062500 acrossB = 0.062500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 68.000000, misfit[0] =0.052730, Avmisfit[0] = 0.000775 +count[1] = 32.000000, misfit[1] =1.070072, Avmisfit[1] = 0.033440 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.000775 Avmisfit[1] = 0.033440 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = 0.034215 + +MotionUnit = 0.012500 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.487500 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.487500 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.487500 PointY[1] = 0.937500 +PointX[2] = 1.000000 PointY[2] = 0.937500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.062500 acrossB = 0.062500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 68.000000, misfit[0] =0.372196, Avmisfit[0] = 0.005473 +count[1] = 32.000000, misfit[1] =1.070072, Avmisfit[1] = 0.033440 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005473 Avmisfit[1] = 0.033440 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.487500 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = 0.038913 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.487500 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.487500 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.487500 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.882642, Avmisfit[0] = 0.012091 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.012091 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.487500 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = 0.037718 + +MotionUnit = 0.025000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.475000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.475000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.475000 PointY[1] = 0.975000 +PointX[2] = 1.000000 PointY[2] = 0.975000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.025000 acrossB = 0.025000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 86.000000, misfit[0] =4.646892, Avmisfit[0] = 0.054034 +count[1] = 14.000000, misfit[1] =0.179389, Avmisfit[1] = 0.012813 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.054034 Avmisfit[1] = 0.012813 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.475000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = 0.066847 + +MotionUnit = 0.025000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.975000 +PointX[2] = 1.000000 PointY[2] = 0.975000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.025000 acrossB = 0.025000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 86.000000, misfit[0] =3.387657, Avmisfit[0] = 0.039391 +count[1] = 14.000000, misfit[1] =0.179389, Avmisfit[1] = 0.012813 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.039391 Avmisfit[1] = 0.012813 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = 0.052205 + +MotionUnit = 0.025000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.525000 PointY[1] = 0.975000 +PointX[2] = 1.000000 PointY[2] = 0.975000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.025000 acrossB = 0.025000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 86.000000, misfit[0] =2.560750, Avmisfit[0] = 0.029776 +count[1] = 14.000000, misfit[1] =0.179389, Avmisfit[1] = 0.012813 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.029776 Avmisfit[1] = 0.012813 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = 0.042590 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.525000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.789996, Avmisfit[0] = 0.010822 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.010822 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = 0.036449 + +MotionUnit = 0.025000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.525000 PointY[1] = 0.925000 +PointX[2] = 1.000000 PointY[2] = 0.925000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.075000 acrossB = 0.075000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 67.000000, misfit[0] =1.110116, Avmisfit[0] = 0.016569 +count[1] = 33.000000, misfit[1] =1.482409, Avmisfit[1] = 0.044921 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.016569 Avmisfit[1] = 0.044921 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = 0.061490 + +MotionUnit = 0.025000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.925000 +PointX[2] = 1.000000 PointY[2] = 0.925000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.075000 acrossB = 0.075000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 67.000000, misfit[0] =0.274113, Avmisfit[0] = 0.004091 +count[1] = 33.000000, misfit[1] =1.482409, Avmisfit[1] = 0.044921 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004091 Avmisfit[1] = 0.044921 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = 0.049013 + +MotionUnit = 0.025000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.475000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.475000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.475000 PointY[1] = 0.925000 +PointX[2] = 1.000000 PointY[2] = 0.925000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.075000 acrossB = 0.075000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 67.000000, misfit[0] =0.561890, Avmisfit[0] = 0.008386 +count[1] = 33.000000, misfit[1] =1.482409, Avmisfit[1] = 0.044921 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.008386 Avmisfit[1] = 0.044921 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.475000 PointCopyY[1] = 0.925000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.925000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = 0.053308 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.475000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.475000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.475000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =1.364190, Avmisfit[0] = 0.018688 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.018688 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.475000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = 0.044314 + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.450000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 1.000000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.000000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = nan +Forcing Right line to include the Last point +Idist = nan misfitTemp = nan +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =12.267832, Avmisfit[0] = 0.123917 +count[1] = 1.000000, misfit[1] =0.000000, Avmisfit[1] = 0.000000 +count[2] = 1.000000, misfit[2] =nan, Avmisfit[2] = nan +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.123917 Avmisfit[1] = 0.000000 Avmisfit[2] = nan Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = nan + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 1.000000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.000000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = nan +Forcing Right line to include the Last point +Idist = nan misfitTemp = nan +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =9.170856, Avmisfit[0] = 0.092635 +count[1] = 1.000000, misfit[1] =0.000000, Avmisfit[1] = 0.000000 +count[2] = 1.000000, misfit[2] =nan, Avmisfit[2] = nan +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.092635 Avmisfit[1] = 0.000000 Avmisfit[2] = nan Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = nan + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.550000 PointY[1] = 1.000000 +PointX[2] = 1.000000 PointY[2] = 1.000000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.000000 acrossB = 0.000000 +FracDepth[99] = 1.000000 betweenpercent = nan +Forcing Right line to include the Last point +Idist = nan misfitTemp = nan +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 99.000000, misfit[0] =7.253183, Avmisfit[0] = 0.073264 +count[1] = 1.000000, misfit[1] =0.000000, Avmisfit[1] = 0.000000 +count[2] = 1.000000, misfit[2] =nan, Avmisfit[2] = nan +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.073264 Avmisfit[1] = 0.000000 Avmisfit[2] = nan Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 1.000000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 1.000000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = nan + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.550000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =1.598046, Avmisfit[0] = 0.021891 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.021891 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = 0.047518 + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.550000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =2.311436, Avmisfit[0] = 0.035561 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.035561 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.550000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = 0.102421 + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =0.694801, Avmisfit[0] = 0.010689 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.010689 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = 0.077550 + +MotionUnit = 0.050000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.450000 PointY[1] = 0.900000 +PointX[2] = 1.000000 PointY[2] = 0.900000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.100000 acrossB = 0.100000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 65.000000, misfit[0] =0.921834, Avmisfit[0] = 0.014182 +count[1] = 35.000000, misfit[1] =2.340114, Avmisfit[1] = 0.066860 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.014182 Avmisfit[1] = 0.066860 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 0.900000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.900000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = 0.081042 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.450000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =2.327285, Avmisfit[0] = 0.031881 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.031881 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.450000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = 0.057508 + +MoveMisfit[0][0] = 0.044107 +MoveMisfit[0][1] = 0.037148 +MoveMisfit[0][2] = 0.030825 +MoveMisfit[0][3] = 0.031331 +MoveMisfit[0][4] = 0.040464 +MoveMisfit[0][5] = 0.034215 +MoveMisfit[0][6] = 0.038913 +MoveMisfit[0][7] = 0.037718 +MoveMisfit[1][0] = 0.066847 +MoveMisfit[1][1] = 0.052205 +MoveMisfit[1][2] = 0.042590 +MoveMisfit[1][3] = 0.036449 +MoveMisfit[1][4] = 0.061490 +MoveMisfit[1][5] = 0.049013 +MoveMisfit[1][6] = 0.053308 +MoveMisfit[1][7] = 0.044314 +MoveMisfit[2][3] = 0.047518 +MoveMisfit[2][4] = 0.102421 +MoveMisfit[2][5] = 0.077550 +MoveMisfit[2][6] = 0.081042 +MoveMisfit[2][7] = 0.057508 +Minimum misfit = 0.030825 cont = 0 No. = 2 +Point 1 location changed from (0.500000,0.950000) to (0.512500,0.962500) +MISFIT reduced to 0.030825 +Move[1] changed to 0.012500 + +Point 2 +Move[2] = 0.001563 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.512500 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.512500 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.037500 acrossB = 0.037500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 79.000000, misfit[0] =0.953797, Avmisfit[0] = 0.012073 +count[1] = 21.000000, misfit[1] =0.393781, Avmisfit[1] = 0.018751 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.012073 Avmisfit[1] = 0.018751 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.030825 + +MotionUnit = 0.000781 +BaselineHeight = 0.999219 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.963281 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.963281 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.963281 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.963281 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.963281 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.963281 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.000781 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.963281 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.963281 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.963281 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.963281 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.963281 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.963281 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.000781 +OUTSIDEBOX +BaselineHeight = 1.000781 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.963281 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.963281 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.963281 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.963281 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.963281 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.963281 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000781 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.000781 +OUTSIDEBOX +BaselineHeight = 1.000781 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.961719 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.961719 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.961719 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.961719 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.961719 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.961719 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.000781 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.961719 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.961719 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.961719 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.961719 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.961719 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.961719 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.000781 +BaselineHeight = 0.999219 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.961719 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.961719 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.961719 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.961719 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.961719 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.961719 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.999219 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.001562 +BaselineHeight = 0.998438 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.964062 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.964062 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.964062 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.964062 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.964062 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.964062 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.001562 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.964062 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.964062 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.964062 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.964062 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.964062 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.964062 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.001562 +OUTSIDEBOX +BaselineHeight = 1.001562 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.964062 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.964062 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.964062 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.964062 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.964062 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.964062 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.001562 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.001562 +OUTSIDEBOX +BaselineHeight = 1.001562 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.960938 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.960938 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.960938 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.960938 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.960938 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.960938 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.001562 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.960938 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.960938 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.960938 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.960938 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.960938 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.960938 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.001562 +BaselineHeight = 0.998438 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.960938 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.960938 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.960938 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.960938 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.960938 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.960938 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.998438 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.003125 +BaselineHeight = 0.996875 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.965625 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.965625 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.965625 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.965625 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.965625 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.965625 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.003125 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.965625 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.965625 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.965625 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.965625 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.965625 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.965625 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +BaselineHeight = 1.003125 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.965625 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.965625 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.965625 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.965625 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.965625 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.965625 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.003125 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +BaselineHeight = 1.003125 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.003125 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.003125 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.003125 +BaselineHeight = 0.996875 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.959375 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.959375 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.959375 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.996875 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 0.996875 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +Minimum misfit = 1000000.000000 cont = 0 No. = 2 +Existing point was at least equal best fit, no change +But, Move[2] shrunk anyway to 0.000781 + +Point 3 +Move[3] = 0.001563 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.512500 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.512500 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.037500 acrossB = 0.037500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 79.000000, misfit[0] =0.953797, Avmisfit[0] = 0.012073 +count[1] = 21.000000, misfit[1] =0.393781, Avmisfit[1] = 0.018751 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.012073 Avmisfit[1] = 0.018751 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.030825 + +MotionUnit = 0.000781 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.999219 PointCopyY[3] = 1.000781 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.999219 PointCopyY[3] = 1.000781 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.999219 PointCopyY[3] = 1.000781 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.000781 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000781 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000781 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000781 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.000781 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000781 PointCopyY[3] = 1.000781 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000781 PointCopyY[3] = 1.000781 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000781 PointCopyY[3] = 1.000781 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000781 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000781 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000781 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000781 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.000781 +OUTSIDEBOX +BaselineHeight = 1.000781 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000781 PointCopyY[3] = 0.999219 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000781 PointCopyY[3] = 0.999219 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000781 PointCopyY[3] = 0.999219 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.000781 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999219 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999219 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999219 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.000781 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.999219 PointCopyY[3] = 0.999219 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.999219 PointCopyY[3] = 0.999219 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.999219 PointCopyY[3] = 0.999219 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.999219 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.999219 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.999219 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.001562 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.998438 PointCopyY[3] = 1.001562 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.998438 PointCopyY[3] = 1.001562 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.998438 PointCopyY[3] = 1.001562 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.001562 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.001562 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.001562 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.001562 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.001562 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.001562 PointCopyY[3] = 1.001562 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.001562 PointCopyY[3] = 1.001562 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.001562 PointCopyY[3] = 1.001562 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.001562 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.001562 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.001562 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.001562 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.001562 +OUTSIDEBOX +BaselineHeight = 1.001562 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.001562 PointCopyY[3] = 0.998438 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.001562 PointCopyY[3] = 0.998438 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.001562 PointCopyY[3] = 0.998438 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.001562 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.998438 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.998438 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.998438 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.001562 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.998438 PointCopyY[3] = 0.998438 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.998438 PointCopyY[3] = 0.998438 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.998438 PointCopyY[3] = 0.998438 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.998438 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.998438 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.998438 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.996875 PointCopyY[3] = 1.003125 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.996875 PointCopyY[3] = 1.003125 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.996875 PointCopyY[3] = 1.003125 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.003125 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.003125 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.003125 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.003125 PointCopyY[3] = 1.003125 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.003125 PointCopyY[3] = 1.003125 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.003125 PointCopyY[3] = 1.003125 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.003125 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.003125 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.003125 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.003125 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +BaselineHeight = 1.003125 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.003125 PointCopyY[3] = 0.996875 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.003125 PointCopyY[3] = 0.996875 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.003125 PointCopyY[3] = 0.996875 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.003125 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.996875 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.996875 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.996875 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.003125 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.996875 PointCopyY[3] = 0.996875 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.996875 PointCopyY[3] = 0.996875 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.996875 PointCopyY[3] = 0.996875 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.996875 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.996875 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 0.996875 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +Minimum misfit = 1000000.000000 cont = 0 No. = 2 +Existing point was at least equal best fit, no change +But, Move[3] shrunk anyway to 0.000781 +Itteration = 7 + +Point 0 +Move[0] = 0.012500 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.512500 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.512500 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.037500 acrossB = 0.037500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 79.000000, misfit[0] =0.953797, Avmisfit[0] = 0.012073 +count[1] = 21.000000, misfit[1] =0.393781, Avmisfit[1] = 0.018751 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.012073 Avmisfit[1] = 0.018751 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.030825 + +MotionUnit = 0.006250 +OUTSIDEBOX +PointCopyX[0] = -0.006250 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = -0.006250 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = -0.006250 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.006250 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.006250 +PointX[1] = 0.512500 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.037500 acrossB = 0.037500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 79.000000, misfit[0] =1.028588, Avmisfit[0] = 0.013020 +count[1] = 21.000000, misfit[1] =0.393781, Avmisfit[1] = 0.018751 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.282054, Avmisfit[3] = 0.001567 +Avmisfit[0] = 0.013020 Avmisfit[1] = 0.018751 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.001567 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = 0.033339 + +MotionUnit = 0.006250 +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.006250 PointY[0] = 0.006250 +PointX[1] = 0.512500 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.037500 acrossB = 0.037500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 79.000000, misfit[0] =1.056033, Avmisfit[0] = 0.013368 +count[1] = 21.000000, misfit[1] =0.393781, Avmisfit[1] = 0.018751 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.013368 Avmisfit[1] = 0.018751 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = 0.032119 + +MotionUnit = 0.000000 +BaselineHeight = 0.006250 BELOW BASELINE +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +BaselineHeight = 0.006250 BELOW BASELINE +PointCopyX[0] = 0.006250 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +PointCopyX[0] = -0.006250 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = -0.006250 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = -0.006250 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.006250 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = -0.006250 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = -0.006250 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +PointCopyX[0] = -0.012500 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = -0.012500 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = -0.012500 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.012500 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.012500 +PointX[1] = 0.512500 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.037500 acrossB = 0.037500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 79.000000, misfit[0] =1.143144, Avmisfit[0] = 0.014470 +count[1] = 21.000000, misfit[1] =0.393781, Avmisfit[1] = 0.018751 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.564110, Avmisfit[3] = 0.003134 +Avmisfit[0] = 0.014470 Avmisfit[1] = 0.018751 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.003134 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = 0.036356 + +MotionUnit = 0.012500 +PointCopyX[0] = 0.012500 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.012500 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.012500 PointY[0] = 0.012500 +PointX[1] = 0.512500 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.037500 acrossB = 0.037500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 79.000000, misfit[0] =1.159615, Avmisfit[0] = 0.014679 +count[1] = 21.000000, misfit[1] =0.393781, Avmisfit[1] = 0.018751 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.014679 Avmisfit[1] = 0.018751 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.012500 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = 0.033430 + +MotionUnit = 0.000000 +BaselineHeight = 0.012500 BELOW BASELINE +PointCopyX[0] = 0.012500 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.012500 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.012500 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +BaselineHeight = 0.012500 BELOW BASELINE +PointCopyX[0] = 0.012500 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.012500 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.012500 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +PointCopyX[0] = -0.012500 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = -0.012500 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = -0.012500 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.012500 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = -0.012500 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = -0.012500 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +PointCopyX[0] = -0.025000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = -0.025000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = -0.025000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.025000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.025000 +PointX[1] = 0.512500 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.037500 acrossB = 0.037500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 79.000000, misfit[0] =1.383202, Avmisfit[0] = 0.017509 +count[1] = 21.000000, misfit[1] =0.393781, Avmisfit[1] = 0.018751 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =1.128219, Avmisfit[3] = 0.006268 +Avmisfit[0] = 0.017509 Avmisfit[1] = 0.018751 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.006268 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = 0.042528 + +MotionUnit = 0.025000 +PointCopyX[0] = 0.025000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.025000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.025000 PointY[0] = 0.025000 +PointX[1] = 0.512500 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.037500 acrossB = 0.037500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 79.000000, misfit[0] =1.370921, Avmisfit[0] = 0.017353 +count[1] = 21.000000, misfit[1] =0.393781, Avmisfit[1] = 0.018751 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.017353 Avmisfit[1] = 0.018751 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.025000 PointCopyY[0] = 0.025000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = 0.036105 + +MotionUnit = 0.000000 +BaselineHeight = 0.025000 BELOW BASELINE +PointCopyX[0] = 0.025000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.025000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.025000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +BaselineHeight = 0.025000 BELOW BASELINE +PointCopyX[0] = 0.025000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.025000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.025000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.025000 +OUTSIDEBOX +PointCopyX[0] = -0.025000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = -0.025000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = -0.025000 PointCopyY[0] = -0.025000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.025000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = -0.025000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = -0.025000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +MoveMisfit[0][1] = 0.033339 +MoveMisfit[0][2] = 0.032119 +MoveMisfit[1][1] = 0.036356 +MoveMisfit[1][2] = 0.033430 +MoveMisfit[2][1] = 0.042528 +MoveMisfit[2][2] = 0.036105 +Minimum misfit = 0.032119 cont = 0 No. = 2 +Existing point was at least equal best fit, no change +But, Move[0] shrunk anyway to 0.006250 + +Point 1 +Move[1] = 0.012500 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.512500 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.512500 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.037500 acrossB = 0.037500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 79.000000, misfit[0] =0.953797, Avmisfit[0] = 0.012073 +count[1] = 21.000000, misfit[1] =0.393781, Avmisfit[1] = 0.018751 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.012073 Avmisfit[1] = 0.018751 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.030825 + +MotionUnit = 0.006250 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.968750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.968750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.968750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.968750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.968750 +PointX[2] = 1.000000 PointY[2] = 0.968750 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.031250 acrossB = 0.031250 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 83.000000, misfit[0] =2.139987, Avmisfit[0] = 0.025783 +count[1] = 17.000000, misfit[1] =0.276270, Avmisfit[1] = 0.016251 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.025783 Avmisfit[1] = 0.016251 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.968750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.968750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = 0.042034 + +MotionUnit = 0.006250 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.968750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.968750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.968750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.968750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.512500 PointY[1] = 0.968750 +PointX[2] = 1.000000 PointY[2] = 0.968750 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.031250 acrossB = 0.031250 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 83.000000, misfit[0] =1.841957, Avmisfit[0] = 0.022192 +count[1] = 17.000000, misfit[1] =0.276270, Avmisfit[1] = 0.016251 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.022192 Avmisfit[1] = 0.016251 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.968750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.968750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = 0.038443 + +MotionUnit = 0.006250 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.518750 PointCopyY[1] = 0.968750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.968750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.518750 PointCopyY[1] = 0.968750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.968750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.518750 PointY[1] = 0.968750 +PointX[2] = 1.000000 PointY[2] = 0.968750 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.031250 acrossB = 0.031250 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 83.000000, misfit[0] =1.786460, Avmisfit[0] = 0.021524 +count[1] = 17.000000, misfit[1] =0.276270, Avmisfit[1] = 0.016251 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.021524 Avmisfit[1] = 0.016251 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.518750 PointCopyY[1] = 0.968750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.968750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = 0.037775 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.518750 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.518750 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.518750 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.037500 acrossB = 0.037500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 79.000000, misfit[0] =1.092796, Avmisfit[0] = 0.013833 +count[1] = 21.000000, misfit[1] =0.393781, Avmisfit[1] = 0.018751 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.013833 Avmisfit[1] = 0.018751 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.518750 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = 0.032584 + +MotionUnit = 0.006250 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.518750 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.518750 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.518750 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.766919, Avmisfit[0] = 0.010091 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.010091 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.518750 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = 0.032280 + +MotionUnit = 0.006250 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.512500 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.608213, Avmisfit[0] = 0.008003 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.008003 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = 0.030192 + +MotionUnit = 0.006250 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.594004, Avmisfit[0] = 0.007816 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.007816 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = 0.030005 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.037500 acrossB = 0.037500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 79.000000, misfit[0] =1.178414, Avmisfit[0] = 0.014917 +count[1] = 21.000000, misfit[1] =0.393781, Avmisfit[1] = 0.018751 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.014917 Avmisfit[1] = 0.018751 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = 0.033668 + +MotionUnit = 0.012500 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.975000 +PointX[2] = 1.000000 PointY[2] = 0.975000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.025000 acrossB = 0.025000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 86.000000, misfit[0] =3.387657, Avmisfit[0] = 0.039391 +count[1] = 14.000000, misfit[1] =0.179389, Avmisfit[1] = 0.012813 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.039391 Avmisfit[1] = 0.012813 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = 0.052205 + +MotionUnit = 0.012500 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.512500 PointY[1] = 0.975000 +PointX[2] = 1.000000 PointY[2] = 0.975000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.025000 acrossB = 0.025000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 86.000000, misfit[0] =2.758040, Avmisfit[0] = 0.032070 +count[1] = 14.000000, misfit[1] =0.179389, Avmisfit[1] = 0.012813 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.032070 Avmisfit[1] = 0.012813 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = 0.044884 + +MotionUnit = 0.012500 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.525000 PointY[1] = 0.975000 +PointX[2] = 1.000000 PointY[2] = 0.975000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.025000 acrossB = 0.025000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 86.000000, misfit[0] =2.560750, Avmisfit[0] = 0.029776 +count[1] = 14.000000, misfit[1] =0.179389, Avmisfit[1] = 0.012813 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.029776 Avmisfit[1] = 0.012813 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.975000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.975000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = 0.042590 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.525000 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.037500 acrossB = 0.037500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 79.000000, misfit[0] =1.234760, Avmisfit[0] = 0.015630 +count[1] = 21.000000, misfit[1] =0.393781, Avmisfit[1] = 0.018751 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.015630 Avmisfit[1] = 0.018751 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = 0.034381 + +MotionUnit = 0.012500 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.525000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.789996, Avmisfit[0] = 0.010822 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.010822 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.525000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = 0.036449 + +MotionUnit = 0.012500 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.512500 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.416387, Avmisfit[0] = 0.005704 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005704 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = 0.031331 + +MotionUnit = 0.012500 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.401095, Avmisfit[0] = 0.005494 +count[1] = 27.000000, misfit[1] =0.691926, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005494 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = 0.031121 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.037500 acrossB = 0.037500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 79.000000, misfit[0] =1.453304, Avmisfit[0] = 0.018396 +count[1] = 21.000000, misfit[1] =0.393781, Avmisfit[1] = 0.018751 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.018396 Avmisfit[1] = 0.018751 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = 0.037148 + +MotionUnit = 0.025000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.487500 PointCopyY[1] = 0.987500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.987500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.487500 PointCopyY[1] = 0.987500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.987500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.487500 PointY[1] = 0.987500 +PointX[2] = 1.000000 PointY[2] = 0.987500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.012500 acrossB = 0.012500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 93.000000, misfit[0] =6.835863, Avmisfit[0] = 0.073504 +count[1] = 7.000000, misfit[1] =0.048128, Avmisfit[1] = 0.006875 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.073504 Avmisfit[1] = 0.006875 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.487500 PointCopyY[1] = 0.987500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.987500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = 0.080379 + +MotionUnit = 0.025000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.987500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.987500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.987500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.987500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.512500 PointY[1] = 0.987500 +PointX[2] = 1.000000 PointY[2] = 0.987500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.012500 acrossB = 0.012500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 93.000000, misfit[0] =5.418676, Avmisfit[0] = 0.058265 +count[1] = 7.000000, misfit[1] =0.048128, Avmisfit[1] = 0.006875 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.058265 Avmisfit[1] = 0.006875 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.987500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.987500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = 0.065141 + +MotionUnit = 0.025000 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.537500 PointCopyY[1] = 0.987500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.987500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.537500 PointCopyY[1] = 0.987500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.987500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.537500 PointY[1] = 0.987500 +PointX[2] = 1.000000 PointY[2] = 0.987500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.012500 acrossB = 0.012500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 93.000000, misfit[0] =4.806993, Avmisfit[0] = 0.051688 +count[1] = 7.000000, misfit[1] =0.048128, Avmisfit[1] = 0.006875 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.051688 Avmisfit[1] = 0.006875 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.537500 PointCopyY[1] = 0.987500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.987500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = 0.058564 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.537500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.537500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.537500 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.037500 acrossB = 0.037500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 79.000000, misfit[0] =1.537219, Avmisfit[0] = 0.019458 +count[1] = 21.000000, misfit[1] =0.393781, Avmisfit[1] = 0.018751 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.019458 Avmisfit[1] = 0.018751 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.537500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = 0.038210 + +MotionUnit = 0.025000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.537500 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.537500 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.537500 PointY[1] = 0.937500 +PointX[2] = 1.000000 PointY[2] = 0.937500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.062500 acrossB = 0.062500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 68.000000, misfit[0] =1.327507, Avmisfit[0] = 0.019522 +count[1] = 32.000000, misfit[1] =1.070072, Avmisfit[1] = 0.033440 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.019522 Avmisfit[1] = 0.033440 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.537500 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = 0.052962 + +MotionUnit = 0.025000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.512500 PointY[1] = 0.937500 +PointX[2] = 1.000000 PointY[2] = 0.937500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.062500 acrossB = 0.062500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 68.000000, misfit[0] =0.477656, Avmisfit[0] = 0.007024 +count[1] = 32.000000, misfit[1] =1.070072, Avmisfit[1] = 0.033440 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.007024 Avmisfit[1] = 0.033440 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = 0.040464 + +MotionUnit = 0.025000 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.487500 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.487500 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.487500 PointY[1] = 0.937500 +PointX[2] = 1.000000 PointY[2] = 0.937500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.062500 acrossB = 0.062500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 68.000000, misfit[0] =0.372197, Avmisfit[0] = 0.005473 +count[1] = 32.000000, misfit[1] =1.070072, Avmisfit[1] = 0.033440 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005473 Avmisfit[1] = 0.033440 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.487500 PointCopyY[1] = 0.937500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.937500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = 0.038913 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.487500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.487500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.487500 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.037500 acrossB = 0.037500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 79.000000, misfit[0] =2.003088, Avmisfit[0] = 0.025356 +count[1] = 21.000000, misfit[1] =0.393781, Avmisfit[1] = 0.018751 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.025356 Avmisfit[1] = 0.018751 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.487500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = 0.044107 + +MoveMisfit[0][0] = 0.042034 +MoveMisfit[0][1] = 0.038443 +MoveMisfit[0][2] = 0.037775 +MoveMisfit[0][3] = 0.032584 +MoveMisfit[0][4] = 0.032280 +MoveMisfit[0][5] = 0.030192 +MoveMisfit[0][6] = 0.030005 +MoveMisfit[0][7] = 0.033668 +MoveMisfit[1][0] = 0.052205 +MoveMisfit[1][1] = 0.044884 +MoveMisfit[1][2] = 0.042590 +MoveMisfit[1][3] = 0.034381 +MoveMisfit[1][4] = 0.036449 +MoveMisfit[1][5] = 0.031331 +MoveMisfit[1][6] = 0.031121 +MoveMisfit[1][7] = 0.037148 +MoveMisfit[2][0] = 0.080379 +MoveMisfit[2][1] = 0.065141 +MoveMisfit[2][2] = 0.058564 +MoveMisfit[2][3] = 0.038210 +MoveMisfit[2][4] = 0.052962 +MoveMisfit[2][5] = 0.040464 +MoveMisfit[2][6] = 0.038913 +MoveMisfit[2][7] = 0.044107 +Minimum misfit = 0.030005 cont = 0 No. = 6 +Point 1 location changed from (0.512500,0.962500) to (0.506250,0.956250) +MISFIT reduced to 0.030005 +Move[1] changed to 0.006250 + +Point 2 +Move[2] = 0.000781 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.594004, Avmisfit[0] = 0.007816 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.007816 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.030005 + +MotionUnit = 0.000391 +BaselineHeight = 0.999609 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956641 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.956641 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956641 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.956641 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956641 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.956641 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.000391 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956641 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956641 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956641 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956641 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956641 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956641 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.000391 +OUTSIDEBOX +BaselineHeight = 1.000391 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956641 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.956641 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956641 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.956641 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956641 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.956641 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000391 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.000391 +OUTSIDEBOX +BaselineHeight = 1.000391 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.955859 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.955859 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.955859 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.955859 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.955859 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.955859 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.000391 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.955859 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.955859 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.955859 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.955859 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.955859 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.955859 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.000391 +BaselineHeight = 0.999609 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.955859 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.955859 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.955859 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.955859 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.955859 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.955859 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.999609 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.000781 +BaselineHeight = 0.999219 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.957031 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.957031 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.957031 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.957031 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.957031 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.957031 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.000781 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.957031 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.957031 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.957031 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.957031 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.957031 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.957031 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.000781 +OUTSIDEBOX +BaselineHeight = 1.000781 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.957031 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.957031 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.957031 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.957031 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.957031 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.957031 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000781 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.000781 +OUTSIDEBOX +BaselineHeight = 1.000781 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.955469 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.955469 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.955469 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.955469 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.955469 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.955469 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.000781 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.955469 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.955469 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.955469 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.955469 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.955469 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.955469 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.000781 +BaselineHeight = 0.999219 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.955469 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.955469 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.955469 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.955469 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.955469 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.955469 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.999219 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.001562 +BaselineHeight = 0.998438 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.957812 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.957812 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.957812 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.957812 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.957812 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.957812 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.001562 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.957812 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.957812 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.957812 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.957812 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.957812 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.957812 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.001562 +OUTSIDEBOX +BaselineHeight = 1.001562 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.957812 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.957812 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.957812 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.957812 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.957812 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.957812 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.001562 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.001562 +OUTSIDEBOX +BaselineHeight = 1.001562 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.001562 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.001562 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.001562 +BaselineHeight = 0.998438 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.954687 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.954687 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.954687 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.998438 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 0.998438 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +Minimum misfit = 1000000.000000 cont = 0 No. = 6 +Existing point was at least equal best fit, no change +But, Move[2] shrunk anyway to 0.000391 + +Point 3 +Move[3] = 0.000781 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.594004, Avmisfit[0] = 0.007816 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.007816 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.030005 + +MotionUnit = 0.000391 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.999609 PointCopyY[3] = 1.000391 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.999609 PointCopyY[3] = 1.000391 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.999609 PointCopyY[3] = 1.000391 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.000391 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000391 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000391 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000391 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.000391 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000391 PointCopyY[3] = 1.000391 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000391 PointCopyY[3] = 1.000391 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000391 PointCopyY[3] = 1.000391 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000391 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000391 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000391 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000391 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.000391 +OUTSIDEBOX +BaselineHeight = 1.000391 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000391 PointCopyY[3] = 0.999609 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000391 PointCopyY[3] = 0.999609 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000391 PointCopyY[3] = 0.999609 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.000391 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999609 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999609 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999609 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.000391 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.999609 PointCopyY[3] = 0.999609 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.999609 PointCopyY[3] = 0.999609 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.999609 PointCopyY[3] = 0.999609 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.999609 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.999609 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.999609 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.000781 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.999219 PointCopyY[3] = 1.000781 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.999219 PointCopyY[3] = 1.000781 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.999219 PointCopyY[3] = 1.000781 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.000781 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000781 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000781 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000781 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.000781 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000781 PointCopyY[3] = 1.000781 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000781 PointCopyY[3] = 1.000781 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000781 PointCopyY[3] = 1.000781 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000781 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000781 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000781 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000781 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.000781 +OUTSIDEBOX +BaselineHeight = 1.000781 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000781 PointCopyY[3] = 0.999219 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000781 PointCopyY[3] = 0.999219 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000781 PointCopyY[3] = 0.999219 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.000781 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999219 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999219 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999219 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.000781 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.999219 PointCopyY[3] = 0.999219 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.999219 PointCopyY[3] = 0.999219 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.999219 PointCopyY[3] = 0.999219 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.999219 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.999219 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.999219 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.001562 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.998438 PointCopyY[3] = 1.001562 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.998438 PointCopyY[3] = 1.001562 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.998438 PointCopyY[3] = 1.001562 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.001562 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.001562 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.001562 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.001562 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.001562 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.001562 PointCopyY[3] = 1.001562 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.001562 PointCopyY[3] = 1.001562 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.001562 PointCopyY[3] = 1.001562 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.001562 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.001562 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.001562 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.001562 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.001562 +OUTSIDEBOX +BaselineHeight = 1.001562 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.001562 PointCopyY[3] = 0.998438 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.001562 PointCopyY[3] = 0.998438 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.001562 PointCopyY[3] = 0.998438 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.001562 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.998438 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.998438 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.998438 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.001562 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.998438 PointCopyY[3] = 0.998438 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.998438 PointCopyY[3] = 0.998438 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.998438 PointCopyY[3] = 0.998438 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.998438 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.998438 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 0.998438 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +Minimum misfit = 1000000.000000 cont = 0 No. = 6 +Existing point was at least equal best fit, no change +But, Move[3] shrunk anyway to 0.000391 +Itteration = 8 + +Point 0 +Move[0] = 0.006250 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.594004, Avmisfit[0] = 0.007816 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.007816 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.030005 + +MotionUnit = 0.003125 +OUTSIDEBOX +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.003125 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.003125 +PointX[1] = 0.506250 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.651663, Avmisfit[0] = 0.008575 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.141027, Avmisfit[3] = 0.000783 +Avmisfit[0] = 0.008575 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000783 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = 0.031547 + +MotionUnit = 0.003125 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.506250 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.585079, Avmisfit[0] = 0.007698 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.007698 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = 0.029888 + +MotionUnit = 0.000000 +BaselineHeight = 0.003125 BELOW BASELINE +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +BaselineHeight = 0.003125 BELOW BASELINE +PointCopyX[0] = 0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +PointCopyX[0] = -0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +PointCopyX[0] = -0.006250 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = -0.006250 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = -0.006250 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.006250 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.006250 +PointX[1] = 0.506250 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.709701, Avmisfit[0] = 0.009338 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.282054, Avmisfit[3] = 0.001567 +Avmisfit[0] = 0.009338 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.001567 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = 0.033094 + +MotionUnit = 0.006250 +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.006250 PointY[0] = 0.006250 +PointX[1] = 0.506250 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.610959, Avmisfit[0] = 0.008039 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.008039 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = 0.030228 + +MotionUnit = 0.000000 +BaselineHeight = 0.006250 BELOW BASELINE +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +BaselineHeight = 0.006250 BELOW BASELINE +PointCopyX[0] = 0.006250 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +PointCopyX[0] = -0.006250 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = -0.006250 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = -0.006250 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.006250 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = -0.006250 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = -0.006250 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +PointCopyX[0] = -0.012500 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = -0.012500 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = -0.012500 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.012500 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.012500 +PointX[1] = 0.506250 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.826931, Avmisfit[0] = 0.010881 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.564110, Avmisfit[3] = 0.003134 +Avmisfit[0] = 0.010881 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.003134 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = 0.036204 + +MotionUnit = 0.012500 +PointCopyX[0] = 0.012500 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.012500 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.012500 PointY[0] = 0.012500 +PointX[1] = 0.506250 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.691670, Avmisfit[0] = 0.009101 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.009101 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.012500 PointCopyY[0] = 0.012500 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = 0.031290 + +MotionUnit = 0.000000 +BaselineHeight = 0.012500 BELOW BASELINE +PointCopyX[0] = 0.012500 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.012500 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.012500 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +BaselineHeight = 0.012500 BELOW BASELINE +PointCopyX[0] = 0.012500 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.012500 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.012500 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.012500 +OUTSIDEBOX +PointCopyX[0] = -0.012500 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = -0.012500 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = -0.012500 PointCopyY[0] = -0.012500 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.012500 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = -0.012500 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = -0.012500 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +MoveMisfit[0][1] = 0.031547 +MoveMisfit[0][2] = 0.029888 +MoveMisfit[1][1] = 0.033094 +MoveMisfit[1][2] = 0.030228 +MoveMisfit[2][1] = 0.036204 +MoveMisfit[2][2] = 0.031290 +Minimum misfit = 0.029888 cont = 0 No. = 2 +Point 0 location changed from (0.000000,0.000000) to (0.003125,0.003125) +MISFIT reduced to 0.029888 +Move[0] changed to 0.003125 + +Point 1 +Move[1] = 0.006250 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.506250 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.506250 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.585079, Avmisfit[0] = 0.007698 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.007698 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.029888 + +MotionUnit = 0.003125 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.503125 PointY[1] = 0.959375 +PointX[2] = 1.000000 PointY[2] = 0.959375 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.040625 acrossB = 0.040625 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 78.000000, misfit[0] =1.045515, Avmisfit[0] = 0.013404 +count[1] = 22.000000, misfit[1] =0.460659, Avmisfit[1] = 0.020939 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.013404 Avmisfit[1] = 0.020939 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = 0.034343 + +MotionUnit = 0.003125 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.506250 PointY[1] = 0.959375 +PointX[2] = 1.000000 PointY[2] = 0.959375 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.040625 acrossB = 0.040625 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 78.000000, misfit[0] =0.921359, Avmisfit[0] = 0.011812 +count[1] = 22.000000, misfit[1] =0.460659, Avmisfit[1] = 0.020939 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.011812 Avmisfit[1] = 0.020939 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = 0.032751 + +MotionUnit = 0.003125 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.509375 PointY[1] = 0.959375 +PointX[2] = 1.000000 PointY[2] = 0.959375 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.040625 acrossB = 0.040625 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 78.000000, misfit[0] =0.826809, Avmisfit[0] = 0.010600 +count[1] = 22.000000, misfit[1] =0.460659, Avmisfit[1] = 0.020939 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.010600 Avmisfit[1] = 0.020939 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = 0.031539 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.509375 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.579564, Avmisfit[0] = 0.007626 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.007626 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = 0.029815 + +MotionUnit = 0.003125 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.509375 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.412345, Avmisfit[0] = 0.005572 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005572 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = 0.029012 + +MotionUnit = 0.003125 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.335042, Avmisfit[0] = 0.004528 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004528 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = 0.027967 + +MotionUnit = 0.003125 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.503125 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.412532, Avmisfit[0] = 0.005575 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005575 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = 0.029014 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.503125 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.695084, Avmisfit[0] = 0.009146 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.009146 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = 0.031335 + +MotionUnit = 0.006250 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.500000 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.037500 acrossB = 0.037500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 79.000000, misfit[0] =1.413873, Avmisfit[0] = 0.017897 +count[1] = 21.000000, misfit[1] =0.393781, Avmisfit[1] = 0.018751 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.017897 Avmisfit[1] = 0.018751 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = 0.036649 + +MotionUnit = 0.006250 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.506250 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.037500 acrossB = 0.037500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 79.000000, misfit[0] =1.149662, Avmisfit[0] = 0.014553 +count[1] = 21.000000, misfit[1] =0.393781, Avmisfit[1] = 0.018751 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.014553 Avmisfit[1] = 0.018751 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = 0.033304 + +MotionUnit = 0.006250 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.512500 PointY[1] = 0.962500 +PointX[2] = 1.000000 PointY[2] = 0.962500 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.037500 acrossB = 0.037500 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 79.000000, misfit[0] =1.004749, Avmisfit[0] = 0.012718 +count[1] = 21.000000, misfit[1] =0.393781, Avmisfit[1] = 0.018751 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.012718 Avmisfit[1] = 0.018751 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.962500 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.962500 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = 0.031470 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.512500 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.658563, Avmisfit[0] = 0.008665 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.008665 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = 0.030855 + +MotionUnit = 0.006250 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.512500 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.466101, Avmisfit[0] = 0.006385 +count[1] = 27.000000, misfit[1] =0.691928, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.006385 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = 0.032012 + +MotionUnit = 0.006250 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.506250 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.288250, Avmisfit[0] = 0.003949 +count[1] = 27.000000, misfit[1] =0.691928, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.003949 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = 0.029576 + +MotionUnit = 0.006250 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.500000 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.374162, Avmisfit[0] = 0.005126 +count[1] = 27.000000, misfit[1] =0.691928, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005126 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = 0.030752 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.500000 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.816884, Avmisfit[0] = 0.010748 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.010748 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = 0.032938 + +MotionUnit = 0.012500 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.493750 PointCopyY[1] = 0.968750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.968750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.493750 PointCopyY[1] = 0.968750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.968750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.493750 PointY[1] = 0.968750 +PointX[2] = 1.000000 PointY[2] = 0.968750 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.031250 acrossB = 0.031250 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 83.000000, misfit[0] =2.690529, Avmisfit[0] = 0.032416 +count[1] = 17.000000, misfit[1] =0.276271, Avmisfit[1] = 0.016251 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.032416 Avmisfit[1] = 0.016251 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.493750 PointCopyY[1] = 0.968750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.968750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = 0.048667 + +MotionUnit = 0.012500 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.968750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.968750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.968750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.968750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.506250 PointY[1] = 0.968750 +PointX[2] = 1.000000 PointY[2] = 0.968750 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.031250 acrossB = 0.031250 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 83.000000, misfit[0] =2.103678, Avmisfit[0] = 0.025346 +count[1] = 17.000000, misfit[1] =0.276271, Avmisfit[1] = 0.016251 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.025346 Avmisfit[1] = 0.016251 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.968750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.968750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = 0.041597 + +MotionUnit = 0.012500 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.518750 PointCopyY[1] = 0.968750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.968750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.518750 PointCopyY[1] = 0.968750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.968750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.518750 PointY[1] = 0.968750 +PointX[2] = 1.000000 PointY[2] = 0.968750 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.031250 acrossB = 0.031250 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 83.000000, misfit[0] =1.837270, Avmisfit[0] = 0.022136 +count[1] = 17.000000, misfit[1] =0.276271, Avmisfit[1] = 0.016251 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.022136 Avmisfit[1] = 0.016251 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.518750 PointCopyY[1] = 0.968750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.968750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = 0.038387 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.518750 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.518750 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.518750 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.816558, Avmisfit[0] = 0.010744 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.010744 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.518750 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = 0.032933 + +MotionUnit = 0.012500 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.518750 PointCopyY[1] = 0.943750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.518750 PointCopyY[1] = 0.943750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.518750 PointY[1] = 0.943750 +PointX[2] = 1.000000 PointY[2] = 0.943750 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.056250 acrossB = 0.056250 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 69.000000, misfit[0] =0.627122, Avmisfit[0] = 0.009089 +count[1] = 31.000000, misfit[1] =0.871944, Avmisfit[1] = 0.028127 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.009089 Avmisfit[1] = 0.028127 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.518750 PointCopyY[1] = 0.943750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = 0.037216 + +MotionUnit = 0.012500 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.943750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.943750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.506250 PointY[1] = 0.943750 +PointX[2] = 1.000000 PointY[2] = 0.943750 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.056250 acrossB = 0.056250 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 69.000000, misfit[0] =0.207996, Avmisfit[0] = 0.003014 +count[1] = 31.000000, misfit[1] =0.871944, Avmisfit[1] = 0.028127 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.003014 Avmisfit[1] = 0.028127 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.943750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = 0.031142 + +MotionUnit = 0.012500 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.493750 PointCopyY[1] = 0.943750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.493750 PointCopyY[1] = 0.943750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.493750 PointY[1] = 0.943750 +PointX[2] = 1.000000 PointY[2] = 0.943750 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.056250 acrossB = 0.056250 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 69.000000, misfit[0] =0.256580, Avmisfit[0] = 0.003719 +count[1] = 31.000000, misfit[1] =0.871944, Avmisfit[1] = 0.028127 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.003719 Avmisfit[1] = 0.028127 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.493750 PointCopyY[1] = 0.943750 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.943750 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = 0.031846 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.493750 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.493750 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.493750 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =1.068390, Avmisfit[0] = 0.014058 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.014058 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.493750 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = 0.036247 + +MoveMisfit[0][0] = 0.034343 +MoveMisfit[0][1] = 0.032751 +MoveMisfit[0][2] = 0.031539 +MoveMisfit[0][3] = 0.029815 +MoveMisfit[0][4] = 0.029012 +MoveMisfit[0][5] = 0.027967 +MoveMisfit[0][6] = 0.029014 +MoveMisfit[0][7] = 0.031335 +MoveMisfit[1][0] = 0.036649 +MoveMisfit[1][1] = 0.033304 +MoveMisfit[1][2] = 0.031470 +MoveMisfit[1][3] = 0.030855 +MoveMisfit[1][4] = 0.032012 +MoveMisfit[1][5] = 0.029576 +MoveMisfit[1][6] = 0.030752 +MoveMisfit[1][7] = 0.032938 +MoveMisfit[2][0] = 0.048667 +MoveMisfit[2][1] = 0.041597 +MoveMisfit[2][2] = 0.038387 +MoveMisfit[2][3] = 0.032933 +MoveMisfit[2][4] = 0.037216 +MoveMisfit[2][5] = 0.031142 +MoveMisfit[2][6] = 0.031846 +MoveMisfit[2][7] = 0.036247 +Minimum misfit = 0.027967 cont = 0 No. = 5 +Point 1 location changed from (0.506250,0.956250) to (0.506250,0.953125) +MISFIT reduced to 0.027967 +Move[1] changed to 0.003125 + +Point 2 +Move[2] = 0.000391 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.335042, Avmisfit[0] = 0.004528 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004528 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.027967 + +MotionUnit = 0.000195 +BaselineHeight = 0.999805 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953320 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953320 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953320 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.000195 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953320 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953320 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953320 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.000195 +OUTSIDEBOX +BaselineHeight = 1.000195 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953320 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953320 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953320 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000195 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.000195 +OUTSIDEBOX +BaselineHeight = 1.000195 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952930 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952930 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952930 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.000195 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952930 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952930 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952930 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.000195 +BaselineHeight = 0.999805 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952930 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952930 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952930 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.999805 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.000391 +BaselineHeight = 0.999609 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953516 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953516 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953516 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.000391 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953516 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953516 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953516 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.000391 +OUTSIDEBOX +BaselineHeight = 1.000391 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953516 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953516 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953516 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000391 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.000391 +OUTSIDEBOX +BaselineHeight = 1.000391 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952734 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952734 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952734 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.000391 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952734 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952734 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952734 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.000391 +BaselineHeight = 0.999609 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952734 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952734 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952734 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.999609 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.000781 +BaselineHeight = 0.999219 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953906 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953906 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953906 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.000781 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.000781 +OUTSIDEBOX +BaselineHeight = 1.000781 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000781 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.000781 +OUTSIDEBOX +BaselineHeight = 1.000781 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000781 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.000781 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.000781 +BaselineHeight = 0.999219 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952344 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952344 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952344 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.999219 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999219 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +Minimum misfit = 1000000.000000 cont = 0 No. = 5 +Existing point was at least equal best fit, no change +But, Move[2] shrunk anyway to 0.000195 + +Point 3 +Move[3] = 0.000391 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.335042, Avmisfit[0] = 0.004528 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004528 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.027967 + +MotionUnit = 0.000195 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 1.000195 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 1.000195 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 1.000195 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.000195 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000195 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000195 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000195 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.000195 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 1.000195 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 1.000195 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 1.000195 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000195 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.000195 +OUTSIDEBOX +BaselineHeight = 1.000195 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 0.999805 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 0.999805 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 0.999805 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.000195 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999805 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999805 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999805 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.000195 +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 0.999805 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 0.999805 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 0.999805 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.000391 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999609 PointCopyY[3] = 1.000391 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999609 PointCopyY[3] = 1.000391 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999609 PointCopyY[3] = 1.000391 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.000391 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000391 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000391 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000391 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.000391 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000391 PointCopyY[3] = 1.000391 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000391 PointCopyY[3] = 1.000391 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000391 PointCopyY[3] = 1.000391 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000391 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000391 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000391 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000391 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.000391 +OUTSIDEBOX +BaselineHeight = 1.000391 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000391 PointCopyY[3] = 0.999609 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000391 PointCopyY[3] = 0.999609 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000391 PointCopyY[3] = 0.999609 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.000391 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999609 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999609 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999609 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.000391 +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999609 PointCopyY[3] = 0.999609 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999609 PointCopyY[3] = 0.999609 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999609 PointCopyY[3] = 0.999609 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999609 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999609 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999609 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.000781 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999219 PointCopyY[3] = 1.000781 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999219 PointCopyY[3] = 1.000781 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999219 PointCopyY[3] = 1.000781 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.000781 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000781 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000781 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000781 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.000781 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000781 PointCopyY[3] = 1.000781 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000781 PointCopyY[3] = 1.000781 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000781 PointCopyY[3] = 1.000781 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000781 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000781 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000781 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000781 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.000781 +OUTSIDEBOX +BaselineHeight = 1.000781 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000781 PointCopyY[3] = 0.999219 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000781 PointCopyY[3] = 0.999219 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000781 PointCopyY[3] = 0.999219 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.000781 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999219 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999219 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999219 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.000781 +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999219 PointCopyY[3] = 0.999219 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999219 PointCopyY[3] = 0.999219 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999219 PointCopyY[3] = 0.999219 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999219 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999219 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999219 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +Minimum misfit = 1000000.000000 cont = 0 No. = 5 +Existing point was at least equal best fit, no change +But, Move[3] shrunk anyway to 0.000195 +Itteration = 9 + +Point 0 +Move[0] = 0.003125 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.335042, Avmisfit[0] = 0.004528 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004528 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.027967 + +MotionUnit = 0.001563 +PointCopyX[0] = 0.001563 PointCopyY[0] = 0.004688 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.001563 PointCopyY[0] = 0.004688 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.001563 PointY[0] = 0.004688 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.342189, Avmisfit[0] = 0.004624 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.141248, Avmisfit[3] = 0.000785 +Avmisfit[0] = 0.004624 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000785 +PointCopyX[0] = 0.001563 PointCopyY[0] = 0.004688 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = 0.028848 + +MotionUnit = 0.001563 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.004688 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.004688 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.004688 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.312747, Avmisfit[0] = 0.004226 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.070735, Avmisfit[3] = 0.000393 +Avmisfit[0] = 0.004226 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000393 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.004688 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = 0.028059 + +MotionUnit = 0.001563 +PointCopyX[0] = 0.004688 PointCopyY[0] = 0.004688 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.004688 PointCopyY[0] = 0.004688 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.004688 PointY[0] = 0.004688 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.358142, Avmisfit[0] = 0.004840 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004840 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.004688 PointCopyY[0] = 0.004688 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = 0.028279 + +MotionUnit = 0.000000 +BaselineHeight = 0.004688 BELOW BASELINE +PointCopyX[0] = 0.004688 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.004688 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.004688 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.001563 +BaselineHeight = 0.004688 BELOW BASELINE +PointCopyX[0] = 0.004688 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.004688 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.004688 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.001563 +BaselineHeight = 0.003125 BELOW BASELINE +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.001563 +PointCopyX[0] = 0.001563 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.001563 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.001563 PointY[0] = 0.001563 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.314869, Avmisfit[0] = 0.004255 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004255 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.001563 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = 0.027694 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.001563 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.001563 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.001563 PointY[0] = 0.003125 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.313323, Avmisfit[0] = 0.004234 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.070623, Avmisfit[3] = 0.000392 +Avmisfit[0] = 0.004234 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000392 +PointCopyX[0] = 0.001563 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = 0.028066 + +MotionUnit = 0.003125 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.006250 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.425578, Avmisfit[0] = 0.005751 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.282054, Avmisfit[3] = 0.001567 +Avmisfit[0] = 0.005751 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.001567 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = 0.030757 + +MotionUnit = 0.003125 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.006250 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.316725, Avmisfit[0] = 0.004280 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.141468, Avmisfit[3] = 0.000786 +Avmisfit[0] = 0.004280 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000786 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = 0.028505 + +MotionUnit = 0.003125 +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.006250 PointY[0] = 0.006250 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.382344, Avmisfit[0] = 0.005167 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005167 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = 0.028606 + +MotionUnit = 0.000000 +BaselineHeight = 0.006250 BELOW BASELINE +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.003125 +BaselineHeight = 0.006250 BELOW BASELINE +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.003125 +BaselineHeight = 0.003125 BELOW BASELINE +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.003125 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.309944, Avmisfit[0] = 0.004188 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004188 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = 0.027628 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.003125 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.367571, Avmisfit[0] = 0.004967 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.141027, Avmisfit[3] = 0.000783 +Avmisfit[0] = 0.004967 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000783 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = 0.029190 + +MotionUnit = 0.006250 +OUTSIDEBOX +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.009375 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.009375 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.009375 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.006250 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.009375 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.009375 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.009375 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.374756, Avmisfit[0] = 0.005064 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.282940, Avmisfit[3] = 0.001572 +Avmisfit[0] = 0.005064 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.001572 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.009375 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = 0.030076 + +MotionUnit = 0.006250 +PointCopyX[0] = 0.009375 PointCopyY[0] = 0.009375 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.009375 PointCopyY[0] = 0.009375 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.009375 PointY[0] = 0.009375 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.432247, Avmisfit[0] = 0.005841 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005841 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.009375 PointCopyY[0] = 0.009375 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = 0.029281 + +MotionUnit = 0.000000 +BaselineHeight = 0.009375 BELOW BASELINE +PointCopyX[0] = 0.009375 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.009375 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.009375 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +BaselineHeight = 0.009375 BELOW BASELINE +PointCopyX[0] = 0.009375 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.009375 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.009375 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +BaselineHeight = 0.003125 BELOW BASELINE +PointCopyX[0] = 0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +PointCopyX[0] = -0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +MoveMisfit[0][0] = 0.028848 +MoveMisfit[0][1] = 0.028059 +MoveMisfit[0][2] = 0.028279 +MoveMisfit[0][6] = 0.027694 +MoveMisfit[0][7] = 0.028066 +MoveMisfit[1][0] = 0.030757 +MoveMisfit[1][1] = 0.028505 +MoveMisfit[1][2] = 0.028606 +MoveMisfit[1][6] = 0.027628 +MoveMisfit[1][7] = 0.029190 +MoveMisfit[2][1] = 0.030076 +MoveMisfit[2][2] = 0.029281 +Minimum misfit = 0.027628 cont = 1 No. = 6 +Point 0 location changed from (0.003125,0.003125) to (0.000000,0.000000) +MISFIT reduced to 0.027628 + +Point 1 +Move[1] = 0.003125 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.309944, Avmisfit[0] = 0.004188 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004188 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.027628 + +MotionUnit = 0.001562 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.504687 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.504687 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.504687 PointY[1] = 0.954687 +PointX[2] = 1.000000 PointY[2] = 0.954687 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.045313 acrossB = 0.045313 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 75.000000, misfit[0] =0.506844, Avmisfit[0] = 0.006758 +count[1] = 25.000000, misfit[1] =0.570358, Avmisfit[1] = 0.022814 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.006758 Avmisfit[1] = 0.022814 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.504687 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = 0.029572 + +MotionUnit = 0.001562 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.954687 +PointX[2] = 1.000000 PointY[2] = 0.954687 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.045313 acrossB = 0.045313 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 75.000000, misfit[0] =0.443830, Avmisfit[0] = 0.005918 +count[1] = 25.000000, misfit[1] =0.570358, Avmisfit[1] = 0.022814 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005918 Avmisfit[1] = 0.022814 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = 0.028732 + +MotionUnit = 0.001562 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507812 PointY[1] = 0.954687 +PointX[2] = 1.000000 PointY[2] = 0.954687 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.045313 acrossB = 0.045313 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 75.000000, misfit[0] =0.395866, Avmisfit[0] = 0.005278 +count[1] = 25.000000, misfit[1] =0.570358, Avmisfit[1] = 0.022814 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005278 Avmisfit[1] = 0.022814 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = 0.028093 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507812 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.319018, Avmisfit[0] = 0.004311 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004311 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = 0.027750 + +MotionUnit = 0.001562 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507812 PointY[1] = 0.951562 +PointX[2] = 1.000000 PointY[2] = 0.951562 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.048438 acrossB = 0.048438 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.341930, Avmisfit[0] = 0.004621 +count[1] = 26.000000, misfit[1] =0.650048, Avmisfit[1] = 0.025002 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004621 Avmisfit[1] = 0.025002 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = 0.029623 + +MotionUnit = 0.001562 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.951562 +PointX[2] = 1.000000 PointY[2] = 0.951562 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.048438 acrossB = 0.048438 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.298926, Avmisfit[0] = 0.004040 +count[1] = 26.000000, misfit[1] =0.650048, Avmisfit[1] = 0.025002 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004040 Avmisfit[1] = 0.025002 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = 0.029041 + +MotionUnit = 0.001562 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.504687 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.504687 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.504687 PointY[1] = 0.951562 +PointX[2] = 1.000000 PointY[2] = 0.951562 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.048438 acrossB = 0.048438 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.338852, Avmisfit[0] = 0.004579 +count[1] = 26.000000, misfit[1] =0.650048, Avmisfit[1] = 0.025002 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004579 Avmisfit[1] = 0.025002 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.504687 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = 0.029581 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.504687 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.504687 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.504687 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.371499, Avmisfit[0] = 0.005020 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005020 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.504687 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = 0.028460 + +MotionUnit = 0.003125 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.503125 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.722948, Avmisfit[0] = 0.009512 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.009512 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = 0.031702 + +MotionUnit = 0.003125 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.594004, Avmisfit[0] = 0.007816 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.007816 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = 0.030005 + +MotionUnit = 0.003125 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.509375 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.528860, Avmisfit[0] = 0.006959 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.006959 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = 0.029148 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.509375 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.361953, Avmisfit[0] = 0.004891 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004891 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = 0.028331 + +MotionUnit = 0.003125 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.509375 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.327107, Avmisfit[0] = 0.004481 +count[1] = 27.000000, misfit[1] =0.691928, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004481 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = 0.030108 + +MotionUnit = 0.003125 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.237826, Avmisfit[0] = 0.003258 +count[1] = 27.000000, misfit[1] =0.691928, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.003258 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = 0.028885 + +MotionUnit = 0.003125 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.503125 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.280709, Avmisfit[0] = 0.003845 +count[1] = 27.000000, misfit[1] =0.691928, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.003845 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = 0.029472 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.503125 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.433056, Avmisfit[0] = 0.005852 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005852 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = 0.029291 + +MotionUnit = 0.006250 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.959375 +PointX[2] = 1.000000 PointY[2] = 0.959375 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.040625 acrossB = 0.040625 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 78.000000, misfit[0] =1.212724, Avmisfit[0] = 0.015548 +count[1] = 22.000000, misfit[1] =0.460659, Avmisfit[1] = 0.020939 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.015548 Avmisfit[1] = 0.020939 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = 0.036487 + +MotionUnit = 0.006250 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.959375 +PointX[2] = 1.000000 PointY[2] = 0.959375 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.040625 acrossB = 0.040625 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 78.000000, misfit[0] =0.943195, Avmisfit[0] = 0.012092 +count[1] = 22.000000, misfit[1] =0.460659, Avmisfit[1] = 0.020939 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.012092 Avmisfit[1] = 0.020939 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = 0.033031 + +MotionUnit = 0.006250 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.512500 PointY[1] = 0.959375 +PointX[2] = 1.000000 PointY[2] = 0.959375 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.040625 acrossB = 0.040625 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 78.000000, misfit[0] =0.834491, Avmisfit[0] = 0.010699 +count[1] = 22.000000, misfit[1] =0.460659, Avmisfit[1] = 0.020939 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.010699 Avmisfit[1] = 0.020939 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.959375 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.959375 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = 0.031638 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.512500 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.447823, Avmisfit[0] = 0.006052 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.006052 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = 0.029491 + +MotionUnit = 0.006250 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.946875 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.946875 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.512500 PointY[1] = 0.946875 +PointX[2] = 1.000000 PointY[2] = 0.946875 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.053125 acrossB = 0.053125 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 71.000000, misfit[0] =0.356737, Avmisfit[0] = 0.005024 +count[1] = 29.000000, misfit[1] =0.779436, Avmisfit[1] = 0.026877 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005024 Avmisfit[1] = 0.026877 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.512500 PointCopyY[1] = 0.946875 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = 0.031902 + +MotionUnit = 0.006250 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.946875 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.946875 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.946875 +PointX[2] = 1.000000 PointY[2] = 0.946875 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.053125 acrossB = 0.053125 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 71.000000, misfit[0] =0.165065, Avmisfit[0] = 0.002325 +count[1] = 29.000000, misfit[1] =0.779436, Avmisfit[1] = 0.026877 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.002325 Avmisfit[1] = 0.026877 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.946875 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = 0.029202 + +MotionUnit = 0.006250 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.946875 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.946875 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.946875 +PointX[2] = 1.000000 PointY[2] = 0.946875 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.053125 acrossB = 0.053125 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 71.000000, misfit[0] =0.204508, Avmisfit[0] = 0.002880 +count[1] = 29.000000, misfit[1] =0.779436, Avmisfit[1] = 0.026877 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.002880 Avmisfit[1] = 0.026877 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.946875 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.946875 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = 0.029758 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.500000 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.556166, Avmisfit[0] = 0.007516 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.007516 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.500000 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = 0.030955 + +MoveMisfit[0][0] = 0.029572 +MoveMisfit[0][1] = 0.028732 +MoveMisfit[0][2] = 0.028093 +MoveMisfit[0][3] = 0.027750 +MoveMisfit[0][4] = 0.029623 +MoveMisfit[0][5] = 0.029041 +MoveMisfit[0][6] = 0.029581 +MoveMisfit[0][7] = 0.028460 +MoveMisfit[1][0] = 0.031702 +MoveMisfit[1][1] = 0.030005 +MoveMisfit[1][2] = 0.029148 +MoveMisfit[1][3] = 0.028331 +MoveMisfit[1][4] = 0.030108 +MoveMisfit[1][5] = 0.028885 +MoveMisfit[1][6] = 0.029472 +MoveMisfit[1][7] = 0.029291 +MoveMisfit[2][0] = 0.036487 +MoveMisfit[2][1] = 0.033031 +MoveMisfit[2][2] = 0.031638 +MoveMisfit[2][3] = 0.029491 +MoveMisfit[2][4] = 0.031902 +MoveMisfit[2][5] = 0.029202 +MoveMisfit[2][6] = 0.029758 +MoveMisfit[2][7] = 0.030955 +Minimum misfit = 0.027750 cont = 0 No. = 3 +Existing point was at least equal best fit, no change +But, Move[1] shrunk anyway to 0.001563 + +Point 2 +Move[2] = 0.000195 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.309944, Avmisfit[0] = 0.004188 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004188 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.027628 + +MotionUnit = 0.000098 +BaselineHeight = 0.999902 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953223 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953223 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953223 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.000098 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953223 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953223 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953223 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.000098 +OUTSIDEBOX +BaselineHeight = 1.000098 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953223 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953223 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953223 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000098 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.000098 +OUTSIDEBOX +BaselineHeight = 1.000098 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953027 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953027 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953027 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.000098 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953027 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953027 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953027 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.000098 +BaselineHeight = 0.999902 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953027 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953027 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953027 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.999902 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.000195 +BaselineHeight = 0.999805 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953320 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953320 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953320 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.000195 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953320 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953320 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953320 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.000195 +OUTSIDEBOX +BaselineHeight = 1.000195 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953320 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953320 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953320 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000195 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.000195 +OUTSIDEBOX +BaselineHeight = 1.000195 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952930 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952930 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952930 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.000195 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952930 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952930 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952930 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.000195 +BaselineHeight = 0.999805 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952930 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952930 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952930 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.999805 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.000391 +BaselineHeight = 0.999609 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953516 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953516 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953516 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.000391 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953516 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953516 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953516 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.000391 +OUTSIDEBOX +BaselineHeight = 1.000391 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953516 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953516 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953516 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000391 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.000391 +OUTSIDEBOX +BaselineHeight = 1.000391 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952734 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952734 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952734 +PointCopyX[2] = 1.000391 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.000391 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952734 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952734 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952734 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.000391 +BaselineHeight = 0.999609 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952734 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952734 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952734 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.999609 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999609 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +Minimum misfit = 1000000.000000 cont = 0 No. = 3 +Existing point was at least equal best fit, no change +But, Move[2] shrunk anyway to 0.000098 + +Point 3 +Move[3] = 0.000195 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.309944, Avmisfit[0] = 0.004188 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004188 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.027628 + +MotionUnit = 0.000098 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 1.000098 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 1.000098 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 1.000098 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.000098 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000098 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000098 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000098 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.000098 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 1.000098 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 1.000098 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 1.000098 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000098 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.000098 +OUTSIDEBOX +BaselineHeight = 1.000098 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 0.999902 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 0.999902 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 0.999902 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.000098 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999902 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999902 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999902 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.000098 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 0.999902 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 0.999902 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 0.999902 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.000195 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 1.000195 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 1.000195 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 1.000195 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.000195 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000195 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000195 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000195 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.000195 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 1.000195 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 1.000195 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 1.000195 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000195 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.000195 +OUTSIDEBOX +BaselineHeight = 1.000195 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 0.999805 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 0.999805 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 0.999805 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.000195 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999805 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999805 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999805 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.000195 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 0.999805 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 0.999805 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 0.999805 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.000391 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999609 PointCopyY[3] = 1.000391 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999609 PointCopyY[3] = 1.000391 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999609 PointCopyY[3] = 1.000391 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.000391 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000391 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000391 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000391 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.000391 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000391 PointCopyY[3] = 1.000391 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000391 PointCopyY[3] = 1.000391 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000391 PointCopyY[3] = 1.000391 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000391 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000391 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000391 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000391 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.000391 +OUTSIDEBOX +BaselineHeight = 1.000391 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000391 PointCopyY[3] = 0.999609 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000391 PointCopyY[3] = 0.999609 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000391 PointCopyY[3] = 0.999609 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.000391 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999609 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999609 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999609 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.000391 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999609 PointCopyY[3] = 0.999609 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999609 PointCopyY[3] = 0.999609 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999609 PointCopyY[3] = 0.999609 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999609 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999609 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999609 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +Minimum misfit = 1000000.000000 cont = 0 No. = 3 +Existing point was at least equal best fit, no change +But, Move[3] shrunk anyway to 0.000098 +Itteration = 10 + +Point 0 +Move[0] = 0.003125 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.309944, Avmisfit[0] = 0.004188 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004188 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.027628 + +MotionUnit = 0.001563 +OUTSIDEBOX +PointCopyX[0] = -0.001563 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = -0.001563 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = -0.001563 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.001563 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.001563 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.338710, Avmisfit[0] = 0.004577 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.070515, Avmisfit[3] = 0.000392 +Avmisfit[0] = 0.004577 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000392 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = 0.028408 + +MotionUnit = 0.001563 +PointCopyX[0] = 0.001563 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.001563 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.001563 PointY[0] = 0.001563 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.314869, Avmisfit[0] = 0.004255 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004255 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.001563 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = 0.027694 + +MotionUnit = 0.000000 +BaselineHeight = 0.001563 BELOW BASELINE +PointCopyX[0] = 0.001563 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.001563 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.001563 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.001563 +OUTSIDEBOX +BaselineHeight = 0.001563 BELOW BASELINE +PointCopyX[0] = 0.001563 PointCopyY[0] = -0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.001563 PointCopyY[0] = -0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.001563 PointCopyY[0] = -0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.001563 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.001563 +OUTSIDEBOX +PointCopyX[0] = -0.001563 PointCopyY[0] = -0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = -0.001563 PointCopyY[0] = -0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = -0.001563 PointCopyY[0] = -0.001563 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.001563 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = -0.001563 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = -0.001563 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.003125 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.003125 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.367571, Avmisfit[0] = 0.004967 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.141027, Avmisfit[3] = 0.000783 +Avmisfit[0] = 0.004967 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000783 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = 0.029190 + +MotionUnit = 0.003125 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.335042, Avmisfit[0] = 0.004528 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004528 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = 0.027967 + +MotionUnit = 0.000000 +BaselineHeight = 0.003125 BELOW BASELINE +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +BaselineHeight = 0.003125 BELOW BASELINE +PointCopyX[0] = 0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +PointCopyX[0] = -0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +PointCopyX[0] = -0.006250 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = -0.006250 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = -0.006250 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.006250 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.006250 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.425578, Avmisfit[0] = 0.005751 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.282054, Avmisfit[3] = 0.001567 +Avmisfit[0] = 0.005751 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.001567 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = 0.030757 + +MotionUnit = 0.006250 +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.006250 PointY[0] = 0.006250 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.382344, Avmisfit[0] = 0.005167 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005167 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = 0.028606 + +MotionUnit = 0.000000 +BaselineHeight = 0.006250 BELOW BASELINE +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +BaselineHeight = 0.006250 BELOW BASELINE +PointCopyX[0] = 0.006250 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.006250 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.006250 +OUTSIDEBOX +PointCopyX[0] = -0.006250 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = -0.006250 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = -0.006250 PointCopyY[0] = -0.006250 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.006250 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = -0.006250 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = -0.006250 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +MoveMisfit[0][1] = 0.028408 +MoveMisfit[0][2] = 0.027694 +MoveMisfit[1][1] = 0.029190 +MoveMisfit[1][2] = 0.027967 +MoveMisfit[2][1] = 0.030757 +MoveMisfit[2][2] = 0.028606 +Minimum misfit = 0.027694 cont = 0 No. = 2 +Existing point was at least equal best fit, no change +But, Move[0] shrunk anyway to 0.001563 + +Point 1 +Move[1] = 0.001563 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.309944, Avmisfit[0] = 0.004188 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004188 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.027628 + +MotionUnit = 0.000781 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.505469 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.505469 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.505469 PointY[1] = 0.953906 +PointX[2] = 1.000000 PointY[2] = 0.953906 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046094 acrossB = 0.046094 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 75.000000, misfit[0] =0.458642, Avmisfit[0] = 0.006115 +count[1] = 25.000000, misfit[1] =0.589889, Avmisfit[1] = 0.023596 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.006115 Avmisfit[1] = 0.023596 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.505469 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = 0.029711 + +MotionUnit = 0.000781 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.953906 +PointX[2] = 1.000000 PointY[2] = 0.953906 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046094 acrossB = 0.046094 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 75.000000, misfit[0] =0.427109, Avmisfit[0] = 0.005695 +count[1] = 25.000000, misfit[1] =0.589889, Avmisfit[1] = 0.023596 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005695 Avmisfit[1] = 0.023596 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = 0.029290 + +MotionUnit = 0.000781 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507031 PointY[1] = 0.953906 +PointX[2] = 1.000000 PointY[2] = 0.953906 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046094 acrossB = 0.046094 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 75.000000, misfit[0] =0.395577, Avmisfit[0] = 0.005274 +count[1] = 25.000000, misfit[1] =0.589889, Avmisfit[1] = 0.023596 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005274 Avmisfit[1] = 0.023596 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = 0.028870 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507031 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.297551, Avmisfit[0] = 0.004021 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004021 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = 0.027460 + +MotionUnit = 0.000781 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507031 PointY[1] = 0.952344 +PointX[2] = 1.000000 PointY[2] = 0.952344 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.047656 acrossB = 0.047656 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.308980, Avmisfit[0] = 0.004175 +count[1] = 26.000000, misfit[1] =0.629736, Avmisfit[1] = 0.024221 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004175 Avmisfit[1] = 0.024221 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = 0.028396 + +MotionUnit = 0.000781 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.952344 +PointX[2] = 1.000000 PointY[2] = 0.952344 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.047656 acrossB = 0.047656 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.293583, Avmisfit[0] = 0.003967 +count[1] = 26.000000, misfit[1] =0.629736, Avmisfit[1] = 0.024221 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.003967 Avmisfit[1] = 0.024221 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = 0.028188 + +MotionUnit = 0.000781 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.505469 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.505469 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.505469 PointY[1] = 0.952344 +PointX[2] = 1.000000 PointY[2] = 0.952344 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.047656 acrossB = 0.047656 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.324386, Avmisfit[0] = 0.004384 +count[1] = 26.000000, misfit[1] =0.629736, Avmisfit[1] = 0.024221 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004384 Avmisfit[1] = 0.024221 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.505469 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = 0.028604 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.505469 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.505469 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.505469 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.340721, Avmisfit[0] = 0.004604 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004604 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.505469 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = 0.028044 + +MotionUnit = 0.001562 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.504687 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.504687 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.504687 PointY[1] = 0.954687 +PointX[2] = 1.000000 PointY[2] = 0.954687 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.045313 acrossB = 0.045313 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 75.000000, misfit[0] =0.506844, Avmisfit[0] = 0.006758 +count[1] = 25.000000, misfit[1] =0.570358, Avmisfit[1] = 0.022814 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.006758 Avmisfit[1] = 0.022814 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.504687 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = 0.029572 + +MotionUnit = 0.001562 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.954687 +PointX[2] = 1.000000 PointY[2] = 0.954687 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.045313 acrossB = 0.045313 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 75.000000, misfit[0] =0.443830, Avmisfit[0] = 0.005918 +count[1] = 25.000000, misfit[1] =0.570358, Avmisfit[1] = 0.022814 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005918 Avmisfit[1] = 0.022814 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = 0.028732 + +MotionUnit = 0.001562 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507812 PointY[1] = 0.954687 +PointX[2] = 1.000000 PointY[2] = 0.954687 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.045313 acrossB = 0.045313 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 75.000000, misfit[0] =0.395866, Avmisfit[0] = 0.005278 +count[1] = 25.000000, misfit[1] =0.570358, Avmisfit[1] = 0.022814 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005278 Avmisfit[1] = 0.022814 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = 0.028093 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507812 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.319018, Avmisfit[0] = 0.004311 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004311 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = 0.027750 + +MotionUnit = 0.001562 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507812 PointY[1] = 0.951562 +PointX[2] = 1.000000 PointY[2] = 0.951562 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.048438 acrossB = 0.048438 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.341930, Avmisfit[0] = 0.004621 +count[1] = 26.000000, misfit[1] =0.650048, Avmisfit[1] = 0.025002 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004621 Avmisfit[1] = 0.025002 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = 0.029623 + +MotionUnit = 0.001562 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.951562 +PointX[2] = 1.000000 PointY[2] = 0.951562 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.048438 acrossB = 0.048438 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.298926, Avmisfit[0] = 0.004040 +count[1] = 26.000000, misfit[1] =0.650048, Avmisfit[1] = 0.025002 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004040 Avmisfit[1] = 0.025002 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = 0.029041 + +MotionUnit = 0.001562 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.504687 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.504687 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.504687 PointY[1] = 0.951562 +PointX[2] = 1.000000 PointY[2] = 0.951562 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.048438 acrossB = 0.048438 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.338852, Avmisfit[0] = 0.004579 +count[1] = 26.000000, misfit[1] =0.650048, Avmisfit[1] = 0.025002 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004579 Avmisfit[1] = 0.025002 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.504687 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = 0.029581 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.504687 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.504687 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.504687 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.371499, Avmisfit[0] = 0.005020 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005020 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.504687 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = 0.028460 + +MotionUnit = 0.003125 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.503125 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.722948, Avmisfit[0] = 0.009512 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.009512 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = 0.031702 + +MotionUnit = 0.003125 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.594004, Avmisfit[0] = 0.007816 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.007816 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = 0.030005 + +MotionUnit = 0.003125 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.509375 PointY[1] = 0.956250 +PointX[2] = 1.000000 PointY[2] = 0.956250 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.043750 acrossB = 0.043750 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 76.000000, misfit[0] =0.528860, Avmisfit[0] = 0.006959 +count[1] = 24.000000, misfit[1] =0.532541, Avmisfit[1] = 0.022189 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.006959 Avmisfit[1] = 0.022189 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.956250 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.956250 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = 0.029148 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.509375 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.361953, Avmisfit[0] = 0.004891 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004891 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = 0.028331 + +MotionUnit = 0.003125 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.509375 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.327107, Avmisfit[0] = 0.004481 +count[1] = 27.000000, misfit[1] =0.691928, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004481 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.509375 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = 0.030108 + +MotionUnit = 0.003125 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.237826, Avmisfit[0] = 0.003258 +count[1] = 27.000000, misfit[1] =0.691928, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.003258 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = 0.028885 + +MotionUnit = 0.003125 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.503125 PointY[1] = 0.950000 +PointX[2] = 1.000000 PointY[2] = 0.950000 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.050000 acrossB = 0.050000 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 73.000000, misfit[0] =0.280709, Avmisfit[0] = 0.003845 +count[1] = 27.000000, misfit[1] =0.691928, Avmisfit[1] = 0.025627 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.003845 Avmisfit[1] = 0.025627 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.950000 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.950000 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = 0.029472 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.503125 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.433056, Avmisfit[0] = 0.005852 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005852 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.503125 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = 0.029291 + +MoveMisfit[0][0] = 0.029711 +MoveMisfit[0][1] = 0.029290 +MoveMisfit[0][2] = 0.028870 +MoveMisfit[0][3] = 0.027460 +MoveMisfit[0][4] = 0.028396 +MoveMisfit[0][5] = 0.028188 +MoveMisfit[0][6] = 0.028604 +MoveMisfit[0][7] = 0.028044 +MoveMisfit[1][0] = 0.029572 +MoveMisfit[1][1] = 0.028732 +MoveMisfit[1][2] = 0.028093 +MoveMisfit[1][3] = 0.027750 +MoveMisfit[1][4] = 0.029623 +MoveMisfit[1][5] = 0.029041 +MoveMisfit[1][6] = 0.029581 +MoveMisfit[1][7] = 0.028460 +MoveMisfit[2][0] = 0.031702 +MoveMisfit[2][1] = 0.030005 +MoveMisfit[2][2] = 0.029148 +MoveMisfit[2][3] = 0.028331 +MoveMisfit[2][4] = 0.030108 +MoveMisfit[2][5] = 0.028885 +MoveMisfit[2][6] = 0.029472 +MoveMisfit[2][7] = 0.029291 +Minimum misfit = 0.027460 cont = 0 No. = 3 +Point 1 location changed from (0.506250,0.953125) to (0.507031,0.953125) +MISFIT reduced to 0.027460 +Move[1] changed to 0.000781 + +Point 2 +Move[2] = 0.000098 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507031 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507031 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.297551, Avmisfit[0] = 0.004021 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004021 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.027460 + +MotionUnit = 0.000049 +BaselineHeight = 0.999951 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953174 +PointCopyX[2] = 0.999951 PointCopyY[2] = 0.953174 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953174 +PointCopyX[2] = 0.999951 PointCopyY[2] = 0.953174 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953174 +PointCopyX[2] = 0.999951 PointCopyY[2] = 0.953174 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.000049 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953174 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953174 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953174 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953174 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953174 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953174 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.000049 +OUTSIDEBOX +BaselineHeight = 1.000049 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953174 +PointCopyX[2] = 1.000049 PointCopyY[2] = 0.953174 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953174 +PointCopyX[2] = 1.000049 PointCopyY[2] = 0.953174 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953174 +PointCopyX[2] = 1.000049 PointCopyY[2] = 0.953174 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000049 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000049 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000049 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000049 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.000049 +OUTSIDEBOX +BaselineHeight = 1.000049 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953076 +PointCopyX[2] = 1.000049 PointCopyY[2] = 0.953076 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953076 +PointCopyX[2] = 1.000049 PointCopyY[2] = 0.953076 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953076 +PointCopyX[2] = 1.000049 PointCopyY[2] = 0.953076 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.000049 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953076 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953076 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953076 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953076 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953076 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953076 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.000049 +BaselineHeight = 0.999951 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953076 +PointCopyX[2] = 0.999951 PointCopyY[2] = 0.953076 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953076 +PointCopyX[2] = 0.999951 PointCopyY[2] = 0.953076 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953076 +PointCopyX[2] = 0.999951 PointCopyY[2] = 0.953076 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.999951 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999951 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999951 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999951 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.000098 +BaselineHeight = 0.999902 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953223 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953223 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953223 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.000098 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953223 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953223 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953223 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.000098 +OUTSIDEBOX +BaselineHeight = 1.000098 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953223 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953223 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953223 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000098 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.000098 +OUTSIDEBOX +BaselineHeight = 1.000098 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953027 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953027 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953027 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.000098 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953027 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953027 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953027 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.000098 +BaselineHeight = 0.999902 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953027 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953027 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953027 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.999902 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.000195 +BaselineHeight = 0.999805 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953320 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953320 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953320 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.000195 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953320 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953320 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953320 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.000195 +OUTSIDEBOX +BaselineHeight = 1.000195 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953320 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953320 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953320 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.953320 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000195 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.000195 +OUTSIDEBOX +BaselineHeight = 1.000195 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.952930 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.952930 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.952930 +PointCopyX[2] = 1.000195 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.000195 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.952930 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.952930 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.952930 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.000195 +BaselineHeight = 0.999805 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.952930 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.952930 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.952930 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.952930 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.999805 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999805 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +Minimum misfit = 1000000.000000 cont = 0 No. = 3 +Existing point was at least equal best fit, no change +But, Move[2] shrunk anyway to 0.000049 + +Point 3 +Move[3] = 0.000098 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507031 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507031 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.297551, Avmisfit[0] = 0.004021 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004021 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.027460 + +MotionUnit = 0.000049 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999951 PointCopyY[3] = 1.000049 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999951 PointCopyY[3] = 1.000049 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999951 PointCopyY[3] = 1.000049 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.000049 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000049 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000049 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000049 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.000049 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000049 PointCopyY[3] = 1.000049 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000049 PointCopyY[3] = 1.000049 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000049 PointCopyY[3] = 1.000049 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000049 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000049 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000049 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000049 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.000049 +OUTSIDEBOX +BaselineHeight = 1.000049 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000049 PointCopyY[3] = 0.999951 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000049 PointCopyY[3] = 0.999951 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000049 PointCopyY[3] = 0.999951 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.000049 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999951 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999951 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999951 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.000049 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999951 PointCopyY[3] = 0.999951 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999951 PointCopyY[3] = 0.999951 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999951 PointCopyY[3] = 0.999951 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999951 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999951 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999951 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.000098 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 1.000098 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 1.000098 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 1.000098 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.000098 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000098 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000098 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000098 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.000098 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 1.000098 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 1.000098 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 1.000098 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000098 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.000098 +OUTSIDEBOX +BaselineHeight = 1.000098 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 0.999902 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 0.999902 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 0.999902 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.000098 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999902 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999902 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999902 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.000098 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 0.999902 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 0.999902 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 0.999902 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.000195 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 1.000195 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 1.000195 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 1.000195 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.000195 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000195 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000195 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000195 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.000195 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 1.000195 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 1.000195 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 1.000195 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000195 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.000195 +OUTSIDEBOX +BaselineHeight = 1.000195 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 0.999805 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 0.999805 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000195 PointCopyY[3] = 0.999805 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.000195 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999805 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999805 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999805 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.000195 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 0.999805 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 0.999805 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 0.999805 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999805 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +Minimum misfit = 1000000.000000 cont = 0 No. = 3 +Existing point was at least equal best fit, no change +But, Move[3] shrunk anyway to 0.000049 +Itteration = 11 + +Point 0 +Move[0] = 0.001563 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507031 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507031 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.297551, Avmisfit[0] = 0.004021 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004021 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.027460 + +MotionUnit = 0.000781 +OUTSIDEBOX +PointCopyX[0] = -0.000781 PointCopyY[0] = 0.000781 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = -0.000781 PointCopyY[0] = 0.000781 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = -0.000781 PointCopyY[0] = 0.000781 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.000781 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000781 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000781 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000781 +PointX[1] = 0.507031 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.300669, Avmisfit[0] = 0.004063 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.035257, Avmisfit[3] = 0.000196 +Avmisfit[0] = 0.004063 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000196 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000781 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = 0.027698 + +MotionUnit = 0.000781 +PointCopyX[0] = 0.000781 PointCopyY[0] = 0.000781 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000781 PointCopyY[0] = 0.000781 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000781 PointY[0] = 0.000781 +PointX[1] = 0.507031 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.310185, Avmisfit[0] = 0.004192 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004192 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000781 PointCopyY[0] = 0.000781 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = 0.027631 + +MotionUnit = 0.000000 +BaselineHeight = 0.000781 BELOW BASELINE +PointCopyX[0] = 0.000781 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000781 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000781 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.000781 +OUTSIDEBOX +BaselineHeight = 0.000781 BELOW BASELINE +PointCopyX[0] = 0.000781 PointCopyY[0] = -0.000781 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000781 PointCopyY[0] = -0.000781 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000781 PointCopyY[0] = -0.000781 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.000781 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.000781 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.000781 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.000781 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.000781 +OUTSIDEBOX +PointCopyX[0] = -0.000781 PointCopyY[0] = -0.000781 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = -0.000781 PointCopyY[0] = -0.000781 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = -0.000781 PointCopyY[0] = -0.000781 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.000781 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = -0.000781 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = -0.000781 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.001563 +OUTSIDEBOX +PointCopyX[0] = -0.001563 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = -0.001563 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = -0.001563 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.001563 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.001563 +PointX[1] = 0.507031 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.312286, Avmisfit[0] = 0.004220 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.070515, Avmisfit[3] = 0.000392 +Avmisfit[0] = 0.004220 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000392 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = 0.028051 + +MotionUnit = 0.001563 +PointCopyX[0] = 0.001563 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.001563 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.001563 PointY[0] = 0.001563 +PointX[1] = 0.507031 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.322839, Avmisfit[0] = 0.004363 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004363 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.001563 PointCopyY[0] = 0.001563 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = 0.027802 + +MotionUnit = 0.000000 +BaselineHeight = 0.001563 BELOW BASELINE +PointCopyX[0] = 0.001563 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.001563 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.001563 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.001563 +OUTSIDEBOX +BaselineHeight = 0.001563 BELOW BASELINE +PointCopyX[0] = 0.001563 PointCopyY[0] = -0.001563 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.001563 PointCopyY[0] = -0.001563 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.001563 PointCopyY[0] = -0.001563 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.001563 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.001563 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.001563 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.001563 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.001563 +OUTSIDEBOX +PointCopyX[0] = -0.001563 PointCopyY[0] = -0.001563 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = -0.001563 PointCopyY[0] = -0.001563 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = -0.001563 PointCopyY[0] = -0.001563 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.001563 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = -0.001563 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = -0.001563 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.003125 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.003125 +PointX[1] = 0.507031 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.339198, Avmisfit[0] = 0.004584 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.141027, Avmisfit[3] = 0.000783 +Avmisfit[0] = 0.004584 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000783 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = 0.028807 + +MotionUnit = 0.003125 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.003125 PointY[0] = 0.003125 +PointX[1] = 0.507031 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.348209, Avmisfit[0] = 0.004706 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000001, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004706 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.003125 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = 0.028145 + +MotionUnit = 0.000000 +BaselineHeight = 0.003125 BELOW BASELINE +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +BaselineHeight = 0.003125 BELOW BASELINE +PointCopyX[0] = 0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +BaselineHeight = 0.000000 BELOW BASELINE +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.003125 +OUTSIDEBOX +PointCopyX[0] = -0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = -0.003125 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = -0.003125 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +MoveMisfit[0][1] = 0.027698 +MoveMisfit[0][2] = 0.027631 +MoveMisfit[1][1] = 0.028051 +MoveMisfit[1][2] = 0.027802 +MoveMisfit[2][1] = 0.028807 +MoveMisfit[2][2] = 0.028145 +Minimum misfit = 0.027631 cont = 0 No. = 2 +Existing point was at least equal best fit, no change +But, Move[0] shrunk anyway to 0.000781 +Stopped because points stopped moving + +Point 1 +Move[1] = 0.000781 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507031 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507031 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.297551, Avmisfit[0] = 0.004021 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004021 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.027460 + +MotionUnit = 0.000391 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953516 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953516 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506641 PointY[1] = 0.953516 +PointX[2] = 1.000000 PointY[2] = 0.953516 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046484 acrossB = 0.046484 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 75.000000, misfit[0] =0.402968, Avmisfit[0] = 0.005373 +count[1] = 25.000000, misfit[1] =0.599654, Avmisfit[1] = 0.023986 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005373 Avmisfit[1] = 0.023986 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953516 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = 0.029359 + +MotionUnit = 0.000391 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953516 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953516 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507031 PointY[1] = 0.953516 +PointX[2] = 1.000000 PointY[2] = 0.953516 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046484 acrossB = 0.046484 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 75.000000, misfit[0] =0.391686, Avmisfit[0] = 0.005222 +count[1] = 25.000000, misfit[1] =0.599654, Avmisfit[1] = 0.023986 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005222 Avmisfit[1] = 0.023986 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953516 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = 0.029209 + +MotionUnit = 0.000391 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507422 PointCopyY[1] = 0.953516 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507422 PointCopyY[1] = 0.953516 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507422 PointY[1] = 0.953516 +PointX[2] = 1.000000 PointY[2] = 0.953516 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046484 acrossB = 0.046484 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 75.000000, misfit[0] =0.402026, Avmisfit[0] = 0.005360 +count[1] = 25.000000, misfit[1] =0.599654, Avmisfit[1] = 0.023986 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005360 Avmisfit[1] = 0.023986 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507422 PointCopyY[1] = 0.953516 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953516 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = 0.029346 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507422 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507422 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507422 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.308285, Avmisfit[0] = 0.004166 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004166 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507422 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = 0.027605 + +MotionUnit = 0.000391 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507422 PointCopyY[1] = 0.952734 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507422 PointCopyY[1] = 0.952734 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507422 PointY[1] = 0.952734 +PointX[2] = 1.000000 PointY[2] = 0.952734 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.047266 acrossB = 0.047266 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.314002, Avmisfit[0] = 0.004243 +count[1] = 26.000000, misfit[1] =0.619581, Avmisfit[1] = 0.023830 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004243 Avmisfit[1] = 0.023830 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507422 PointCopyY[1] = 0.952734 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = 0.028073 + +MotionUnit = 0.000391 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.952734 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.952734 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507031 PointY[1] = 0.952734 +PointX[2] = 1.000000 PointY[2] = 0.952734 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.047266 acrossB = 0.047266 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.303264, Avmisfit[0] = 0.004098 +count[1] = 26.000000, misfit[1] =0.619581, Avmisfit[1] = 0.023830 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004098 Avmisfit[1] = 0.023830 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.952734 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = 0.027928 + +MotionUnit = 0.000391 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.952734 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.952734 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506641 PointY[1] = 0.952734 +PointX[2] = 1.000000 PointY[2] = 0.952734 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.047266 acrossB = 0.047266 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.292525, Avmisfit[0] = 0.003953 +count[1] = 26.000000, misfit[1] =0.619581, Avmisfit[1] = 0.023830 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.003953 Avmisfit[1] = 0.023830 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.952734 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952734 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = 0.027783 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506641 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.294557, Avmisfit[0] = 0.003980 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.003980 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = 0.027420 + +MotionUnit = 0.000781 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.953906 +PointX[2] = 1.000000 PointY[2] = 0.953906 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046094 acrossB = 0.046094 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 75.000000, misfit[0] =0.427109, Avmisfit[0] = 0.005695 +count[1] = 25.000000, misfit[1] =0.589889, Avmisfit[1] = 0.023596 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005695 Avmisfit[1] = 0.023596 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = 0.029290 + +MotionUnit = 0.000781 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507031 PointY[1] = 0.953906 +PointX[2] = 1.000000 PointY[2] = 0.953906 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046094 acrossB = 0.046094 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 75.000000, misfit[0] =0.395577, Avmisfit[0] = 0.005274 +count[1] = 25.000000, misfit[1] =0.589889, Avmisfit[1] = 0.023596 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005274 Avmisfit[1] = 0.023596 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = 0.028870 + +MotionUnit = 0.000781 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507812 PointY[1] = 0.953906 +PointX[2] = 1.000000 PointY[2] = 0.953906 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046094 acrossB = 0.046094 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 75.000000, misfit[0] =0.406860, Avmisfit[0] = 0.005425 +count[1] = 25.000000, misfit[1] =0.589889, Avmisfit[1] = 0.023596 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005425 Avmisfit[1] = 0.023596 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.953906 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953906 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = 0.029020 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507812 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.319018, Avmisfit[0] = 0.004311 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004311 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = 0.027750 + +MotionUnit = 0.000781 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507812 PointY[1] = 0.952344 +PointX[2] = 1.000000 PointY[2] = 0.952344 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.047656 acrossB = 0.047656 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.330465, Avmisfit[0] = 0.004466 +count[1] = 26.000000, misfit[1] =0.629736, Avmisfit[1] = 0.024221 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004466 Avmisfit[1] = 0.024221 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507812 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = 0.028686 + +MotionUnit = 0.000781 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507031 PointY[1] = 0.952344 +PointX[2] = 1.000000 PointY[2] = 0.952344 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.047656 acrossB = 0.047656 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.308980, Avmisfit[0] = 0.004175 +count[1] = 26.000000, misfit[1] =0.629736, Avmisfit[1] = 0.024221 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004175 Avmisfit[1] = 0.024221 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = 0.028396 + +MotionUnit = 0.000781 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.952344 +PointX[2] = 1.000000 PointY[2] = 0.952344 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.047656 acrossB = 0.047656 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.293583, Avmisfit[0] = 0.003967 +count[1] = 26.000000, misfit[1] =0.629736, Avmisfit[1] = 0.024221 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.003967 Avmisfit[1] = 0.024221 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.952344 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.952344 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = 0.028188 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506250 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.309944, Avmisfit[0] = 0.004188 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004188 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506250 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = 0.027628 + +MotionUnit = 0.001562 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.505469 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.505469 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.505469 PointY[1] = 0.954687 +PointX[2] = 1.000000 PointY[2] = 0.954687 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.045313 acrossB = 0.045313 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 75.000000, misfit[0] =0.475337, Avmisfit[0] = 0.006338 +count[1] = 25.000000, misfit[1] =0.570358, Avmisfit[1] = 0.022814 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.006338 Avmisfit[1] = 0.022814 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.505469 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = 0.029152 + +MotionUnit = 0.001562 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507031 PointY[1] = 0.954687 +PointX[2] = 1.000000 PointY[2] = 0.954687 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.045313 acrossB = 0.045313 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 75.000000, misfit[0] =0.412324, Avmisfit[0] = 0.005498 +count[1] = 25.000000, misfit[1] =0.570358, Avmisfit[1] = 0.022814 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005498 Avmisfit[1] = 0.022814 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = 0.028312 + +MotionUnit = 0.001562 +Point1 moved Point2 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.508594 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.508594 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.508594 PointY[1] = 0.954687 +PointX[2] = 1.000000 PointY[2] = 0.954687 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.045313 acrossB = 0.045313 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 75.000000, misfit[0] =0.416518, Avmisfit[0] = 0.005554 +count[1] = 25.000000, misfit[1] =0.570358, Avmisfit[1] = 0.022814 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.005554 Avmisfit[1] = 0.022814 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.508594 PointCopyY[1] = 0.954687 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.954687 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = 0.028368 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.508594 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.508594 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.508594 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.340485, Avmisfit[0] = 0.004601 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004601 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.508594 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = 0.028041 + +MotionUnit = 0.001562 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.508594 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.508594 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.508594 PointY[1] = 0.951562 +PointX[2] = 1.000000 PointY[2] = 0.951562 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.048438 acrossB = 0.048438 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.363432, Avmisfit[0] = 0.004911 +count[1] = 26.000000, misfit[1] =0.650048, Avmisfit[1] = 0.025002 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004911 Avmisfit[1] = 0.025002 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.508594 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = 0.029913 + +MotionUnit = 0.001562 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.507031 PointY[1] = 0.951562 +PointX[2] = 1.000000 PointY[2] = 0.951562 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.048438 acrossB = 0.048438 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.320428, Avmisfit[0] = 0.004330 +count[1] = 26.000000, misfit[1] =0.650048, Avmisfit[1] = 0.025002 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004330 Avmisfit[1] = 0.025002 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.507031 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = 0.029332 + +MotionUnit = 0.001562 +Point1 moved Point2 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.505469 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.505469 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.505469 PointY[1] = 0.951562 +PointX[2] = 1.000000 PointY[2] = 0.951562 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.048438 acrossB = 0.048438 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.308024, Avmisfit[0] = 0.004162 +count[1] = 26.000000, misfit[1] =0.650048, Avmisfit[1] = 0.025002 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004162 Avmisfit[1] = 0.025002 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.505469 PointCopyY[1] = 0.951562 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.951562 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = 0.029164 + +MotionUnit = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.505469 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 1 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.505469 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.505469 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.340721, Avmisfit[0] = 0.004604 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.004604 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.505469 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = 0.028044 + +MoveMisfit[0][0] = 0.029359 +MoveMisfit[0][1] = 0.029209 +MoveMisfit[0][2] = 0.029346 +MoveMisfit[0][3] = 0.027605 +MoveMisfit[0][4] = 0.028073 +MoveMisfit[0][5] = 0.027928 +MoveMisfit[0][6] = 0.027783 +MoveMisfit[0][7] = 0.027420 +MoveMisfit[1][0] = 0.029290 +MoveMisfit[1][1] = 0.028870 +MoveMisfit[1][2] = 0.029020 +MoveMisfit[1][3] = 0.027750 +MoveMisfit[1][4] = 0.028686 +MoveMisfit[1][5] = 0.028396 +MoveMisfit[1][6] = 0.028188 +MoveMisfit[1][7] = 0.027628 +MoveMisfit[2][0] = 0.029152 +MoveMisfit[2][1] = 0.028312 +MoveMisfit[2][2] = 0.028368 +MoveMisfit[2][3] = 0.028041 +MoveMisfit[2][4] = 0.029913 +MoveMisfit[2][5] = 0.029332 +MoveMisfit[2][6] = 0.029164 +MoveMisfit[2][7] = 0.028044 +Minimum misfit = 0.027420 cont = 0 No. = 7 +Point 1 location changed from (0.507031,0.953125) to (0.506641,0.953125) +MISFIT reduced to 0.027420 +Move[1] changed to 0.000391 +Stopped because points stopped moving + +Point 2 +Move[2] = 0.000049 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506641 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506641 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.294557, Avmisfit[0] = 0.003980 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.003980 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.027420 + +MotionUnit = 0.000024 +BaselineHeight = 0.999976 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953149 +PointCopyX[2] = 0.999976 PointCopyY[2] = 0.953149 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953149 +PointCopyX[2] = 0.999976 PointCopyY[2] = 0.953149 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953149 +PointCopyX[2] = 0.999976 PointCopyY[2] = 0.953149 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.000024 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953149 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953149 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953149 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953149 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953149 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953149 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.000024 +OUTSIDEBOX +BaselineHeight = 1.000024 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953149 +PointCopyX[2] = 1.000024 PointCopyY[2] = 0.953149 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953149 +PointCopyX[2] = 1.000024 PointCopyY[2] = 0.953149 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953149 +PointCopyX[2] = 1.000024 PointCopyY[2] = 0.953149 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000024 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000024 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000024 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000024 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.000024 +OUTSIDEBOX +BaselineHeight = 1.000024 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953101 +PointCopyX[2] = 1.000024 PointCopyY[2] = 0.953101 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953101 +PointCopyX[2] = 1.000024 PointCopyY[2] = 0.953101 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953101 +PointCopyX[2] = 1.000024 PointCopyY[2] = 0.953101 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.000024 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953101 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953101 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953101 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953101 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953101 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953101 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.000024 +BaselineHeight = 0.999976 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953101 +PointCopyX[2] = 0.999976 PointCopyY[2] = 0.953101 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953101 +PointCopyX[2] = 0.999976 PointCopyY[2] = 0.953101 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953101 +PointCopyX[2] = 0.999976 PointCopyY[2] = 0.953101 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.999976 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999976 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999976 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999976 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.000049 +BaselineHeight = 0.999951 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953174 +PointCopyX[2] = 0.999951 PointCopyY[2] = 0.953174 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953174 +PointCopyX[2] = 0.999951 PointCopyY[2] = 0.953174 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953174 +PointCopyX[2] = 0.999951 PointCopyY[2] = 0.953174 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.000049 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953174 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953174 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953174 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953174 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953174 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953174 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.000049 +OUTSIDEBOX +BaselineHeight = 1.000049 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953174 +PointCopyX[2] = 1.000049 PointCopyY[2] = 0.953174 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953174 +PointCopyX[2] = 1.000049 PointCopyY[2] = 0.953174 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953174 +PointCopyX[2] = 1.000049 PointCopyY[2] = 0.953174 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000049 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000049 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000049 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000049 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.000049 +OUTSIDEBOX +BaselineHeight = 1.000049 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953076 +PointCopyX[2] = 1.000049 PointCopyY[2] = 0.953076 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953076 +PointCopyX[2] = 1.000049 PointCopyY[2] = 0.953076 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953076 +PointCopyX[2] = 1.000049 PointCopyY[2] = 0.953076 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.000049 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953076 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953076 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953076 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953076 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953076 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953076 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.000049 +BaselineHeight = 0.999951 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953076 +PointCopyX[2] = 0.999951 PointCopyY[2] = 0.953076 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953076 +PointCopyX[2] = 0.999951 PointCopyY[2] = 0.953076 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953076 +PointCopyX[2] = 0.999951 PointCopyY[2] = 0.953076 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.999951 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999951 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999951 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999951 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.000098 +BaselineHeight = 0.999902 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953223 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953223 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953223 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.000098 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953223 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953223 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953223 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.000098 +OUTSIDEBOX +BaselineHeight = 1.000098 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted up +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953223 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953223 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953223 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953223 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000098 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.000098 +OUTSIDEBOX +BaselineHeight = 1.000098 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953027 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953027 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953027 +PointCopyX[2] = 1.000098 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.000098 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953027 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953027 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953027 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.000098 +BaselineHeight = 0.999902 BELOW BASELINE +CROSS_OVER stopped +Point2 moved Point1 adjusted down +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953027 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953027 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953027 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953027 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +BaselineHeight = 0.999902 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 0.999902 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +Minimum misfit = 1000000.000000 cont = 0 No. = 7 +Existing point was at least equal best fit, no change +But, Move[2] shrunk anyway to 0.000024 +Stopped because points stopped moving + +Point 3 +Move[3] = 0.000049 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506641 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +begin = 0 finish = 99 +PointX[0] = 0.000000 PointY[0] = 0.000000 +PointX[1] = 0.506641 PointY[1] = 0.953125 +PointX[2] = 1.000000 PointY[2] = 0.953125 +PointX[3] = 1.000000 PointY[3] = 1.000000 +acrossA = 0.046875 acrossB = 0.046875 +FracDepth[99] = 1.000000 betweenpercent = 1.000000 +Forcing Right line to include the Last point +Idist = 1.000000 misfitTemp = 0.000000 +ReampInc = 0.015845, Xinc = 0.011204, Yinc = 0.011204 +count[0] = 74.000000, misfit[0] =0.294557, Avmisfit[0] = 0.003980 +count[1] = 26.000000, misfit[1] =0.609424, Avmisfit[1] = 0.023439 +count[2] = 1.000000, misfit[2] =0.000000, Avmisfit[2] = 0.000000 +count[3] = 180.000000, misfit[3] =0.000000, Avmisfit[3] = 0.000000 +Avmisfit[0] = 0.003980 Avmisfit[1] = 0.023439 Avmisfit[2] = 0.000000 Avmisfit[3] = 0.000000 +testMISFIT = 0.027420 + +MotionUnit = 0.000024 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999976 PointCopyY[3] = 1.000024 +todo = 0 +DO? : MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999976 PointCopyY[3] = 1.000024 +MoveMisfit[0][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999976 PointCopyY[3] = 1.000024 +MoveMisfit[0][0] = -1.000000 + +MotionUnit = 0.000024 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000024 +todo = 0 +DO? : MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000024 +MoveMisfit[0][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000024 +MoveMisfit[0][1] = -1.000000 + +MotionUnit = 0.000024 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000024 PointCopyY[3] = 1.000024 +todo = 0 +DO? : MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000024 PointCopyY[3] = 1.000024 +MoveMisfit[0][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000024 PointCopyY[3] = 1.000024 +MoveMisfit[0][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000024 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000024 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000024 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000024 PointCopyY[3] = 1.000000 +MoveMisfit[0][3] = -1.000000 + +MotionUnit = 0.000024 +OUTSIDEBOX +BaselineHeight = 1.000024 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000024 PointCopyY[3] = 0.999976 +todo = 0 +DO? : MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000024 PointCopyY[3] = 0.999976 +MoveMisfit[0][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000024 PointCopyY[3] = 0.999976 +MoveMisfit[0][4] = -1.000000 + +MotionUnit = 0.000024 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999976 +todo = 0 +DO? : MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999976 +MoveMisfit[0][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999976 +MoveMisfit[0][5] = -1.000000 + +MotionUnit = 0.000024 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999976 PointCopyY[3] = 0.999976 +todo = 0 +DO? : MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999976 PointCopyY[3] = 0.999976 +MoveMisfit[0][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999976 PointCopyY[3] = 0.999976 +MoveMisfit[0][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999976 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999976 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999976 PointCopyY[3] = 1.000000 +MoveMisfit[0][7] = -1.000000 + +MotionUnit = 0.000049 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999951 PointCopyY[3] = 1.000049 +todo = 0 +DO? : MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999951 PointCopyY[3] = 1.000049 +MoveMisfit[1][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999951 PointCopyY[3] = 1.000049 +MoveMisfit[1][0] = -1.000000 + +MotionUnit = 0.000049 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000049 +todo = 0 +DO? : MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000049 +MoveMisfit[1][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000049 +MoveMisfit[1][1] = -1.000000 + +MotionUnit = 0.000049 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000049 PointCopyY[3] = 1.000049 +todo = 0 +DO? : MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000049 PointCopyY[3] = 1.000049 +MoveMisfit[1][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000049 PointCopyY[3] = 1.000049 +MoveMisfit[1][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000049 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000049 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000049 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000049 PointCopyY[3] = 1.000000 +MoveMisfit[1][3] = -1.000000 + +MotionUnit = 0.000049 +OUTSIDEBOX +BaselineHeight = 1.000049 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000049 PointCopyY[3] = 0.999951 +todo = 0 +DO? : MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000049 PointCopyY[3] = 0.999951 +MoveMisfit[1][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000049 PointCopyY[3] = 0.999951 +MoveMisfit[1][4] = -1.000000 + +MotionUnit = 0.000049 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999951 +todo = 0 +DO? : MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999951 +MoveMisfit[1][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999951 +MoveMisfit[1][5] = -1.000000 + +MotionUnit = 0.000049 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999951 PointCopyY[3] = 0.999951 +todo = 0 +DO? : MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999951 PointCopyY[3] = 0.999951 +MoveMisfit[1][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999951 PointCopyY[3] = 0.999951 +MoveMisfit[1][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999951 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999951 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999951 PointCopyY[3] = 1.000000 +MoveMisfit[1][7] = -1.000000 + +MotionUnit = 0.000098 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 1.000098 +todo = 0 +DO? : MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 1.000098 +MoveMisfit[2][0] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 1.000098 +MoveMisfit[2][0] = -1.000000 + +MotionUnit = 0.000098 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000098 +todo = 0 +DO? : MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000098 +MoveMisfit[2][1] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 1.000098 +MoveMisfit[2][1] = -1.000000 + +MotionUnit = 0.000098 +OUTSIDEBOX +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 1.000098 +todo = 0 +DO? : MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 1.000098 +MoveMisfit[2][2] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 1.000098 +MoveMisfit[2][2] = -1.000000 + +MotionUnit = 0.000000 +OUTSIDEBOX +BaselineHeight = 1.000098 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 1.000000 +MoveMisfit[2][3] = -1.000000 + +MotionUnit = 0.000098 +OUTSIDEBOX +BaselineHeight = 1.000098 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 0.999902 +todo = 0 +DO? : MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 0.999902 +MoveMisfit[2][4] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000098 PointCopyY[3] = 0.999902 +MoveMisfit[2][4] = -1.000000 + +MotionUnit = 0.000098 +BaselineHeight = 1.000000 BELOW BASELINE +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999902 +todo = 0 +DO? : MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999902 +MoveMisfit[2][5] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 1.000000 PointCopyY[3] = 0.999902 +MoveMisfit[2][5] = -1.000000 + +MotionUnit = 0.000098 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 0.999902 +todo = 0 +DO? : MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 0.999902 +MoveMisfit[2][6] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 0.999902 +MoveMisfit[2][6] = -1.000000 + +MotionUnit = 0.000000 +CROSS_OVER stopped +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 1.000000 +todo = 0 +DO? : MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 +PointCopyX[0] = 0.000000 PointCopyY[0] = 0.000000 +PointCopyX[1] = 0.506641 PointCopyY[1] = 0.953125 +PointCopyX[2] = 1.000000 PointCopyY[2] = 0.953125 +PointCopyX[3] = 0.999902 PointCopyY[3] = 1.000000 +MoveMisfit[2][7] = -1.000000 + +Minimum misfit = 1000000.000000 cont = 0 No. = 7 +Existing point was at least equal best fit, no change +But, Move[3] shrunk anyway to 0.000024 +Stopped because points stopped moving +up = 1.226318 across = 5.066406 + +Slope LHS1.226 5.066 0.237 +upB = -0.060303 acrossB = 0.000000 +Slope RHS -0.060 0.000 0.237 +PointX[0] = 0.000000 FracDist[43] = 0.000000 FracDist[44] = 0.500000 +long [43] = 415235.656250 lat[43] = 4186053.250000 +long [44] = 415239.281250 lat[44] = 4186056.750000 +perceentbtween = 0.000000 +Pointlong = 415235.656250 PointLat = 4186053.250000 +PointX[1] = 0.506641 FracDist[44] = 0.500000 FracDist[45] = 1.000000 +long [44] = 415239.281250 lat[44] = 4186056.750000 +long [45] = 415242.937500 lat[45] = 4186060.000000 +perceentbtween = 0.013281 +Pointlong = 415239.343750 PointLat = 4186056.750000 +PointX[2] = 1.000000 FracDist[44] = 0.500000 FracDist[45] = 1.000000 +long [44] = 415239.281250 lat[44] = 4186056.750000 +long [45] = 415242.937500 lat[45] = 4186060.000000 +perceentbtween = 1.000000 +Pointlong = 415242.937500 PointLat = 4186060.000000 +PointX[3] = 1.000000 FracDist[44] = 0.500000 FracDist[45] = 1.000000 +long [44] = 415239.281250 lat[44] = 4186056.750000 +long [45] = 415242.937500 lat[45] = 4186060.000000 +perceentbtween = 1.000000 +Pointlong = 415242.937500 PointLat = 4186060.000000 +distance[f + 1] 220.000000 distance[f] 215.000000 percentbetween 0.250000 +depth[f + 1] -1074.776611 depth[f] -1075.986572 +TrapeziumAvDist 217.500000 TrapBaseDepth -1075.664917 TrapTopDepth -1075.381592 +ExtraArea 1.416626 +distance[f + 1] 225.000000 distance[f] 220.000000 percentbetween 0.750000 +depth[f + 1] -1074.699951 depth[f] -1074.776611 +TrapeziumAvDist 222.500000 TrapBaseDepth -1075.021606 TrapTopDepth -1074.738281 +ExtraArea 1.416626 +MeasuredArea = 2.833252 +FrustumArea 4.353201 +PedestalHeight 0.583008 + PointyConeHeight = 1.150733 WholeConeVol = 30.126106 TopBitVol = 3.617705 FrustumVol = 26.508400 +latitude[begin] = 4186053.250000, LatRadius 5694.530273, LongKm 99.388306 LatKm 111.177475 +maxheightLong = 415242.937500, maxheightLat 4186060.000000 +dist a ... (415235.656250,4186053.250000) - (415242.937500,4186060.000000) +up = -750.447937 across = -723.671082 dista = 1042.531494 +dist b ... (415235.656250,4186053.250000) - (415242.937500,4186060.000000) +up = -750.447937 across = -723.671082 distb = 1042.531494 +dist c ... (415242.937500,4186060.000000) - (415242.937500,4186060.000000) +up = 0.000000 across = 0.000000 distc = 0.000000 +Intermediate -1.000000 Angle 180.000000 +Working out 3D distance +DistAlong 1042.753784 / dista 1042.531494 = ExtraTravelFrac 1.000213 +> +215.000000 -1075.986572 +220.066406 -1074.760254 +225.000000 -1074.760254 +225.000000 -1074.699951 +1 225.000 215.000 225.000 415242.938 4186060.000 215.000 -1075.987 220.066 -1074.760 225.000 -1074.760 225.000 -1074.700 5.000 2.467 13.607 -1074.760 -1075.343 0.583 3 0.027420 415235.656 4186053.250 415239.344 4186056.750 415242.938 4186060.000 415242.938 4186060.000 415241.125 4186058.500 2.833 4.353 26.508 objectnumber 1 +start [215.000000] (begin = 43) +end [225.000000] (finish = 45) + numberpoints[3] + +Before Frustum +Min depth -1084.643433 max depth -1085.315552 +Before Frustum +Min depth -1088.942383 max depth -1091.718018 +Before Frustum +Min depth -1050.582275 max depth -1095.956787 +Before Frustum +Min depth -983.900024 max depth -1083.487183 +Before Frustum +Min depth -984.400024 max depth -1085.641724 +Before Frustum +Min depth -1081.371338 max depth -1084.613159 +Before Frustum +Min depth -975.737244 max depth -1073.415161 +Before Frustum +Min depth -997.749817 max depth -1065.723022 +Before Frustum +Min depth -1039.000000 max depth -1049.699951 +Before Frustum +Min depth -1000.599976 max depth -1012.000000 +Before Frustum +Min depth -1012.599976 max depth -1014.216919 +Before Frustum +Min depth -1004.881836 max depth -1005.400024 +Before Frustum +Min depth -961.368164 max depth -1009.900024 +Before Frustum +Min depth -972.507324 max depth -1011.590515 +Before Frustum +Min depth -974.799988 max depth -1018.639038 +Before Frustum +Min depth -985.267456 max depth -1024.442627 +Before Frustum +Min depth -994.306274 max depth -1031.043213 +Before Frustum +Min depth -1004.772949 max depth -1034.322876 +Before Frustum +Min depth -985.900024 max depth -1015.681519 +Before Frustum +Min depth -990.759521 max depth -999.129333 +Before Frustum +Min depth -927.841980 max depth -1003.599976 +Before Frustum +Min depth -984.299988 max depth -984.705688 +Before Frustum +Min depth -984.500000 max depth -985.177917 +Before Frustum +Min depth -974.766663 max depth -980.551453 +Before Frustum +Min depth -981.200012 max depth -983.486816 +Before Frustum +Min depth -940.700012 max depth -991.500000 +Before Frustum +Min depth -979.500000 max depth -990.500000 +Before Frustum +Min depth -844.299988 max depth -988.426208 +Before Frustum +Min depth -936.150269 max depth -967.541870 +Before Frustum +Min depth -938.667908 max depth -975.468506 +Before Frustum +Min depth -978.562622 max depth -979.099976 +Before Frustum +Min depth -976.708374 max depth -993.665710 +Before Frustum +Min depth -942.900024 max depth -991.663391 +Before Frustum +Min depth -963.099976 max depth -999.796692 +Before Frustum +Min depth -983.250610 max depth -1000.599976 +Before Frustum +Min depth -970.200012 max depth -997.347778 +Before Frustum +Min depth -995.799988 max depth -998.136658 +Before Frustum +Min depth -956.869507 max depth -1006.329651 +Before Frustum +Min depth -935.562073 max depth -1011.109253 +Before Frustum +Min depth -936.672302 max depth -1021.000000 +Before Frustum +Min depth -982.400024 max depth -1031.400024 +Before Frustum +Min depth -1014.900024 max depth -1035.771362 +Before Frustum +Min depth -1029.199951 max depth -1030.624146 +Before Frustum +Min depth -1025.378540 max depth -1029.800049 +Before Frustum +Min depth -975.376404 max depth -1044.051270 +Before Frustum +Min depth -985.299988 max depth -1031.400024 +Before Frustum +Min depth -1020.400024 max depth -1020.601196 +Before Frustum +Min depth -958.784668 max depth -1019.299988 +Before Frustum +Min depth -940.500000 max depth -1007.400024 +Before Frustum +Min depth -930.200012 max depth -1003.500000 +Before Frustum +Min depth -941.384827 max depth -996.929260 +Before Frustum +Min depth -996.799988 max depth -997.837585 +Before Frustum +Min depth -1000.799988 max depth -1001.400024 +Before Frustum +Min depth -993.551819 max depth -1002.302002 +Before Frustum +Min depth -1012.121033 max depth -1016.099182 +Before Frustum +Min depth -986.493896 max depth -1029.500000 +Before Frustum +Min depth -1017.799988 max depth -1020.900024 +Before Frustum +Min depth -1052.099976 max depth -1053.933838 +Before Frustum +Min depth -1026.800049 max depth -1088.099976 +Before Frustum +Min depth -1017.296570 max depth -1050.926758 +Before Frustum +Min depth -1042.300049 max depth -1044.819580 +Before Frustum +Min depth -1023.856445 max depth -1053.099976 +Before Frustum +Min depth -1072.217773 max depth -1072.549438 +Before Frustum +Min depth -1051.542358 max depth -1096.400024 +Before Frustum +Min depth -1051.099976 max depth -1054.705811 +Before Frustum +Min depth -1040.400024 max depth -1043.768433