/** Converts @a color to a max Point3. @a color must be valid.*/ Point3 toMaxPoint3( const COLLADAFW::Color& color ) { assert(color.isValid()); return Point3(color.getRed(), color.getGreen(), color.getBlue()); }
/** Converts @a color to a max color. @a color must be valid.*/ Color toMaxColor( const COLLADAFW::Color& color ) { assert(color.isValid()); return Color(color.getRed(), color.getGreen(), color.getBlue()); }