Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 11, 2008, 12:25:11 AM (16 years ago)
Author:
rgrieder
Message:

test files, no real content.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core3/src/util/Math.h

    r1745 r1766  
    5555}
    5656
    57 _UtilExport std::ostream& operator<<(std::ostream& out, const orxonox::Radian& radian);
     57_UtilExport std::ostream& operator<<(std::ostream& out, const Ogre::Radian& radian);
    5858_UtilExport std::istream& operator>>(std::istream& in, orxonox::Radian& radian);
    5959_UtilExport std::ostream& operator<<(std::ostream& out, const orxonox::Degree& degree);
     
    128128    return false;
    129129}
     130
     131//// ColourValue to std::string
     132//inline bool explicitConversion(std::string* output, const orxonox::ColourValue& input)
     133//{
     134//    std::ostringstream ostream;
     135//    if (ostream << input.r << "," << input.g << "," << input.b << "," << input.a)
     136//    {
     137//        (*output) = ostream.str();
     138//        return true;
     139//    }
     140//    return false;
     141//}
    130142
    131143// std::string to Vector2
Note: See TracChangeset for help on using the changeset viewer.