I'm trying to group together an object's vertex X components in a vector, like structure of array style.
Naturally this is the way.
Vec xComponents; or Vec xVals; or simply Vec x;
However sometimes I want to specify in the id what x components belong to, I think about doing this.
Vec objXComponents;
However, the two capitals next to each other seem to break a rule about camel case, and may make it slightly less readable.
What should I do for this case? I know you may say just cull the components post-fix and use objX
, and while I think that's OK for this case I would like a general solution / standard.
I tried finding if microsoft has a standard for this but I cant find it on their style guidlines.