diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2016-10-27 18:59:29 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2016-10-27 18:59:29 (GMT) |
commit | d4d595fa7fb12903db9227d33d48b2b00120dbd1 (patch) | |
tree | 7d18365de0d6d1b29399b6a17c7eb01c2eb3ed49 /tksao/util/grid2dbase.h | |
parent | 949f96e29bfe0bd8710d775ce220e597064e2589 (diff) | |
download | blt-d4d595fa7fb12903db9227d33d48b2b00120dbd1.zip blt-d4d595fa7fb12903db9227d33d48b2b00120dbd1.tar.gz blt-d4d595fa7fb12903db9227d33d48b2b00120dbd1.tar.bz2 |
Initial commit
Diffstat (limited to 'tksao/util/grid2dbase.h')
-rw-r--r-- | tksao/util/grid2dbase.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tksao/util/grid2dbase.h b/tksao/util/grid2dbase.h new file mode 100644 index 0000000..ae4c1ac --- /dev/null +++ b/tksao/util/grid2dbase.h @@ -0,0 +1,26 @@ +// Copyright (C) 1999-2016 +// Smithsonian Astrophysical Observatory, Cambridge, MA, USA +// For conditions of distribution and use, see copyright notice in "copyright" + +#ifndef __grid2dbase_h__ +#define __grid2dbase_h__ + +#include "gridbase.h" + +class Grid2dBase : public GridBase { + public: + Grid2dBase(Widget*); + Grid2dBase(Widget*, const char*); + virtual ~Grid2dBase(); + + int gLine(int n, float* x, float* y); + int gQch(float*, float*); + int gMark(int, const float*, const float*, int) {return 1;} + int gText(const char* txt, float x, float y, const char* just, + float upx, float upy); + int gTxExt(const char*, float, float, const char*, + float, float, float*, float*); + int gScales(float *alpha, float *beta); +}; + +#endif |