This can have several advantages, none of which come into play right away. These advantages can be:
1) If member variables have nonsensical or abbreviated names the various methods can still use more readable names.
2) If member variables are renamed the implementations of methods are not effected and whoever initially wrote that method will still understand whats going on.
3) No chance of errors accidentally introduced by adding a parameter with a name equal to a member variable.
4) If you, at some point in the future, decide to no longer use "this.mesh" in the code but instead some other instance you only have to make a change at one single point in the code instead of repeating the same change everywhere.
There are more benefits, but I think you can think about them yourself. In general, when working on a team project with many members you want to write code that is clear and easy to understand. Communication is key, especially if you are too lazy to properly document.