This file is indexed.

/usr/include/geomview/geomclass.h is in libgeomview-dev 1.9.4-3.

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
232
233
234
235
236
237
238
239
/* Copyright (C) 1992-1998 The Geometry Center
 * Copyright (C) 1998-2000 Stuart Levy, Tamara Munzner, Mark Phillips
 *
 * This file is part of Geomview.
 * 
 * Geomview is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published
 * by the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 * 
 * Geomview is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with Geomview; see the file COPYING.  If not, write
 * to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139,
 * USA, or visit http://www.gnu.org.
 */


/* Authors: Charlie Gunn, Stuart Levy, Tamara Munzner, Mark Phillips */

#ifndef GEOMCLASSDEF
#define GEOMCLASSDEF

#undef  GEOM_SM

#include "geom.h"
#include "appearance.h"
#include "ooglutil.h"
#include "pick.h"
#include "bsptree.h"
#include "freelist.h"
#include "dbllist.h"

typedef char   *GeomNameFunc( void );
typedef GeomClass   *GeomMethodsFunc( Geom *object );

typedef Geom *GeomMessageFunc( Geom *, int ac, char *av[] );

typedef Geom *GeomCopyFunc( Geom *object );
typedef Geom *GeomCreateFunc( Geom *existing, GeomClass *Class, va_list *args );
typedef int   GeomGetFunc( Geom *g, int attribute, void *attrp );
typedef int   GeomDeleteFunc( Geom *object );
typedef Geom *GeomReplaceFunc( Geom *object, Geom *newchild );
typedef Geom *GeomIterateFunc( GeomIter *iter, int op );  /* What should the interface be? */
typedef Geom *GeomLoadFunc( char *name );
typedef Geom *GeomFLoadFunc( IOBFILE *file, char *name );
typedef Geom *GeomSaveFunc( Geom *object, char *name );
typedef Geom *GeomFSaveFunc( Geom *object, FILE *file, char *name );

typedef Geom *GeomPositionFunc( Geom *object, Transform T );
typedef Geom *GeomTransformFunc( Geom *object, Transform T, TransformN *TN );
typedef Geom *GeomTransformToFunc( Geom *object, Transform T, TransformN *TN );
typedef Geom *GeomRotateFunc( Geom *object, float angle, Point3 *axis  );
typedef Geom *GeomTranslateFunc( Geom *object, float x, float y, float z );
typedef Geom *GeomScaleFunc( Geom *object, float x, float y, float z );

typedef Geom *GeomEvertFunc( Geom *object );
typedef Geom *GeomBoundFunc( Geom *object, Transform T, TransformN *TN );
typedef Geom *GeomBoundSphereFunc( Geom *object, Transform T,
                                   TransformN *TN, int * axes, int space );
typedef Geom *GeomEvalFunc(  Geom *object, float u, float v );
typedef Geom *GeomDiceFunc( Geom *object, int nu, int nv );
typedef Geom *GeomSubdivideFunc( /* Geom *object */ );

typedef Geom *
GeomPickFunc(Geom *, Pick *, Appearance *, Transform, TransformN *, int *axes);

typedef Geom *GeomFacingFunc( /* Geom *object, ... */ );
typedef Geom *GeomDrawFunc(Geom *object);
typedef Geom *GeomBSPTreeFunc(Geom *object, BSPTree *tree, int action);

/* GeomBSPTree action values */
enum {
  BSPTREE_CREATE  = 0, /* simply record tree in geom-struct */
  BSPTREE_DELETE  = 1, /* delete the tree or the reference to it */
  BSPTREE_ADDGEOM = 2  /* add polyhedrons to the tree's poly-list */
};

typedef int GeomExportFunc( Geom *object, Pool *p );
typedef Geom *GeomImportFunc( Pool *p );
typedef Geom *GeomUnexportFunc( Handle *h );
typedef Geom *GeomScanFunc( Geom *g, int (*func)(/*Geom*,Handle**,void *arg*/), void *arg );
typedef Geom *GeomAppendFunc( Geom *g, Handle *h, Geom *newitem );

struct GeomClass
{

  /* General Methods */
  GeomClass       *super;         /* superclass of this class */
  GeomNameFunc    *name;
  GeomMethodsFunc *methods;
  GeomMessageFunc *message;

  GeomGetFunc     *get;
  GeomCreateFunc  *create;
  GeomDeleteFunc  *Delete;
  GeomCopyFunc    *copy;
  GeomReplaceFunc *replace;
  GeomFLoadFunc   *fload;
  GeomFSaveFunc   *fsave;
  GeomExtFunc     **extensions;   /* Extension methods live here */
  int             n_extensions;   /* Size of extensions[] array */

  /* Geometric Methods */
  GeomPositionFunc    *position;
  GeomTransformFunc   *transform;
  GeomTransformToFunc *transformto;

  GeomEvertFunc     *evert;
  GeomBoundFunc     *bound;
  GeomEvalFunc      *eval;
  GeomDiceFunc      *dice;
  GeomSubdivideFunc *subdivide;

