Changes between Version 9 and Version 10 of CodingStyle


Ignore:
Timestamp:
Jan 30, 2008, 2:17:59 PM (16 years ago)
Author:
Frederico Caldeira Knabben
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CodingStyle

    v9 v10  
    131131    while ( !done )
    132132    {
    133         doSomething() ;
    134         done = moreToDo() ;
     133        DoSomething() ;
     134        done = MoreToDo() ;
    135135    }
    136136}}}
     
    155155        d + e ;
    156156
    157     method( param1, param2,
     157    Method( param1, param2,
    158158        param3 ) ;
    159159
    160     setText( 'Long line split' +
     160    SetText( 'Long line split' +
    161161        'into two parts.' ) ;
    162162
     
    221221    // Specify matrix as a rotation transformation
    222222    matrix.SetElement( 1, 1, cosAngle ) ;
    223     matrix.setElement( 1, 2, sinAngle ) ;
    224     matrix.setElement( 2, 1, -sinAngle ) ;
    225     matrix.setElement( 2, 2, cosAngle ) ;
     223    matrix.SetElement( 1, 2, sinAngle ) ;
     224    matrix.SetElement( 2, 1, -sinAngle ) ;
     225    matrix.SetElement( 2, 2, cosAngle ) ;
    226226
    227227    // Apply rotation
    228     transformation.multiply( matrix ) ;
     228    transformation.Multiply( matrix ) ;
    229229}}}
    230230
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy