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

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

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

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