Changeset 2321


Ignore:
Timestamp:
05/14/08 20:16:56 (5 years ago)
Author:
jylam
Message:
Location:
libcaca/trunk/cxx
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libcaca/trunk/cxx/cucul++.cpp

    r2313 r2321  
    152152} 
    153153 
    154 void Cucul::Rotate() 
     154void Cucul::Rotate180() 
    155155{ 
    156156    cucul_rotate_180(cv); 
     157} 
     158 
     159void Cucul::RotateLeft() 
     160{ 
     161    cucul_rotate_left(cv); 
     162} 
     163 
     164void Cucul::RotateRight() 
     165{ 
     166    cucul_rotate_right(cv); 
    157167} 
    158168 
  • libcaca/trunk/cxx/cucul++.h

    r2313 r2321  
    114114    void Flip(); 
    115115    void Flop(); 
    116     void Rotate(); 
     116    void Rotate180(); 
     117    void RotateLeft(); 
     118    void RotateRight(); 
    117119    void drawLine(int, int, int, int, uint32_t); 
    118120    void drawPolyline(int const x[], int const y[], int, uint32_t); 
Note: See TracChangeset for help on using the changeset viewer.