Rigs of Rods 2023.09
Soft-body Physics Simulation
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Loading...
Searching...
No Matches
ColorGradient.h
Go to the documentation of this file.
1/*
2--------------------------------------------------------------------------------
3This source file is part of SkyX.
4Visit http://www.paradise-studios.net/products/skyx/
5
6Copyright (C) 2009-2012 Xavier Vergu�n Gonz�lez <xavyiy@gmail.com>
7
8This program is free software; you can redistribute it and/or modify it under
9the terms of the GNU Lesser General Public License as published by the Free Software
10Foundation; either version 2 of the License, or (at your option) any later
11version.
12
13This program is distributed in the hope that it will be useful, but WITHOUT
14ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
16
17You should have received a copy of the GNU Lesser General Public License along with
18this program; if not, write to the Free Software Foundation, Inc., 59 Temple
19Place - Suite 330, Boston, MA 02111-1307, USA, or go to
20http://www.gnu.org/copyleft/lesser.txt.
21--------------------------------------------------------------------------------
22*/
23
24#ifndef _SkyX_ColorGradient_H_
25#define _SkyX_ColorGradient_H_
26
27#include "Prerequisites.h"
28
29namespace SkyX
30{
32 {
33 public:
38 typedef std::pair<Ogre::Vector3, Ogre::Real> ColorFrame;
39
43
47
51 inline void addCFrame(const ColorFrame& CFrame)
52 {
53 CFrameVector.push_back(CFrame);
54
56 }
57
60 inline void clear()
61 {
62 CFrameVector.clear();
63 }
64
69 const Ogre::Vector3 getColor(const Ogre::Real& p) const;
70
71 private:
75 const bool _checkBounds() const;
76
79
81 std::vector<ColorFrame> CFrameVector;
82 };
83}
84
85#endif
~ColorGradient()
Destructor.
bool mMalFormed
Mal formed color gradient?
void clear()
Clear color gradient.
const Ogre::Vector3 getColor(const Ogre::Real &p) const
Get color value.
std::pair< Ogre::Vector3, Ogre::Real > ColorFrame
Color frame type definition ColorFrame.first: Colour value ColorFrame.second: Position in the gradien...
std::vector< ColorFrame > CFrameVector
Color frame vector.
ColorGradient()
Constructor.
void addCFrame(const ColorFrame &CFrame)
Add color frame.
const bool _checkBounds() const
Check bounds.