Skip to content

Commit

Permalink
dasd
Browse files Browse the repository at this point in the history
  • Loading branch information
landinjm committed Dec 20, 2024
1 parent ca53fdf commit 8d43fa2
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,11 +168,10 @@ namespace PRISMS
{
_var[0][0] = coord[0];
_var[0][1] = coord[1];
double e;

for (int i = 0; i < 2; i++)
{
e = _var[3][i] * (_var[0][i] - _var[1][i]) / _var[2][i];
double e = _var[3][i] * (_var[0][i] - _var[1][i]) / _var[2][i];
if (e < 0.0 || e >= 1.0)
{
return false;
Expand Down

0 comments on commit 8d43fa2

Please sign in to comment.