Click here to Skip to main content
15,892,161 members
Home / Discussions / C#
   

C#

 
AnswerRe: Can anyone help fix this issue ? c sharp Pin
Mycroft Holmes13-Nov-18 11:05
professionalMycroft Holmes13-Nov-18 11:05 
AnswerRe: Can anyone help fix this issue ? c sharp Pin
OriginalGriff13-Nov-18 19:17
mveOriginalGriff13-Nov-18 19:17 
QuestionSeveral lists into one horizontal list Pin
Member 1307682212-Nov-18 22:12
Member 1307682212-Nov-18 22:12 
AnswerRe: Several lists into one horizontal list Pin
OriginalGriff12-Nov-18 23:42
mveOriginalGriff12-Nov-18 23:42 
AnswerRe: Several lists into one horizontal list Pin
BillWoodruff13-Nov-18 2:12
professionalBillWoodruff13-Nov-18 2:12 
GeneralRe: Several lists into one horizontal list Pin
Richard Deeming14-Nov-18 1:09
mveRichard Deeming14-Nov-18 1:09 
AnswerRe: Several lists into one horizontal list Pin
Richard Deeming14-Nov-18 1:18
mveRichard Deeming14-Nov-18 1:18 
QuestionCheck if xy point is within a polygon Console App Pin
Member 1192266611-Nov-18 23:15
Member 1192266611-Nov-18 23:15 
I have create a Win form app and create Polygons as follows:
private List<list<pointf>> Polygons = new List<list<pointf>>();

I store this polygons with Xml.Serialization, into a MySQL database as string and Deserialize it with my console app into a list of polygons again.


In my console app, which eventually is going to run from Raspberry Pi, I'm getting data from USB, which consist of floating X and floating Y coordinates.


Now I want to know how do I check if this point is within one of the polygons. I've tried it first with WinForms app and it works great.


public static bool IsPointInPolygon(IList<pointf> polygon, PointF testPoint)
{
try
{
bool result = false;
int j = polygon.Count() - 1;
for (int i = 0; i < polygon.Count(); i++)
{
if (polygon[i].Y < testPoint.Y && polygon[j].Y >= testPoint.Y || polygon[j].Y < testPoint.Y && polygon[i].Y >= testPoint.Y)
{
if (polygon[i].X + (testPoint.Y - polygon[i].Y) / (polygon[j].Y - polygon[i].Y) * (polygon[j].X - polygon[i].X) < testPoint.X)
{
result = !result;
}
}
j = i;
}
return result;

}
catch (Exception ex)
{
MessageBox.Show("error - " + ex.ToString());
return false;
}
I don't want to draw something, I know it's a console app, just getting a bool or int value back from the Test.


Any suggestions or help please?
QuestionRe: Check if xy point is within a polygon Console App Pin
Richard MacCutchan11-Nov-18 23:19
mveRichard MacCutchan11-Nov-18 23:19 
AnswerRe: Check if xy point is within a polygon Console App Pin
Member 1192266611-Nov-18 23:35
Member 1192266611-Nov-18 23:35 
GeneralRe: Check if xy point is within a polygon Console App Pin
Richard MacCutchan11-Nov-18 23:43
mveRichard MacCutchan11-Nov-18 23:43 
GeneralRe: Check if xy point is within a polygon Console App Pin
OriginalGriff12-Nov-18 0:27
mveOriginalGriff12-Nov-18 0:27 
AnswerRe: Check if xy point is within a polygon Console App Pin
OriginalGriff11-Nov-18 23:31
mveOriginalGriff11-Nov-18 23:31 
QuestionWifi and LAN usage Pin
Ashfaque Hussain11-Nov-18 20:08
Ashfaque Hussain11-Nov-18 20:08 
AnswerRe: Wifi and LAN usage Pin
OriginalGriff11-Nov-18 21:17
mveOriginalGriff11-Nov-18 21:17 
GeneralRe: Wifi and LAN usage Pin
Ashfaque Hussain11-Nov-18 23:24
Ashfaque Hussain11-Nov-18 23:24 
GeneralRe: Wifi and LAN usage Pin
OriginalGriff11-Nov-18 23:34
mveOriginalGriff11-Nov-18 23:34 
GeneralRe: Wifi and LAN usage Pin
Ashfaque Hussain12-Nov-18 23:01
Ashfaque Hussain12-Nov-18 23:01 
QuestionData Adapter is failing to load bulk data Pin
venky_CodeProject11-Nov-18 17:11
venky_CodeProject11-Nov-18 17:11 
AnswerRe: Data Adapter is failing to load bulk data Pin
Dave Kreskowiak11-Nov-18 17:56
mveDave Kreskowiak11-Nov-18 17:56 
GeneralRe: Data Adapter is failing to load bulk data Pin
venky_CodeProject11-Nov-18 19:26
venky_CodeProject11-Nov-18 19:26 
GeneralRe: Data Adapter is failing to load bulk data Pin
Dave Kreskowiak12-Nov-18 13:47
mveDave Kreskowiak12-Nov-18 13:47 
GeneralRe: Data Adapter is failing to load bulk data Pin
venky_CodeProject13-Nov-18 3:49
venky_CodeProject13-Nov-18 3:49 
GeneralRe: Data Adapter is failing to load bulk data Pin
Dave Kreskowiak21-Nov-18 11:15
mveDave Kreskowiak21-Nov-18 11:15 
GeneralRe: Data Adapter is failing to load bulk data Pin
venky_CodeProject22-Nov-18 18:57
venky_CodeProject22-Nov-18 18:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.