/usr/include/ncarg/hlu/TransObjI.h is in libncarg-dev 6.1.2-7.
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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 | /*
* $Id: TransObjI.h,v 1.9 2004-10-05 22:50:34 dbrown Exp $
*/
/************************************************************************
* *
* Copyright (C) 1994 *
* University Corporation for Atmospheric Research *
* All Rights Reserved *
* *
************************************************************************/
/*
* File: TransObjI.h
*
* Author: Jeff W. Boote
* National Center for Atmospheric Research
* PO 3000, Boulder, Colorado
*
* Date: Wed Jan 26 18:35:48 MST 1994
*
* Description:
*/
#ifndef _NTransObjI_h
#define _NTransObjI_h
#include <ncarg/hlu/hluP.h>
#include <ncarg/hlu/WorkstationI.h>
#include <ncarg/hlu/TransObj.h>
/*
* private get-only resource that allows an object to determine
* if the trans obj has changed
*/
#define NhlNtrChangeCount ".trChangeCount"
#define NhlCtrChangeCount ".TrChangeCount"
/*
* private resources for communicating plot data limits
*/
#define NhlNtrDataXStartF ".trDataXStartF"
#define NhlNtrDataYStartF ".trDataYStartF"
#define NhlNtrDataXEndF ".trDataXEndF"
#define NhlNtrDataYEndF ".trDataYEndF"
#define NhlCtrDataXStartF ".TrDataXStartF"
#define NhlCtrDataYStartF ".TrDataYStartF"
#define NhlCtrDataXEndF ".TrDataXEndF"
#define NhlCtrDataYEndF ".TrDataYEndF"
/*
* Cell Bounds Information
* trXCIsBounds and trYCIsBounds specify whether the provided coordinates
* are cell boundaries (if not they are cell centers).
* trDoBounds is set True if the drawing method used is capable of
* handling cell boundaries. If not the TransObj class is expected to
* substitute a coordinate set interpolated to cell centers.
*/
#define NhlNtrXCIsBounds ".trXCIsBounds"
#define NhlNtrYCIsBounds ".trYCIsBounds"
#define NhlNtrDoBounds ".trDoBounds"
#define NhlCtrXCIsBounds ".TrXCIsBounds"
#define NhlCtrYCIsBounds ".TrYCIsBounds"
#define NhlCtrDoBounds ".TrDoBounds"
/*
* Private Global functions defined by the Transform Class
*/
extern NhlErrorTypes _NhlDataLineTo(
#if NhlNeedProto
NhlLayer /* instance */,
float /* x */,
float /* y */,
int /* upordown */
#endif
);
extern NhlErrorTypes _NhlCompcLineTo(
#if NhlNeedProto
NhlLayer /* instance */,
float /* x */,
float /* y */,
int /* upordown */
#endif
);
extern NhlErrorTypes _NhlWinLineTo(
#if NhlNeedProto
NhlLayer /* instance */,
float /* x */,
float /* y */,
int /* upordown */
#endif
);
extern NhlErrorTypes _NhlNDCLineTo(
#if NhlNeedProto
NhlLayer /* instance */,
float /* x */,
float /* y */,
int /* upordown */
#endif
);
extern NhlErrorTypes _NhlDataPolygon(
#if NhlNeedProto
NhlLayer instance,
float *x,
float *y,
int n
#endif
);
extern NhlErrorTypes _NhlDataToWin(
#if NhlNeedProto
NhlLayer /* instance */,
float* /* x */,
float* /* y */,
int /* n */,
float* /* xout */,
float* /* yout */,
int * /*istrans */,
float * /*xmissing */,
float * /*ymissing */
#endif
);
extern NhlErrorTypes _NhlWinToData(
#if NhlNeedProto
NhlLayer /* instance */,
float* /* x */,
float* /* y */,
int /* n */,
float* /* xout */,
float* /* yout */,
int * /*istrans*/,
float * /*xmissing */,
float * /*ymissing */
#endif
);
extern NhlErrorTypes _NhlWinToNDC(
#if NhlNeedProto
NhlLayer /* instance */,
float* /* x */,
float* /* y */,
int /* n */,
float* /* xout */,
float* /* yout */,
int * /*istrans*/,
float * /*xmissing */,
float * /*ymissing */
#endif
);
extern NhlErrorTypes _NhlNDCToWin(
#if NhlNeedProto
NhlLayer /* instance */,
float* /* x */,
float* /* y */,
int /* n */,
float* /* xout */,
float* /* yout */,
int * /*istrans*/,
float * /*xmissing */,
float * /*ymissing */
#endif
);
extern NhlErrorTypes _NhlDataToCompc(
#if NhlNeedProto
NhlLayer /* instance */,
float* /* x */,
float* /* y */,
int /* n */,
float* /* xout */,
float* /* yout */,
int * /*istrans*/,
float * /*xmissing */,
float * /*ymissing */
#endif
);
extern NhlErrorTypes _NhlCompcToData(
#if NhlNeedProto
NhlLayer /* instance */,
float* /* x */,
float* /* y */,
int /* n */,
float* /* xout */,
float* /* yout */,
int * /*istrans*/,
float * /*xmissing */,
float * /*ymissing */
#endif
);
extern NhlErrorTypes _NhlCompcToWin(
#if NhlNeedProto
NhlLayer /* instance */,
float* /* x */,
float* /* y */,
int /* n */,
float* /* xout */,
float* /* yout */,
int * /*istrans*/,
float * /*xmissing */,
float * /*ymissing */
#endif
);
extern NhlErrorTypes _NhlWinToCompc(
#if NhlNeedProto
NhlLayer /* instance */,
float* /* x */,
float* /* y */,
int /* n */,
float* /* xout */,
float* /* yout */,
int * /*istrans*/,
float * /*xmissing */,
float * /*ymissing */
#endif
);
extern NhlErrorTypes _NhlSetTrans(
#if NhlNeedProto
NhlLayer /* instance*/,
NhlLayer parent
#endif
);
#endif /* _NTransObjI_h */
|