  /* Picking methods */
  GeomPickFunc        *pick;
  GeomBoundSphereFunc *boundsphere;
  GeomIterateFunc     *iterate;
  GeomAppendFunc      *append;        /* Append new item to hierarchy object */
  GeomScanFunc        *scan;

  /* Graphics Methods */
  GeomFacingFunc  *facing;
  GeomDrawFunc    *draw;
  GeomBSPTreeFunc *bsptree;

  /* Communications methods */
  GeomExportFunc   *export;
  GeomImportFunc   *import;
  GeomUnexportFunc *unexport;
};

extern GeomClass *GeomClassCreate();
extern GeomClass *GeomSubClassCreate();
extern GeomClass *GeomClassLookup(char *classname);
extern void      *GeomClassIterate();
extern GeomClass *GeomNextClass( void *iter );
extern GeomClass *GeomFName2Class( char *fname );

extern Geom *GeomBoundSphereFromBBox(Geom *, Transform, TransformN *, int *axes,
                                     int space);

/* internal routine used by file-reading routines */
extern char *GeomToken(IOBFILE *f);

/* flag values for "geomflags" */
#define VERT_N       (1 << 0)
#define VERT_C       (1 << 1)
#define VERT_4D      (1 << 2)
#define VERT_ST      (1 << 3) /* texture */
#define FACET_C      (1 << 4)
#define COLOR_ALPHA  (1 << 5) /* VERT_C or FACET_C have alpha != 1 */
#define GEOM_ALPHA   (1 << 6) /* geom color or mat. color have alpha != 1 */
#define GEOM_COLOR   (VERT_C|FACET_C)
#define GEOMFL_SHIFT 8
#define GEOMFL_MASK  ~(~0U << GEOMFL_SHIFT)

/* per class additions should be defined using this macro: */
#define GEOMFLAG(bits) ((bits) << GEOMFL_SHIFT)

/* 32-bit magic numbers for OOGL data types */
#define GeomMagic(key, ver)     OOGLMagic('g', ((key) << 8) | ((ver)&0xff))
#define GeomIsMagic(magic)      (((magic) & 0xffff0000) == GeomMagic(0,0))

/* This is the "common" geom stuff which starts every geom */
#define GEOMFIELDS							\
  REFERENCEFIELDS;       /* magic, ref_count, handle */			\
  struct GeomClass *Class;						\
  Appearance       *ap;							\
  Handle           *aphandle;						\
  int              geomflags;						\
  int              pdim; /* does this belong here? */			\
  /* The following three fields are used to attach data to a geometry	\
   * objects which depends on the position of the Geom in the object	\
   * hierarchy. As a Geom object can be referenced by Handles the Geom	\
   * might occur in many positions inside the hierarchy. See also the	\
   * comment in front of "struct NodeData" below.			\
   *									\
   * The components "ppath" and "ppathlen"   newpl.ppath     = pl->ppath;
  newpl.ppathlen  = pl->ppathlen;
are non-persistent and only	\
   * valid through tree traversal with GeomDraw().			\
   */									\
  DblListNode      pernode;  /* per-node data */			\
  char             *ppath;   /* parent path */				\
  int              ppathlen; /* its length */				\
  /* Also a non-persistent entry: the bsptree for correct rendering of	\
   * translucent objects with alpha-blending. If non-NULL, this is the	\
   * tree for the object sub-hierarchy starting at this object.		\
   */									\
  BSPTree          *bsptree

struct Geom { /* common data structures for all Geom's */
  GEOMFIELDS;
};

typedef struct HGeom {  /* This tuple appears in hierarchy objects */
  Handle *h;
  Geom *g;
} HGeom;

static inline bool GeomHasAlpha(Geom *geom, const Appearance *ap)
{
  if ((ap->flag & APF_TRANSP) && (ap->flag & APF_FACEDRAW)) {
    if ((ap->flag & APF_TEXTURE) &&
	ap->tex && ap->tex->apply != TXF_DECAL &&
	ap->tex->image && (ap->tex->image->channels % 2 == 0)) {
      /* maybe the picture code should set a flag if the alpha channel
       * indeed has values != 255.
       */
      geom->geomflags |= GEOM_ALPHA;
      return true;
    } else if ((ap->mat->valid & MTF_ALPHA) &&
	       ((ap->mat->override & MTF_ALPHA) ||
		!(geom->geomflags & GEOM_COLOR))) {
      if (ap->mat->diffuse.a != 1.0) {
	geom->geomflags |= GEOM_ALPHA;
	return true;
      }
    } else if (geom->geomflags & COLOR_ALPHA) {
      geom->geomflags |= GEOM_ALPHA;
      return true;
    }
  }
  geom->geomflags &= ~GEOM_ALPHA;
  return false;
}

#endif /*GEOMCLASSDEF*/

/*
 * Local Variables: ***
 * c-basic-offset: 2 ***
 * End: ***
 */