source: trunk/packages/vizservers/nanovis/vrmath/vrColor4f.cpp @ 2720

Last change on this file since 2720 was 2096, checked in by ldelgass, 13 years ago

Normalize line endings, set eol-style to native on *.cpp, *.h files

File size: 190 bytes
Line 
1#include <vrmath/vrColor4f.h>
2
3vrColor4f::vrColor4f()
4: r(0.0f), g(0.0f), b(0.0f), a(1.0f)
5{
6}
7
8vrColor4f::vrColor4f(float r1, float g1, float b1, float a1)
9: r(r1), g(g1), b(b1), a(a1)
10{
11}
Note: See TracBrowser for help on using the repository browser.