Cool, has this been there for long? How could I miss that xD.
EDIT:
After looking at it more closely, I see that it is missing all the helpful documentation found in the headers. It's really just a list of all classes, functions etc without documentation. Visual Studio could do that too, by typing "EE::"+CTRL+SPACE...
I would like to see the documentation comments in there too. It would be really easy to add, one basically just has to replace all '//'s inthe headers with '///<'...
Of course, the best would be if visual studio could display the documentation by itself in a nicely formatted manner like NetBeans does (maybe you know it).
EDIT 2:
If all the comments in the headers would be written ABOVE the functions, visual studio could at least display the raw text.
E.g. changing
Code:
Display& ambBias ( Flt bias ); Flt ambBias () {return _amb_bias ;} // set/get Ambient Bias ( 0..1 , default= 0.3)
to
Code:
// set/get Ambient Bias ( 0..1 , default= 0.3)
Display& ambBias ( Flt bias ); Flt ambBias () {return _amb_bias ;}
Improves the intellisense popup from:
to