swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: 124dbb45075f474d52a78ca1a94030f355a04f25 authored by Dmitry Yu. Naumov on 24 November 2021, 13:25:38 UTC
Merge branch 'LinAlgResizeVectorsOnCopy' into 'master'
Tip revision: 124dbb4
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