I'm currently working on a game in JS using HTML5 canvas and I need to convert a 3D coordinate defined byx
, y
, z
to 2D coordinate defined by x'
and y'
using two projections mode : axonometric first and then isometric.
I have already read the wiki page of isometric projection to find formula but I don't understand that :
Wikipedia formula:
Why it's using matrix rotation and where is the x'
and y'
2D result ?
Can someone give me the formulas to convert a point of 3D axes in 2D axes using axonometric projection and the formula using isometric projection with explanation for beginner in mathematical?