Medical Imaging Interaction Toolkit  2023.12.99-ed252ae7
Medical Imaging Interaction Toolkit
mitkColorSequence.h
Go to the documentation of this file.
1 /*============================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center (DKFZ)
6 All rights reserved.
7 
8 Use of this source code is governed by a 3-clause BSD license that can be
9 found in the LICENSE file.
10 
11 ============================================================================*/
12 #ifndef mitkColorSequence_h
13 #define mitkColorSequence_h
14 
16 #include <mitkColorProperty.h>
17 
18 namespace mitk
19 {
26  {
27  public:
28  ColorSequence();
29  virtual ~ColorSequence();
30 
34  virtual Color GetNextColor() = 0;
35 
39  virtual void GoToBegin() = 0;
40  };
41 }
42 
43 #endif
MitkDataTypesExtExports.h
MITKDATATYPESEXT_EXPORT
#define MITKDATATYPESEXT_EXPORT
Definition: MitkDataTypesExtExports.h:15
mitk::Color
itk::RGBPixel< float > Color
Color Standard RGB color typedef (float)
Definition: mitkColorProperty.h:38
mitk
Find image slices visible on a given plane.
Definition: RenderingTests.dox:1
mitkColorProperty.h
mitk::ColorSequence
Inferface for creating a sequence of nice/matching/appropriate/... colors.
Definition: mitkColorSequence.h:25