Click here to Skip to main content
15,898,134 members
Home / Discussions / C#
   

C#

 
GeneralRe: List compare algorithm Pin
Pete O'Hanlon27-Mar-08 2:23
mvePete O'Hanlon27-Mar-08 2:23 
GeneralRe: List compare algorithm Pin
Stevo Z27-Mar-08 3:02
Stevo Z27-Mar-08 3:02 
GeneralRe: List compare algorithm Pin
carbon_golem27-Mar-08 3:43
carbon_golem27-Mar-08 3:43 
GeneralRe: List compare algorithm Pin
Stevo Z27-Mar-08 3:58
Stevo Z27-Mar-08 3:58 
GeneralRe: List compare algorithm Pin
carbon_golem27-Mar-08 4:22
carbon_golem27-Mar-08 4:22 
GeneralRe: List compare algorithm Pin
Stevo Z27-Mar-08 4:26
Stevo Z27-Mar-08 4:26 
GeneralRe: List compare algorithm Pin
carbon_golem27-Mar-08 4:42
carbon_golem27-Mar-08 4:42 
GeneralRe: List compare algorithm Pin
Stevo Z27-Mar-08 4:57
Stevo Z27-Mar-08 4:57 
Your approach is right but, ...

I dont know if you red my second post. Matching points is not a matter if they are the same, it is a matter of the distance between then. They may be the same, but they may not

e.g.

lets say const distance = 3;

p1 [0,0]
p2 [2,2]

distance between p1 and p2 is:

d = Math.Sqrt((p2.X-p1.X)^2 + (p2.Y-p1.Y)^2) = 2,3...

(2,3 < 3) == true

so p1 and p2 match.

zilo

GeneralRe: List compare algorithm Pin
carbon_golem27-Mar-08 5:15
carbon_golem27-Mar-08 5:15 
GeneralRe: List compare algorithm Pin
Stevo Z27-Mar-08 5:38
Stevo Z27-Mar-08 5:38 
GeneralRe: List compare algorithm Pin
carbon_golem27-Mar-08 5:52
carbon_golem27-Mar-08 5:52 
GeneralRe: List compare algorithm Pin
DavidNohejl27-Mar-08 4:51
DavidNohejl27-Mar-08 4:51 
GeneralRe: List compare algorithm Pin
Stevo Z27-Mar-08 5:13
Stevo Z27-Mar-08 5:13 
GeneralRe: List compare algorithm Pin
DavidNohejl27-Mar-08 5:59
DavidNohejl27-Mar-08 5:59 
GeneralRe: List compare algorithm Pin
Stevo Z27-Mar-08 6:41
Stevo Z27-Mar-08 6:41 
QuestionChange mouse cursor when hover mouse over a DataGridView cell's border ? Pin
nesaver8527-Mar-08 1:47
nesaver8527-Mar-08 1:47 
AnswerRe: Change mouse cursor when hover mouse over a DataGridView cell's border ? Pin
Eswara Kumar2-Apr-10 2:32
Eswara Kumar2-Apr-10 2:32 
General[Message Deleted] Pin
nesaver8527-Mar-08 1:32
nesaver8527-Mar-08 1:32 
GeneralRe: Merge cells in DataGridView ? Pin
Anoop Unnikrishnan27-Mar-08 1:37
Anoop Unnikrishnan27-Mar-08 1:37 
GeneralRe: Merge cells in DataGridView ? Pin
jp2code28-Jan-10 4:58
professionaljp2code28-Jan-10 4:58 
GeneralDataTable rows Pin
NewToAspDotNet27-Mar-08 1:26
NewToAspDotNet27-Mar-08 1:26 
GeneralRe: DataTable rows Pin
Anoop Unnikrishnan27-Mar-08 1:34
Anoop Unnikrishnan27-Mar-08 1:34 
GeneralRe: DataTable rows Pin
NewToAspDotNet27-Mar-08 1:54
NewToAspDotNet27-Mar-08 1:54 
GeneralRe: DataTable rows Pin
Evan St. John27-Mar-08 9:18
Evan St. John27-Mar-08 9:18 
GeneralJavascript Pin
simworld27-Mar-08 1:16
simworld27-Mar-08 1:16 

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.