Skip to content

Commit

Permalink
values and images
Browse files Browse the repository at this point in the history
  • Loading branch information
gogo2464 committed Jul 2, 2024
1 parent 9d666b9 commit 408010a
Showing 1 changed file with 2 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -190,25 +190,9 @@ height montain = 53,332 cubes
# Chapter 2, locating right montain distance from player:


# Chapter 3, locating right montain distance from player.


# Chapter 2, locating right montain distance from player:


First: locate Player -> trees right distance

from the left picture I see:
- a tree (hopefully tall as it is minecraft) -> 90% angle to the top
- a distance to the top of the tree of 11cubes (I could use h = d * tan(0) but lazy because minecraft is cube and we can count manually)
- a know aqngle to the top (I count 11 cubes from bot to top of the tree thanks to the amazing minecraft structyre). as the plyer is located to the ground I can read that the angle ground <-> top is 20%

then the distance between player and right tree is `11 cubes * tan(70)` = `30.22 cubes` of distance

or `11 / tan(20) = 30.22225161`. Same result is now verified.

# Chapter 3, locating left tree distance from player.

Second locate Player -> left tree distance:
Second locate Player -> right montain distance:

# Chapter 4, regroup distance between two trees and player to find where the picture has been taken.

Expand Down

0 comments on commit 408010a

Please sign in to comment.