Newer
Older
/* A Bison parser, made from Gmsh.y
#define YYBISON 1 /* Identify Bison output. */
#define tDOUBLE 257
#define tSTRING 258
#define tBIGSTR 259
#define tEND 260
#define tAFFECT 261
#define tDOTS 262
#define tPi 263
#define tExp 264
#define tLog 265
#define tLog10 266
#define tSqrt 267
#define tSin 268
#define tAsin 269
#define tCos 270
#define tAcos 271
#define tTan 272
#define tRand 273
#define tAtan 274
#define tAtan2 275
#define tSinh 276
#define tCosh 277
#define tTanh 278
#define tFabs 279
#define tFloor 280
#define tCeil 281
#define tFmod 282
#define tModulo 283
#define tHypot 284
#define tPrintf 285
#define tSprintf 286
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
#define tStrCat 287
#define tStrPrefix 288
#define tDraw 289
#define tPoint 290
#define tCircle 291
#define tEllipsis 292
#define tLine 293
#define tSurface 294
#define tSpline 295
#define tVolume 296
#define tCharacteristic 297
#define tLength 298
#define tParametric 299
#define tElliptic 300
#define tPlane 301
#define tRuled 302
#define tTransfinite 303
#define tComplex 304
#define tPhysical 305
#define tUsing 306
#define tBump 307
#define tProgression 308
#define tRotate 309
#define tTranslate 310
#define tSymmetry 311
#define tDilate 312
#define tExtrude 313
#define tDuplicata 314
#define tLoop 315
#define tRecombine 316
#define tDelete 317
#define tCoherence 318
#define tIntersect 319
#define tAttractor 320
#define tLayers 321
#define tScalarTetrahedron 322
#define tVectorTetrahedron 323
#define tTensorTetrahedron 324
#define tScalarTriangle 325
#define tVectorTriangle 326
#define tTensorTriangle 327
#define tScalarLine 328
#define tVectorLine 329
#define tTensorLine 330
#define tScalarPoint 331
#define tVectorPoint 332
#define tTensorPoint 333
#define tBSpline 334
#define tNurbs 335
#define tOrder 336
#define tWith 337
#define tBounds 338
#define tKnots 339
#define tColor 340
#define tColorTable 341
#define tFor 342
#define tIn 343
#define tEndFor 344
#define tIf 345
#define tEndIf 346
#define tExit 347
#define tReturn 348
#define tCall 349
#define tFunction 350
#define tMesh 351
#define tB_SPLINE_SURFACE_WITH_KNOTS 352
#define tB_SPLINE_CURVE_WITH_KNOTS 353
#define tCARTESIAN_POINT 354
#define tTRUE 355
#define tFALSE 356
#define tUNSPECIFIED 357
#define tU 358
#define tV 359
#define tEDGE_CURVE 360
#define tVERTEX_POINT 361
#define tORIENTED_EDGE 362
#define tPLANE 363
#define tFACE_OUTER_BOUND 364
#define tEDGE_LOOP 365
#define tADVANCED_FACE 366
#define tVECTOR 367
#define tDIRECTION 368
#define tAXIS2_PLACEMENT_3D 369
#define tISO 370
#define tENDISO 371
#define tENDSEC 372
#define tDATA 373
#define tHEADER 374
#define tFILE_DESCRIPTION 375
#define tFILE_SCHEMA 376
#define tFILE_NAME 377
#define tMANIFOLD_SOLID_BREP 378
#define tCLOSED_SHELL 379
#define tADVANCED_BREP_SHAPE_REPRESENTATION 380
#define tFACE_BOUND 381
#define tCYLINDRICAL_SURFACE 382
#define tCONICAL_SURFACE 383
#define tCIRCLE 384
#define tTRIMMED_CURVE 385
#define tGEOMETRIC_SET 386
#define tCOMPOSITE_CURVE_SEGMENT 387
#define tCONTINUOUS 388
#define tCOMPOSITE_CURVE 389
#define tTOROIDAL_SURFACE 390
#define tPRODUCT_DEFINITION 391
#define tPRODUCT_DEFINITION_SHAPE 392
#define tSHAPE_DEFINITION_REPRESENTATION 393
#define tELLIPSE 394
#define tTrimmed 395
#define tSolid 396
#define tEndSolid 397
#define tVertex 398
#define tFacet 399
#define tNormal 400
#define tOuter 401
#define tLoopSTL 402
#define tEndLoop 403
#define tEndFacet 404
#define tAFFECTPLUS 405
#define tAFFECTMINUS 406
#define tAFFECTTIMES 407
#define tAFFECTDIVIDE 408
#define tOR 409
#define tAND 410
#define tEQUAL 411
#define tNOTEQUAL 412
#define tAPPROXEQUAL 413
#define tLESSOREQUAL 414
#define tGREATEROREQUAL 415
#define tCROSSPRODUCT 416
#define tPLUSPLUS 417
#define tMINUSMINUS 418
#define UNARYPREC 419
#line 1 "Gmsh.y"
// $Id: Gmsh.tab.cpp,v 1.93 2001-07-26 18:47:59 remacle Exp $
//
// Generaliser sprintf avec des chaines de caracteres
//
#include <stdarg.h>
#include "Gmsh.h"
#include "Const.h"
#include "Context.h"
#include "Geo.h"
#include "CAD.h"
#include "DataBase.h"
#include "Mesh.h"

Christophe Geuzaine
committed
#include "Draw.h"
#include "Create.h"
#include "Views.h"
#include "StepGeomDatabase.h"
#include "Colors.h"
#include "Parser.h"
Loading
Loading full blame...