casa  5.7.0-16
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ColorDistribution.h
Go to the documentation of this file.
1 //# ColorDistribution.h: global functions for generating color cube dimensions
2 //# Copyright (C) 1994,1995,1996,1997,1998,1999
3 //# Associated Universities, Inc. Washington DC, USA.
4 //#
5 //# This library is free software; you can redistribute it and/or modify it
6 //# under the terms of the GNU Library General Public License as published by
7 //# the Free Software Foundation; either version 2 of the License, or (at your
8 //# option) any later version.
9 //#
10 //# This library is distributed in the hope that it will be useful, but WITHOUT
11 //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
13 //# License for more details.
14 //#
15 //# You should have received a copy of the GNU Library General Public License
16 //# along with this library; if not, write to the Free Software Foundation,
17 //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
18 //#
19 //# Correspondence concerning AIPS++ should be addressed as follows:
20 //# Internet email: aips2-request@nrao.edu.
21 //# Postal address: AIPS++ Project Office
22 //# National Radio Astronomy Observatory
23 //# 520 Edgemont Road
24 //# Charlottesville, VA 22903-2475 USA
25 //#
26 //# $Id$
27 
28 #ifndef TRIALDISPLAY_COLORDISTRIBUTION_H
29 #define TRIALDISPLAY_COLORDISTRIBUTION_H
30 
31 #include <casa/aips.h>
32 
33 namespace casa { //# NAMESPACE CASA - BEGIN
34 
35 // <summary>
36 // Global functions for generating color cube dimensions
37 // </summary>
38 
39 // This table is used to map X number of color cells
40 // into an even cube for RGB distribution. It is unclear
41 // in my mind what a good HSV distribution ought to be.
42 // Maybe read table as H,V,S. Probably build different
43 // one for HSV.
44 
45 // <group name="Color Distribution interface">
46 
47  typedef struct {
48  unsigned int nCells;
49  unsigned int nRed, nGreen, nBlue;
50  } colorDistItem;
51 
52 
53 // Given nCells cells, return the dimensions of an RGB or HSV color cube
54 // that maximally uses those cells by finding the best fit dimensions.
55 // If pow2 is true, then returned dimensions are limited to powers of two.
56 // <group>
57  casacore::Bool getRGBDistribution(casacore::uInt nCells, casacore::Bool pow2,
58  casacore::uInt & nRed, casacore::uInt & nGreen, casacore::uInt & nBlue);
59  casacore::Bool getHSVDistribution(casacore::uInt nCells, casacore::Bool pow2,
60  casacore::uInt & nHue, casacore::uInt & nSat, casacore::uInt & nVal);
61 // </group>
62 // </group>
63 
64 
65 } //# NAMESPACE CASA - END
66 
67 #endif
bool Bool
Define the standard types used by Casacore.
Definition: aipstype.h:42
unsigned int uInt
Definition: aipstype.h:51