// $Id: ZColor.cxx 2288 2009-12-17 13:56:37Z matevz $ // Copyright (C) 1999-2008, Matevz Tadel. All rights reserved. // This file is part of GLED, released under GNU General Public License version 2. // For the licensing terms see $GLEDSYS/LICENSE or http://www.gnu.org/. #include "ZColor.h" //______________________________________________________________________________ // // Color class using RGBA float quadruple. ClassImp(ZColor); ostream& operator<<(ostream& s, ZColor& c) { return s << c[0] <<","<< c[1] <<","<< c[2] <<","<< c[3]; }