Post Reply 
Geometry: triangulation for measuring a lot/yard
07-22-2018, 05:15 AM
Post: #6
RE: Geometry: triangulation for measuring a lot/yard
Hi! My first post here... =)

Isn't this problem solvable using ruler and compass? Check this out:

Code:

SW = point(0, 0)
SE = point(8, 0)
NWSW = 9
NWSE = 12
NESW = 11
NESE = 7
NW = single_inter(circle(SW, NWSW), circle(SE, NWSE))
NE = single_inter(circle(SW, NESW), circle(SE, NESE))

NWSW, NWSE, NESW and NESE corresponds to distances between points.

The idea is to find the intersection (third vertex of the triangle) of the circles centered at SW with radiuses NWSW and NESW.
The same for SE and circles with radiuses NWSE and NESE.

Kind of hard to explain (for me), the attached images may be helpful...


Attached File(s) Thumbnail(s)
       
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Geometry: triangulation for measuring a lot/yard - haroflow - 07-22-2018 05:15 AM



User(s) browsing this thread: 1 Guest(s)