Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:49:16

0001 #include "SColor.hh"
0002 #include "OPTICKS_LOG.hh"
0003 
0004 int main(int argc, char** argv)
0005 {
0006     OPTICKS_LOG(argc, argv); 
0007 
0008     assert( SColors::red.r == 0xff ); 
0009 
0010     assert( SColors::red.get(0) == 0xff ); 
0011     assert( SColors::red.get(1) == 0x00 ); 
0012     assert( SColors::red.get(2) == 0x00 ); 
0013     assert( SColors::red.get(3) == 0xff ); 
0014 
0015 
0016     return 0 ; 
0017 }