Before I get redirected to this particular question, let me clarify that while I've come across it, I am unable to comprehend its content (I wish I could). What I'm really seeking is a straightforward method (bearing in mind my limited math skills) or someone capable of translating it into JavaScript language.
In essence, my objective is to determine the coordinates of a point by utilizing 3 or more points (even up to 20) and the known distance between the desired point and the aforementioned points. How should I initiate this process?
My ideal outcome would resemble something similar to:
function getPoint(array){
var pt = {x:0, y:0};
//This is the crucial part where I need assistance
return pt;
}
var a = [{x:10, y:10, d:30}, {x:10, y:50, d:20} ...];
getPoint(a);
I contemplated on computing circle-to-circle intersection; however, this approach yields two possible points, making it challenging to identify the correct one.