Skip to content

Commit

Permalink
set restriction to 0 for intersection points.
Browse files Browse the repository at this point in the history
  • Loading branch information
AccidentalCitizen committed Oct 5, 2023
1 parent f22001c commit 95cd275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TestApplication/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ private void InitializeModelPointsWithFunctionParameters()
vectorPointsList.Add(point);
}
model = new ModelContainer(container);
var points = vectorPointsList.Where(s => (s.Xval.c <= 0.000001 && s.Yval.c <= 0.000001)&& (s.Xval.c >= 0 && s.Yval.c >= 0));
var intersectionPoints = vectorPointsList.Where(s => (s.Xval.c <= 0 && s.Yval.c <= 0)&& (s.Xval.c >= 0 && s.Yval.c >= 0));
}

private void MyTimer_Tick(object sender, EventArgs e)
Expand Down

0 comments on commit 95cd275

Please sign in to comment.