-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathGTEngineProjectFiles.txt
More file actions
1043 lines (1043 loc) · 34.8 KB
/
GTEngineProjectFiles.txt
File metadata and controls
1043 lines (1043 loc) · 34.8 KB
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
==============
GTEngine Files
==============
Files (14)
Applications (14)
GLX (6)
GteWICFileIO.cpp
GteWICFileIO.h
GteWindow.cpp
GteWindow.h
GteWindowSystem.cpp
GteWindowSystem.h
MSW (6)
DX11 (3)
GteWindow.cpp
GteWindow.h
GteWindowSystem.cpp
WGL (3)
GteWindow.cpp
GteWindow.h
GteWindowSystem.cpp
GteMSWWindow.cpp
GteMSWWindow.h
GteMSWWindowSystem.cpp
GteMSWWindowSystem.h
GteWICFileIO.cpp
GteWICFileIO.h
GteCommand.cpp
GteCommand.h
GteEnvironment.cpp
GteEnvironment.h
GteOnIdleTimer.cpp
GteOnIdleTimer.h
GteTextureIO.h
GteWindow2.cpp
GteWindow2.h
GteWindow3.cpp
GteWindow3.h
GteWindowBase.cpp
GteWindowBase.h
Graphics (10)
DirectX11 (0)
DX11 (7)
InputLayout (4)
GteDX11InputLayout.cpp
GteDX11InputLayout.h
GteDX11InputLayoutManager.cpp
GteDX11InputLayoutManager.h
Resources (2)
Buffers (16)
GteDX11Buffer.cpp
GteDX11Buffer.h
GteDX11ConstantBuffer.cpp
GteDX11ConstantBuffer.h
GteDX11IndexBuffer.cpp
GteDX11IndexBuffer.h
GteDX11IndirectArgumentsBuffer.cpp
GteDX11IndirectArgumentsBuffer.h
GteDX11RawBuffer.cpp
GteDX11RawBuffer.h
GteDX11StructuredBuffer.cpp
GteDX11StructuredBuffer.h
GteDX11TextureBuffer.cpp
GteDX11TextureBuffer.h
GteDX11VertexBuffer.cpp
GteDX11VertexBuffer.h
Textures (26)
GteDX11DrawTarget.cpp
GteDX11DrawTarget.h
GteDX11Texture.cpp
GteDX11Texture.h
GteDX11Texture1.cpp
GteDX11Texture1.h
GteDX11Texture1Array.cpp
GteDX11Texture1Array.h
GteDX11Texture2.cpp
GteDX11Texture2.h
GteDX11Texture2Array.cpp
GteDX11Texture2Array.h
GteDX11Texture3.cpp
GteDX11Texture3.h
GteDX11TextureArray.cpp
GteDX11TextureArray.h
GteDX11TextureCube.cpp
GteDX11TextureCube.h
GteDX11TextureCubeArray.cpp
GteDX11TextureCubeArray.h
GteDX11TextureDS.cpp
GteDX11TextureDS.h
GteDX11TextureRT.cpp
GteDX11TextureRT.h
GteDX11TextureSingle.cpp
GteDX11TextureSingle.h
GteDX11Resource.cpp
GteDX11Resource.h
Shaders (10)
GteDX11ComputeShader.cpp
GteDX11ComputeShader.h
GteDX11GeometryShader.cpp
GteDX11GeometryShader.h
GteDX11PixelShader.cpp
GteDX11PixelShader.h
GteDX11Shader.cpp
GteDX11Shader.h
GteDX11VertexShader.cpp
GteDX11VertexShader.h
State (10)
GteDX11BlendState.cpp
GteDX11BlendState.h
GteDX11DepthStencilState.cpp
GteDX11DepthStencilState.h
GteDX11DrawingState.cpp
GteDX11DrawingState.h
GteDX11RasterizerState.cpp
GteDX11RasterizerState.h
GteDX11SamplerState.cpp
GteDX11SamplerState.h
GteDX11Engine.cpp
GteDX11Engine.h
GteDX11GraphicsObject.cpp
GteDX11GraphicsObject.h
GteDX11Include.h
GteDX11PerformanceCounter.cpp
GteDX11PerformanceCounter.h
DXGI (4)
GteDXGIAdapter.cpp
GteDXGIAdapter.h
GteDXGIOutput.cpp
GteDXGIOutput.h
HLSL (37)
GteHLSLBaseBuffer.cpp
GteHLSLBaseBuffer.h
GteHLSLByteAddressBuffer.cpp
GteHLSLByteAddressBuffer.h
GteHLSLComputeProgram.cpp
GteHLSLComputeProgram.h
GteHLSLConstantBuffer.cpp
GteHLSLConstantBuffer.h
GteHLSLFactory.h
GteHLSLParameter.cpp
GteHLSLParameter.h
GteHLSLProgramFactory.cpp
GteHLSLProgramFactory.h
GteHLSLResource.cpp
GteHLSLResource.h
GteHLSLResourceBindInfo.cpp
GteHLSLResourceBindInfo.h
GteHLSLSamplerState.cpp
GteHLSLSamplerState.h
GteHLSLShader.cpp
GteHLSLShader.h
GteHLSLShaderFactory.cpp
GteHLSLShaderFactory.h
GteHLSLShaderType.cpp
GteHLSLShaderType.h
GteHLSLShaderVariable.cpp
GteHLSLShaderVariable.h
GteHLSLStructuredBuffer.cpp
GteHLSLStructuredBuffer.h
GteHLSLTexture.cpp
GteHLSLTexture.h
GteHLSLTextureArray.cpp
GteHLSLTextureArray.h
GteHLSLTextureBuffer.cpp
GteHLSLTextureBuffer.h
GteHLSLVisualProgram.cpp
GteHLSLVisualProgram.h
HLSLI (2)
GteFloatFunction.hlsli
GteSqrtEstimate.hlsli
Effects (54)
GteAmbientLightEffect.cpp
GteAmbientLightEffect.h
GteConstantColorEffect.cpp
GteConstantColorEffect.h
GteDirectionalLightEffect.cpp
GteDirectionalLightEffect.h
GteDirectionalLightTextureEffect.cpp
GteDirectionalLightTextureEffect.h
GteFont.cpp
GteFont.h
GteFontArialW400H12.cpp
GteFontArialW400H12.h
GteFontArialW400H14.cpp
GteFontArialW400H14.h
GteFontArialW400H16.cpp
GteFontArialW400H16.h
GteFontArialW400H18.cpp
GteFontArialW400H18.h
GteFontArialW700H12.cpp
GteFontArialW700H12.h
GteFontArialW700H14.cpp
GteFontArialW700H14.h
GteFontArialW700H16.cpp
GteFontArialW700H16.h
GteFontArialW700H18.cpp
GteFontArialW700H18.h
GteLightCameraGeometry.cpp
GteLightCameraGeometry.h
GteLighting.cpp
GteLighting.h
GteLightingEffect.cpp
GteLightingEffect.h
GteMaterial.cpp
GteMaterial.h
GteOverlayEffect.cpp
GteOverlayEffect.h
GtePlanarReflectionEffect.cpp
GtePlanarReflectionEffect.h
GtePointLightEffect.cpp
GtePointLightEffect.h
GtePointLightTextureEffect.cpp
GtePointLightTextureEffect.h
GteSpotLightEffect.cpp
GteSpotLightEffect.h
GteTextEffect.cpp
GteTextEffect.h
GteTexture2Effect.cpp
GteTexture2Effect.h
GteTexture3Effect.cpp
GteTexture3Effect.h
GteVertexColorEffect.cpp
GteVertexColorEffect.h
GteVisualEffect.cpp
GteVisualEffect.h
OpenGL4 (8)
GL (4)
glcorearb.h
glext.h
glxext.h
wglext.h
GLX (3)
GteGLXEngine.cpp
GteGLXEngine.h
GteGLXExtensions.cpp
InputLayout (4)
GteGL4InputLayout.cpp
GteGL4InputLayout.h
GteGL4InputLayoutManager.cpp
GteGL4InputLayoutManager.h
Resources (2)
Buffers (12)
GteGL4AtomicCounterBuffer.cpp
GteGL4AtomicCounterBuffer.h
GteGL4Buffer.cpp
GteGL4Buffer.h
GteGL4ConstantBuffer.cpp
GteGL4ConstantBuffer.h
GteGL4IndexBuffer.cpp
GteGL4IndexBuffer.h
GteGL4StructuredBuffer.cpp
GteGL4StructuredBuffer.h
GteGL4VertexBuffer.cpp
GteGL4VertexBuffer.h
Textures (26)
GteGL4DrawTarget.cpp
GteGL4DrawTarget.h
GteGL4Texture.cpp
GteGL4Texture.h
GteGL4Texture1.cpp
GteGL4Texture1.h
GteGL4Texture1Array.cpp
GteGL4Texture1Array.h
GteGL4Texture2.cpp
GteGL4Texture2.h
GteGL4Texture2Array.cpp
GteGL4Texture2Array.h
GteGL4Texture3.cpp
GteGL4Texture3.h
GteGL4TextureArray.cpp
GteGL4TextureArray.h
GteGL4TextureCube.cpp
GteGL4TextureCube.h
GteGL4TextureCubeArray.cpp
GteGL4TextureCubeArray.h
GteGL4TextureDS.cpp
GteGL4TextureDS.h
GteGL4TextureRT.cpp
GteGL4TextureRT.h
GteGL4TextureSingle.cpp
GteGL4TextureSingle.h
GteGL4Resource.cpp
GteGL4Resource.h
Shaders (8)
GteGLSLComputeProgram.cpp
GteGLSLComputeProgram.h
GteGLSLProgramFactory.cpp
GteGLSLProgramFactory.h
GteGLSLReflection.cpp
GteGLSLReflection.h
GteGLSLVisualProgram.cpp
GteGLSLVisualProgram.h
State (10)
GteGL4BlendState.cpp
GteGL4BlendState.h
GteGL4DepthStencilState.cpp
GteGL4DepthStencilState.h
GteGL4DrawingState.cpp
GteGL4DrawingState.h
GteGL4RasterizerState.cpp
GteGL4RasterizerState.h
GteGL4SamplerState.cpp
GteGL4SamplerState.h
WGL (3)
GteWGLEngine.cpp
GteWGLEngine.h
GteWGLExtensions.cpp
GteGL4Engine.cpp
GteGL4Engine.h
GteGL4GraphicsObject.cpp
GteGL4GraphicsObject.h
GteOpenGL.cpp
GteOpenGL.h
GteOpenGLHelper.cpp
GteOpenGLHelper.h
Resources (6)
Buffers (20)
GteBuffer.cpp
GteBuffer.h
GteConstantBuffer.cpp
GteConstantBuffer.h
GteIndexBuffer.cpp
GteIndexBuffer.h
GteIndexFormat.h
GteIndirectArgumentsBuffer.cpp
GteIndirectArgumentsBuffer.h
GteMemberLayout.h
GteRawBuffer.cpp
GteRawBuffer.h
GteStructuredBuffer.cpp
GteStructuredBuffer.h
GteTypedBuffer.cpp
GteTypedBuffer.h
GteVertexBuffer.cpp
GteVertexBuffer.h
GteVertexFormat.cpp
GteVertexFormat.h
Textures (28)
GteDrawTarget.cpp
GteDrawTarget.h
GteTexture.cpp
GteTexture.h
GteTexture1.cpp
GteTexture1.h
GteTexture1Array.cpp
GteTexture1Array.h
GteTexture2.cpp
GteTexture2.h
GteTexture2Array.cpp
GteTexture2Array.h
GteTexture3.cpp
GteTexture3.h
GteTextureArray.cpp
GteTextureArray.h
GteTextureBuffer.cpp
GteTextureBuffer.h
GteTextureCube.cpp
GteTextureCube.h
GteTextureCubeArray.cpp
GteTextureCubeArray.h
GteTextureDS.cpp
GteTextureDS.h
GteTextureRT.cpp
GteTextureRT.h
GteTextureSingle.cpp
GteTextureSingle.h
GteDataFormat.cpp
GteDataFormat.h
GteGraphicsObject.cpp
GteGraphicsObject.h
GteResource.cpp
GteResource.h
SceneGraph (2)
Controllers (20)
GteBlendTransformController.cpp
GteBlendTransformController.h
GteControlledObject.cpp
GteControlledObject.h
GteController.cpp
GteController.h
GteIKController.cpp
GteIKController.h
GteKeyframeController.cpp
GteKeyframeController.h
GteMorphController.cpp
GteMorphController.h
GteParticleController.cpp
GteParticleController.h
GtePointController.cpp
GtePointController.h
GteSkinController.cpp
GteSkinController.h
GteTransformController.cpp
GteTransformController.h
Detail (2)
GteBillboardNode.cpp
GteBillboardNode.h
Hierarchy (29)
GteBoundingSphere.h
GteCamera.cpp
GteCamera.h
GteCameraRig.cpp
GteCameraRig.h
GteLight.cpp
GteLight.h
GteNode.cpp
GteNode.h
GteParticles.cpp
GteParticles.h
GtePVWUpdater.cpp
GtePVWUpdater.h
GteSpatial.cpp
GteSpatial.h
GteTrackball.cpp
GteTrackball.h
GteTrackcylinder.cpp
GteTrackcylinder.h
GteTrackObject.h
GteTrackObject.cpp
GteTransform.cpp
GteTransform.h
GteViewVolume.cpp
GteViewVolume.h
GteViewVolumeNode.cpp
GteViewVolumeNode.h
GteVisual.cpp
GteVisual.h
Picking (4)
GtePicker.cpp
GtePicker.h
GtePickRecord.cpp
GtePickRecord.h
Sorting (2)
GteBspNode.cpp
GteBspNode.h
Terrain (2)
GteTerrain.cpp
GteTerrain.h
Visibility (3)
GteCuller.cpp
GteCuller.h
GteCullingPlane.h
GteMeshFactory.cpp
GteMeshFactory.h
Shaders (18)
GteComputeProgram.cpp
GteComputeProgram.h
GteComputeShader.cpp
GteComputeShader.h
GteGeometryShader.cpp
GteGeometryShader.h
GtePixelShader.cpp
GtePixelShader.h
GteProgramDefines.cpp
GteProgramDefines.h
GteProgramFactory.cpp
GteProgramFactory.h
GteShader.cpp
GteShader.h
GteVertexShader.cpp
GteVertexShader.h
GteVisualProgram.cpp
GteVisualProgram.h
State (10)
GteBlendState.cpp
GteBlendState.h
GteDepthStencilState.cpp
GteDepthStencilState.h
GteDrawingState.cpp
GteDrawingState.h
GteRasterizerState.cpp
GteRasterizerState.h
GteSamplerState.cpp
GteSamplerState.h
GteBaseEngine.cpp
GteBaseEngine.h
GteGEDrawTarget.cpp
GteGEDrawTarget.h
GteGEInputLayoutManager.h
GteGEObject.cpp
GteGEObject.h
GteGraphicsDefaults.h
GteGraphicsEngine.cpp
GteGraphicsEngine.h
Imagics (0)
Extraction (13)
GteAdaptiveSkeletonClimbing2.h
GteAdaptiveSkeletonClimbing3.h
GteCurveExtractor.h
GteCurveExtractorSquares.h
GteCurveExtractorTriangles.h
GteMarchingCubes.cpp
GteMarchingCubes.h
GteMarchingCubesTable.cpp
GteMarchingCubesTable.h
GteSurfaceExtractor.h
GteSurfaceExtractorCubes.h
GteSurfaceExtractorMC.h
GteSurfaceExtractorTetrahedra.h
Filters (13)
GteCurvatureFlow2.h
GteCurvatureFlow3.h
GteFastGaussianBlur1.h
GteFastGaussianBlur2.h
GteFastGaussianBlur3.h
GteGaussianBlur2.h
GteGaussianBlur3.h
GteGradientAnisotropic2.h
GteGradientAnisotropic3.h
GtePdeFilter.h
GtePdeFilter1.h
GtePdeFilter2.h
GtePdeFilter3.h
Images (3)
GteImage.h
GteImage2.h
GteImage3.h
Segmenters (3)
GteFastMarch.h
GteFastMarch2.h
GteFastMarch3.h
Utilities (6)
GteHistogram.cpp
GteHistogram.h
GteImageUtility2.cpp
GteImageUtility2.h
GteImageUtility3.cpp
GteImageUtility3.h
LowLevel (0)
DataTypes (13)
GteArray2.h
GteArray3.h
GteArray4.h
GteAtomicMinMax.h
GteComputeModel.h
GteLexicoArray2.h
GteMinHeap.h
GteRangeIteration.h
GteSharedPtrComparison.h
GteStringUtility.h
GteThreadSafeMap.h
GteThreadSafeQueue.h
GteWeakPtrCompare.h
Logger (10)
MSW (4)
GteLogToMessageBox.cpp
GteLogToMessageBox.h
GteLogToOutputWindow.cpp
GteLogToOutputWindow.h
GteLogger.cpp
GteLogger.h
GteLogReporter.cpp
GteLogReporter.h
GteLogToFile.cpp
GteLogToFile.h
GteLogToStdout.cpp
GteLogToStdout.h
GteLogToStringArray.cpp
GteLogToStringArray.h
Timer (2)
GteTimer.cpp
GteTimer.h
Mathematics (0)
Algebra (17)
GteAxisAngle.h
GteBandedMatrix.h
GteConvertCoordinates.h
GteEulerAngles.h
GteGMatrix.h
GteGVector.h
GteMatrix.h
GteMatrix2x2.h
GteMatrix3x3.h
GteMatrix4x4.h
GtePolynomial1.h
GteQuaternion.h
GteRotation.h
GteVector.h
GteVector2.h
GteVector3.h
GteVector4.h
Approximation (26)
GteApprCircle2.h
GteApprCone3.h
GteApprCylinder3.h
GteApprEllipse2.h
GteApprEllipseByArcs.h
GteApprEllipsoid3.h
GteApprGaussian2.h
GteApprGaussian3.h
GteApprGreatCircle3.h
GteApprHeightLine2.h
GteApprHeightPlane3.h
GteApprOrthogonalLine2.h
GteApprOrthogonalLine3.h
GteApprOrthogonalPlane3.h
GteApprParaboloid3.h
GteApprParallelLines2.h
GteApprPolynomial2.h
GteApprPolynomial3.h
GteApprPolynomial4.h
GteApprPolynomialSpecial2.h
GteApprPolynomialSpecial3.h
GteApprPolynomialSpecial4.h
GteApprQuadratic2.h
GteApprQuadratic3.h
GteApprQuery.h
GteApprSphere3.h
GteApprTorus3.h
Arithmetic (16)
GteArbitraryPrecision.h
GteBitHacks.cpp
GteBitHacks.h
GteBSNumber.h
GteBSPrecision.cpp
GteBSPrecision.h
GteBSRational.h
GteIEEEBinary.h
GteIEEEBinary16.cpp
GteIEEEBinary16.h
GteMath.h
GteQFNumber.h
GteUIntegerALU32.h
GteUIntegerAP32.cpp
GteUIntegerAP32.h
GteUIntegerFP32.h
ComputationalGeometry (52)
GteBSPPolygon2.h
GteCLODPolyline.h
GteConformalMapGenus0.h
GteConstrainedDelaunay2.h
GteConvexHull2.h
GteConvexHull3.h
GteDelaunay2.h
GteDelaunay2Mesh.h
GteDelaunay3.h
GteDelaunay3Mesh.h
GteDisjointIntervals.h
GteDisjointRectangles.h
GteEdgeKey.cpp
GteEdgeKey.h
GteETManifoldMesh.cpp
GteETManifoldMesh.h
GteETNonmanifoldMesh.cpp
GteETNonmanifoldMesh.h
GteFeatureKey.h
GteGenerateMeshUV.cpp
GteGenerateMeshUV.h
GteIsPlanarGraph.h
GteMeshCurvature.h
GteMinimalCycleBasis.h
GteMinimumAreaBox2.h
GteMinimumAreaCircle2.h
GteMinimumVolumeBox3.h
GteMinimumVolumeSphere3.h
GteNearestNeighborQuery.h
GteOBBTreeOfPoints.h
GtePlanarMesh.h
GtePrimalQuery2.h
GtePrimalQuery3.h
GteSeparatePoints2.h
GteSeparatePoints3.h
GteSplitPlaneByMesh.h
GteTetrahedronKey.cpp
GteTetrahedronKey.h
GteTriangleKey.cpp
GteTriangleKey.h
GteTriangulateCDT.h
GteTriangulateEC.h
GteTSManifoldMesh.cpp
GteTSManifoldMesh.h
GteUniqueVerticesTriangles.h
GteVEManifoldMesh.cpp
GteVEManifoldMesh.h
GteVertexCollapseMesh.h
GteVETManifoldMesh.cpp
GteVETManifoldMesh.h
GteVETNonmanifoldMesh.cpp
GteVETNonmanifoldMesh.h
Containment (17)
GteContAlignedBox.h
GteContCapsule3.h
GteContCircle2.h
GteContCone.h
GteContCylinder3.h
GteContEllipse2.h
GteContEllipse2MinCR.h
GteContEllipsoid3.h
GteContEllipsoid3MinCR.h
GteContLozenge3.h
GteContOrientedBox2.h
GteContOrientedBox3.h
GteContPointInPolygon2.h
GteContPointInPolyhedron3.h
GteContScribeCircle2.h
GteContScribeCircle3Sphere3.h
GteContSphere3.h
CurvesSurfacesVolumes (31)
GteBasisFunction.h
GteBezierCurve.h
GteBSplineCurve.h
GteBSplineCurveFit.h
GteBSplineGeodesic.h
GteBSplineReduction.h
GteBSplineSurface.h
GteBSplineSurfaceFit.h
GteBSplineVolume.h
GteDarbouxFrame.h
GteEllipsoidGeodesic.h
GteFrenetFrame.h
GteIndexAttribute.h
GteMesh.h
GteNaturalSplineCurve.h
GteNURBSCircle.h
GteNURBSCurve.h
GteNURBSSphere.h
GteNURBSSurface.h
GteNURBSVolume.h
GteParametricCurve.h
GteParametricSurface.h
GtePolynomialCurve.h
GteQuadricSurface.h
GteRectangleMesh.h
GteRectanglePatchMesh.h
GteRevolutionMesh.h
GteRiemannianGeodesic.h
GteTCBSplineCurve.h
GteTubeMesh.h
GteVertexAttribute.h
Distance (1)
3D (30)
GteDistAlignedBox3OrientedBox3.h
GteDistCircle3Circle3.h
GteDistLine3AlignedBox3.h
GteDistLine3Circle3.h
GteDistLine3OrientedBox3.h
GteDistLine3Rectangle3.h
GteDistLine3Triangle3.h
GteDistOrientedBox3OrientedBox3.h
GteDistPoint3Circle3.h
GteDistPoint3ConvexPolyhedron3.h
GteDistPoint3Cylinder3.h
GteDistPoint3Frustum3.h
GteDistPoint3Plane3.h
GteDistPoint3Rectangle3.h
GteDistPoint3Tetrahedron3.h
GteDistRay3AlignedBox3.h
GteDistRay3OrientedBox3.h
GteDistRay3Rectangle3.h
GteDistRay3Triangle3.h
GteDistRectangle3AlignedBox3.h
GteDistRectangle3OrientedBox3.h
GteDistRectangle3Rectangle3.h
GteDistSegment3AlignedBox3.h
GteDistSegment3OrientedBox3.h
GteDistSegment3Rectangle3.h
GteDistSegment3Triangle3.h
GteDistTriangle3AlignedBox3.h
GteDistTriangle3OrientedBox3.h
GteDistTriangle3Rectangle3.h
GteDistTriangle3Triangle3.h
ND (16)
GteDistAlignedBoxAlignedBox.h
GteDistLineLine.h
GteDistLineRay.h
GteDistLineSegment.h
GteDistPointAlignedBox.h
GteDistPointHyperellipsoid.h
GteDistPointLine.h
GteDistPointOrientedBox.h
GteDistPointRay.h
GteDistPointSegment.h
GteDistPointTriangle.h
GteDistPointTriangleExact.h
GteDistRayRay.h
GteDistRaySegment.h
GteDistSegmentSegment.h
GteDistSegmentSegmentExact.h
GteDCPQuery.h
Functions (14)
GteACosEstimate.h
GteASinEstimate.h
GteATanEstimate.h
GteChebyshevRatio.h
GteCosEstimate.h
GteExp2Estimate.h
GteExpEstimate.h
GteInvSqrtEstimate.h
GteLog2Estimate.h
GteLogEstimate.h
GteSinEstimate.h
GteSlerpEstimate.h
GteSqrtEstimate.h
GteTanEstimate.h
GeometricPrimitives (0)
2D (3)
GteArc2.h
GtePolygon2.h
GteSector2.h
3D (9)
GteCircle3.h
GteConvexPolyhedron3.h
GteCylinder3.h
GteEllipse3.h
GteFrustum3.h
GteLozenge3.h
GtePolyhedron3.h
GteTetrahedron3.h
GteTorus3.h
ND (13)
GteAlignedBox.h
GteCapsule.h
GteCone.h
GteHalfspace.h
GteHyperellipsoid.h
GteHyperplane.h
GteHypersphere.h
GteLine.h
GteOrientedBox.h
GteRay.h
GteRectangle.h
GteSegment.h
GteTriangle.h
Interpolation (17)
GteIntpAkima1.h
GteIntpAkimaNonuniform1.h
GteIntpAkimaUniform1.h
GteIntpAkimaUniform2.h
GteIntpAkimaUniform3.h
GteIntpBicubic2.h
GteIntpBilinear2.h
GteIntpBSplineUniform.h
GteIntpLinearNonuniform2.h
GteIntpLinearNonuniform3.h
GteIntpQuadraticNonuniform2.h
GteIntpSphere2.h
GteIntpThinPlateSpline2.h
GteIntpThinPlateSpline3.h
GteIntpTricubic3.h
GteIntpTrilinear3.h
GteIntpVectorField2.h
Intersection (2)
1D (1)
GteIntrIntervals.h
2D (35)
GteIntrAlignedBox2AlignedBox2.h
GteIntrAlignedBox2Circle2.h
GteIntrAlignedBox2OrientedBox2.h
GteIntrArc2Arc2.h
GteIntrCircle2Arc2.h
GteIntrCircle2Circle2.h
GteIntrDisk2Sector2.h
GteIntrEllipse2Ellipse2.h
GteIntrHalfspace2Polygon2.h
GteIntrLine2AlignedBox2.h
GteIntrLine2Arc2.h
GteIntrLine2Circle2.h
GteIntrLine2Line2.h
GteIntrLine2OrientedBox2.h
GteIntrLine2Ray2.h
GteIntrLine2Segment2.h
GteIntrLine2Triangle2.h
GteIntrOrientedBox2Circle2.h
GteIntrOrientedBox2Cone2.h
GteIntrOrientedBox2OrientedBox2.h
GteIntrOrientedBox2Sector2.h
GteIntrRay2AlignedBox2.h
GteIntrRay2Arc2.h
GteIntrRay2Circle2.h
GteIntrRay2OrientedBox2.h
GteIntrRay2Ray2.h
GteIntrRay2Segment2.h
GteIntrRay2Triangle2.h
GteIntrSegment2AlignedBox2.h
GteIntrSegment2Arc2.h
GteIntrSegment2Circle2.h
GteIntrSegment2OrientedBox2.h
GteIntrSegment2Segment2.h
GteIntrSegment2Triangle2.h
GteIntrTriangle2Triangle2.h
3D (60)
GteIntrAlignedBox3AlignedBox3.h
GteIntrAlignedBox3Cone3.h
GteIntrAlignedBox3Cylinder3.h
GteIntrAlignedBox3OrientedBox3.h
GteIntrAlignedBox3Sphere3.h
GteIntrCapsule3Capsule3.h
GteIntrEllipsoid3Ellipsoid3.h
GteIntrHalfspace3Capsule3.h
GteIntrHalfspace3Cylinder3.h
GteIntrHalfspace3Ellipsoid3.h
GteIntrHalfspace3OrientedBox3.h
GteIntrHalfspace3Segment3.h
GteIntrHalfspace3Sphere3.h
GteIntrHalfspace3Triangle3.h
GteIntrLine3AlignedBox3.h
GteIntrLine3Capsule3.h
GteIntrLine3Cone3.h
GteIntrLine3Cylinder3.h
GteIntrLine3Ellipsoid3.h
GteIntrLine3OrientedBox3.h
GteIntrLine3Plane3.h
GteIntrLine3Sphere3.h
GteIntrLine3Triangle3.h
GteIntrOrientedBox3Cone3.h
GteIntrOrientedBox3Cylinder3.h
GteIntrOrientedBox3Frustum3.h
GteIntrOrientedBox3OrientedBox3.h
GteIntrOrientedBox3Sphere3.h
GteIntrPlane3Capsule3.h
GteIntrPlane3Circle3.h
GteIntrPlane3Cylinder3.h
GteIntrPlane3Ellipsoid3.h
GteIntrPlane3OrientedBox3.h
GteIntrPlane3Plane3.h
GteIntrPlane3Sphere3.h
GteIntrPlane3Triangle3.h
GteIntrRay3AlignedBox3.h
GteIntrRay3Capsule3.h
GteIntrRay3Cone3.h
GteIntrRay3Cylinder3.h
GteIntrRay3Ellipsoid3.h
GteIntrRay3OrientedBox3.h
GteIntrRay3Plane3.h
GteIntrRay3Sphere3.h
GteIntrRay3Triangle3.h
GteIntrSegment3AlignedBox3.h
GteIntrSegment3Capsule3.h
GteIntrSegment3Cone3.h
GteIntrSegment3Cylinder3.h
GteIntrSegment3Ellipsoid3.h
GteIntrSegment3OrientedBox3.h
GteIntrSegment3Plane3.h
GteIntrSegment3Sphere3.h
GteIntrSegment3Triangle3.h
GteIntrSphere3Cone3.h
GteIntrSphere3Frustum3.h
GteIntrSphere3Sphere3.h
GteIntrSphere3Triangle3.h
GteIntrTriangle3OrientedBox3.h
ND (1)
GteIntrConvexPolygonHyperplane.h
GteFIQuery.h
GteTIQuery.h
NumericalMethods (24)
GteCholeskyDecomposition.h
GteCubicRootsQR.h
GteGaussianElimination.h
GteGaussNewtonMinimizer.h
GteIntegration.h
GteLCPSolver.h
GteLevenbergMarquardtMinimizer.h
GteLinearSystem.h
GteMinimize1.h
GteMinimizeN.h
GteOdeEuler.h
GteOdeImplicitEuler.h
GteOdeMidpoint.h
GteOdeRungeKutta4.h
GteOdeSolver.h
GteQuarticRootsQR.h
GteRootsBisection.h
GteRootsBrentsMethod.h
GteRootsPolynomial.h
GteSingularValueDecomposition.h
GteSymmetricEigensolver.h
GteSymmetricEigensolver2x2.h
GteSymmetricEigensolver3x3.h
GteUnsymmetricEigenvalues.h
Projection (1)
GteProjection.h
SIMD (0)
MSW (4)
GteCPUQueryInstructions.cpp
GteCPUQueryInstructions.h
GteIntelSSE.cpp
GteIntelSSE.h
Physics (0)
Fluid2 (17)
GteFluid2.cpp
GteFluid2.h
GteFluid2AdjustVelocity.cpp
GteFluid2AdjustVelocity.h
GteFluid2ComputeDivergence.cpp
GteFluid2ComputeDivergence.h
GteFluid2EnforceStateBoundary.cpp
GteFluid2EnforceStateBoundary.h
GteFluid2InitializeSource.cpp
GteFluid2InitializeSource.h
GteFluid2InitializeState.cpp
GteFluid2InitializeState.h
GteFluid2Parameters.h
GteFluid2SolvePoisson.cpp
GteFluid2SolvePoisson.h
GteFluid2UpdateState.cpp
GteFluid2UpdateState.h
Fluid3 (17)
GteFluid3.cpp
GteFluid3.h
GteFluid3AdjustVelocity.cpp