ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
Welcome to my star chart!!
2
I'm an aquarius :3
3
sorry thats a birth chart
4
Okay but there's a lot of things you can do with minecraft stars
Raw positions to in-game coords basic:
5
And keeping track of all 780 is hard without spreadsheets
(x,y,z) -> (-z,y,x) - noon
6
So in this document I've laid out a few ways to interpret them, which I found interesting
(x,y,z) -> (z,-y,x) - midnight
7
(x,y,z) -> (-y,-z,x) - sunset
8
Anyway the basis for this whole thing is the raw data generated by the game
(x,y,z) -> (y,z,x) - sunrise
9
You can find all of this on the "rawData" sheet
10
This lays out the raw position, size, rotation, and even the 4 vertices generated for each star.
11
12
this ISNT where they are in the sky though
13
if you want their relative position in the sky you need to transform them a bit
14
first you convert them to the in-game coordinates by negating the z and swapping it with the x (x,y,z) -> (-z,y,x)
15
This is their default position(noon). to get a specific time's positions, just rotate these new coords on their z axis by that time's Sky Angle * 2π
Brief Sky Angle explanation:
16
(x,y,z) -> (x*cos(skyAngle*2π) - y*sin(skyAngle*2π), y*cos(skyAngle*2π) + x*sin(skyAngle*2π), z)
given a time, there's a rotation for the sky
17
I've laid out these real positions for each star/their vertices at midnight on the "realPositions" sheet
this is calculated by (2d+e)/3
18
Sorry if you want the other times you'll have to do them yourself
where d is (t-6000)/24000) % 1
19
and e is 0.5 - cos(dπ)/2
20
But more excitingly! I made a list of commands that /tp you to face each one at different times
(assume a negative number modulo one is positive(e.g. -1.25 % 1 = .75) because it is fight me)
21
Also prolly not useful since I doubt you care about stars, but I did it anyway?
22
on the "tpCommands" page theres a /tp for times 12785, 18000, and 23215 for each star
23
just do /gamerule doDaylightCycle false, /time set 12785/18000/23215, and then a /tp command to see your favorite star
24
(18000 is midnight, and 12785 and 23215 is when the sky is at exactly 90/270 degrees)
25
I'd suggest just using the 18000 and an empty world though, since the sky gets kinda bright during the others
26
27
On the "blockCommands" page there's a list of setblock commands
28
I'd suggest just popping them into a function file and executing that
29
It places a diamond block on every single star's midnight position(relative to the player's position)
30
I suppose you can see where they physically are with this
31
But I just did it cuz it looks cool
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Like come on
47
48
On the "tidbits" page I just compiled some fun facts/trivia that i though was fun
49
this whole document is fun facts ig but these are more fun
50
kinda the stuff that I have in the the but more
51
52
And on the final page, I calculated your horoscope for today based on your favorite minecraft star
53
54
55
56
anyway sorry if this is kinda all over its information from like a week ago and im exhausted
57
i know you star stans out there hunger for quality information
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100