* Corrected function/variable cases for C# examples
This commit corrects a few charecter cases in relation to
godot/modules/mono/glue/cs_files/Mathf.cs. The documentation currently states
Pi is defined as `Mathf.PI`, while it's actually `Mathf.Pi`.
The same mistake was found and fixed for some misc. arithmetical functions.
* Reverted Pi to PI
Though it covers an interesting topic in a way that can be beneficial
to many Godot users, after discussion with doc team members and reduz
we feel that its current scope is too out of phase with the target
readership of the Godot docs.
This tutorial would work better hosted out of the Godot docs, and
referenced with a `.. seealso::` link for those who want to dig further
into the math meat.
Thanks a lot to tagcup for this contribution though (as well as the
many contributions to the engine's math and rendering), and sorry for
not better describing what kind of "advanced" math tutorial would be
fitting for the Godot docs.
Sphinx: Also reverted from mathjax to imgmath, as the former implied
running JS code on every single page (regardless of their use of LaTeX
formulas to renderer), so for now imgmath is simpler and good enough.
Also removed the redundant SLERP discussion (which contained an awful typo: it used the symbols we introduced to described the 3D vectors and angles to describe
the 4D ones).