You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use setXX for setters and getXX for getters. If the class is a frequently used type (like EGE::Vec2d), omit get prefix. For these types, make name as
short as possible, but it should still show the purpose of the class. Use const for getters. Move
all method definitions to source files, except they are one-line (often setter and getters).