Skip to content

Commit

Permalink
delete comments
Browse files Browse the repository at this point in the history
  • Loading branch information
johnprif committed Feb 13, 2023
1 parent 0257c34 commit b0f0fc5
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions src/Model/DataBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,7 @@ public double findMaxP()
prevCustom = neighbours.get(currCustom).get(0); //O(1)
nextCustom = neighbours.get(currCustom).get(1); //O(1)
maxAngleCustom = getAngle(prevCustom, currCustom, nextCustom); //O(1)
//---------------------------------------------
// existingRadius.put(maxRadiusCustom, currCustom);
//---------------------------------------------

return maxAngleCustom;
}

Expand Down Expand Up @@ -289,10 +287,7 @@ public Point2D findMaxP2()
prevCustom2 = neighbours2.get(currCustom2).get(0); //O(1)
nextCustom2 = neighbours2.get(currCustom2).get(1); //O(1)
maxAngleCustom2 = getAngle(prevCustom2, currCustom2, nextCustom2); //O(1)
//---------------------------------------------
// existingRadius.put(maxRadiusCustom, currCustom);
//---------------------------------------------
// return maxAngleCustom2;

return currCustom2;
}

Expand Down

0 comments on commit b0f0fc5

Please sign in to comment.