swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: 13d5b7a1d217f66c30a60fb04eaee7ff8021d0b3 authored by Dmitri Naumov on 15 March 2021, 12:24:35 UTC
[PL/DS] Fix spelling of class name.
Tip revision: 13d5b7a
Color.h
/**
 * \file
 * \author Karsten Rink
 * \date   2010-02-04
 * \brief  Definition of the Color class.
 *
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 *
 */

#pragma once

#include <array>
#include <map>
#include <string>

namespace DataHolderLib
{
using Color = std::array<unsigned char, 4>;

Color createColor(unsigned char r,
                  unsigned char g,
                  unsigned char b,
                  unsigned char a = 255);

/// Returns a random RGB colour.
Color getRandomColor();

/// Uses a color-lookup-table (in form of a map) to return a colour for a specified name. If the name is not
/// in the colortable a new entry is created with the new name and a random colour.
Color getColor(const std::string& id,
               std::map<std::string, DataHolderLib::Color>& colors);

}  // namespace DataHolderLib
back to top