/usr/include/ncarg/hlu/TransObj.h is in libncarg-dev 6.2.0-3+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | /*
* $Id: TransObj.h,v 1.16 2004-01-23 22:46:53 dbrown Exp $
*/
/************************************************************************
* *
* Copyright (C) 1992 *
* University Corporation for Atmospheric Research *
* All Rights Reserved *
* *
************************************************************************/
/*
* File: TransObj.h
*
* Author: Ethan Alpert
* National Center for Atmospheric Research
* PO 3000, Boulder, Colorado
*
* Date: Fri Oct 16 10:48:21 MDT 1992
*
* Description: This is the public header file for the TransObj class.
* The TransObjClass is responsible for managing
* transformations DATA==>VIEWPORT definitions.
*/
#ifndef _NTransObj_h
#define _NTransObj_h
#include <ncarg/hlu/Base.h>
typedef enum _NhlAxisType {
NhlIRREGULARAXIS,
NhlLINEARAXIS,
NhlLOGAXIS
} NhlAxisType;
#define NhlTAxisType "AxisType"
typedef enum _NhlGridType {
NhltrMAP = 0, /* Map */
NhltrLOGLIN = 1, /* LogLin */
NhltrIRREGULAR = 2, /* Irregular */
NhltrCURVILINEAR = 3, /* Curvilinear */
NhltrSPHERICAL = 4, /* Spherical */
NhltrTRIANGULARMESH = 5 /* TriangularMesh */
} NhlGridType;
#define NhlTGridType "GridType"
#define NhlNtrXMinF "trXMinF"
#define NhlCtrXMinF "TrXMinF"
#define NhlNtrXMaxF "trXMaxF"
#define NhlCtrXMaxF "TrXMaxF"
#define NhlNtrXReverse "trXReverse"
#define NhlCtrXReverse "TrXReverse"
#define NhlNtrYMinF "trYMinF"
#define NhlCtrYMinF "TrYMinF"
#define NhlNtrYMaxF "trYMaxF"
#define NhlCtrYMaxF "TrYMaxF"
#define NhlNtrYReverse "trYReverse"
#define NhlCtrYReverse "TrYReverse"
#define NhlNtrOutOfRangeF "trOutOfRangeF"
#define NhlCtrOutOfRangeF "TrOutOfRangeF"
#define NhlNtrResolutionF "trResolutionF"
#define NhlCtrResolutionF "TrResolutionF"
#define NhlNtrLineInterpolationOn "trLineInterpolationOn"
#define NhlCtrLineInterpolationOn "TrLineInterpolationOn"
#define NhlNtrGridType "trGridType"
#define NhlCtrGridType "TrGridType"
/*
* both Irregular and Curvilinear define these array resources
*/
#define NhlNtrXCoordPoints "trXCoordPoints"
#define NhlCtrXCoordPoints "TrXCoordPoints"
#define NhlNtrYCoordPoints "trYCoordPoints"
#define NhlCtrYCoordPoints "TrYCoordPoints"
extern NhlClass NhltransObjClass;
#endif /*_NTransObj_h*/
|