/usr/include/ncarg/hlu/ViewI.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 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 | /*
* $Id: ViewI.h,v 1.8 2003-04-04 18:34:08 dbrown Exp $
*/
/************************************************************************
* *
* Copyright (C) 1994 *
* University Corporation for Atmospheric Research *
* All Rights Reserved *
* *
************************************************************************/
/*
* File: ViewI.h
*
* Author: Jeff W. Boote
* National Center for Atmospheric Research
* PO 3000, Boulder, Colorado
*
* Date: Wed Jan 26 17:52:02 MST 1994
*
* Description: Private global function declarations for View.
*/
#ifndef _NVIEWI_H
#define _NVIEWI_H
#include <ncarg/hlu/hluP.h>
#include <ncarg/hlu/Segments.h>
#include <ncarg/hlu/View.h>
/*
* Globally callable functions from Segments.c
*/
extern void _NhlDestroySegTransDat(
#if NhlNeedProto
NhlTransDat* /* transdat */
#endif
);
extern NhlTransDat *_NhlInitSegTransDat(
#if NhlNeedProto
float*, /* x */
float* /* y */
#endif
);
extern void _NhlResetSegTransDat(
#if NhlNeedProto
NhlTransDat*, /* transdat */
float*, /* x */
float* /* y */
#endif
);
extern void _NhlComputeSegTrans(
#if NhlNeedProto
NhlTransDat*, /* transdat */
float *, /* transform */
float *, /* xprime */
float * /* yprime */
#endif
);
extern NhlBoolean _NhlSegmentSpansArea(
#if NhlNeedProto
NhlTransDat* transdat,
float xmin,
float xmax,
float ymin,
float ymax
#endif
);
extern NhlErrorTypes _NhlDrawSegment(
#if NhlNeedProto
NhlTransDat*, /* transdat */
int /* wksid */
#endif
);
extern void _NhlEvalTrans(
#if NhlNeedProto
float *, /*transform */
float, /* x */
float, /* y */
float *, /* xprime */
float * /* yprime */
#endif
);
extern NhlErrorTypes _NhlStartSegment(
#if NhlNeedProto
NhlTransDat* /* transdat */
#endif
);
extern void _NhlSetSegTrans(
#if NhlNeedProto
NhlTransDat*, /* transdat */
float* /* transform */
#endif
);
extern void _NhlEndSegment(
#if NhlNeedProto
NhlTransDat* /* transdat */
#endif
);
typedef struct _NhlViewClassRec *NhlViewClass;
typedef struct _NhlViewLayerRec *NhlViewLayer;
typedef struct _NhlAnnoStatusCBDataRec
_NhlAnnoStatusCBDataRec, *_NhlAnnoStatusCBData;
struct _NhlAnnoStatusCBDataRec {
int id; /* layer id */
int base_id; /* id of base plot */
int anno_manager_id; /* NhlNULLOBJID on remove */
NhlBoolean isanno; /* True on add; False on remove */
};
#define _NhlCBvpAnnoStatus "CBvpAnnoStatus" /* cbdata.ptrval is
_NhlAnnoStatusCBData */
#endif /* _NVIEWI_H */
|