For better readability and standardization of VVVV related code we should all conform to the coding styles below:
RedHotChilliPeppers
Camel Casing
redHotChilliPeppers
//good class RedHot //bad class TRedHot class redhot
//good interface IRedHot //bad interface RedHotInterface interface Iredhot
//good int FChilliPepper //bad int ChilliPepper int FchilliPepper
//good int redPepper; void Foo(int barCode); //bad int Redpepper; int RedPepper; void Foo(int BarCode);
//good int GChilliPepper; //bad int ChilliPepperGlobal; int GchilliPepper;
//good PlayMusic(); //bad playMusic();
//good OnExplode //bad Explode Onexplode
//good ExplodeCB() //bad ExplosionCB() explodeCB()
//good if true then { ... }; //bad if true then { ... }; if true then { ... };
//good MyFunction(a, b); //bad MyFunction( a , b );
//good a = b; for (int i = 0; i < 10; ++i) //bad a=b; for (int i=0; i<10; ++i)
Note that certain incompatibilities to the similar guides listed below (which differ among themselves aswell) are deliberate.
anonymous user login
~3d ago
~9d ago
~9d ago
~10d ago
~23d ago
~1mth ago
~1mth ago
~1mth ago
~1mth ago
~2mth ago