- Timestamp:
- 11/03/05 11:42:45 (19 years ago)
- Location:
- trunk/VUT/GtpVisibilityPreprocessor/src
- Files:
-
- 6 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/VUT/GtpVisibilityPreprocessor/src/Environment.h
r162 r372 311 311 /// returns named option as a character string. 312 312 bool GetStringValue(const char *name, 313 314 313 char *value, 314 const bool isFatal = false) const; 315 315 316 316 //@} -
trunk/VUT/GtpVisibilityPreprocessor/src/Makefile
r369 r372 1 1 ############################################################################# 2 2 # Makefile for building: preprocessor 3 # Generated by qmake (1.07a) (Qt 3.3.2) on: Wed Nov 02 15:58:0920053 # Generated by qmake (1.07a) (Qt 3.3.2) on: Thu Nov 03 11:34:08 2005 4 4 # Project: preprocessor.pro 5 5 # Template: app … … 39 39 ####### Files 40 40 41 HEADERS = Halton.h 41 HEADERS = Halton.h \ 42 VssRay.h \ 43 VssPreprocessor.h 42 44 SOURCES = Preprocessor.cpp \ 43 45 SamplingPreprocessor.cpp \ … … 69 71 ViewCell.cpp \ 70 72 ViewCellBsp.cpp \ 71 Halton.cpp 73 Halton.cpp \ 74 VssRay.cpp \ 75 VssTree.cpp \ 76 VssPreprocessor.cpp 72 77 OBJECTS = Preprocessor.obj \ 73 78 SamplingPreprocessor.obj \ … … 99 104 ViewCell.obj \ 100 105 ViewCellBsp.obj \ 101 Halton.obj 106 Halton.obj \ 107 VssRay.obj \ 108 VssTree.obj \ 109 VssPreprocessor.obj 102 110 FORMS = 103 111 UICDECLS = … … 191 199 -$(DEL_FILE) ViewCellBsp.obj 192 200 -$(DEL_FILE) Halton.obj 201 -$(DEL_FILE) VssRay.obj 202 -$(DEL_FILE) VssTree.obj 203 -$(DEL_FILE) VssPreprocessor.obj 193 204 194 205 … … 614 625 615 626 627 VssRay.obj: VssRay.cpp \ 628 VssRay.h \ 629 AxisAlignedBox3.h \ 630 Vector3.h \ 631 common.h \ 632 Rectangle3.h \ 633 Matrix4x4.h \ 634 Plane3.h \ 635 636 637 VssTree.obj: VssTree.cpp \ 638 VssTree.h \ 639 Environment.h \ 640 VssRay.h \ 641 AxisAlignedBox3.h \ 642 Statistics.h \ 643 Vector3.h \ 644 common.h \ 645 Rectangle3.h \ 646 Matrix4x4.h \ 647 Plane3.h \ 648 649 650 VssPreprocessor.obj: VssPreprocessor.cpp \ 651 SceneGraph.h \ 652 KdTree.h \ 653 VssPreprocessor.h \ 654 X3dExporter.h \ 655 Environment.h \ 656 MutualVisibility.h \ 657 Polygon3.h \ 658 ViewCell.h \ 659 Containers.h \ 660 AxisAlignedBox3.h \ 661 Rectangle3.h \ 662 Matrix4x4.h \ 663 Vector3.h \ 664 Plane3.h \ 665 common.h \ 666 Ray.h \ 667 Pvs.h \ 668 Preprocessor.h \ 669 Mesh.h \ 670 ViewCellBsp.h \ 671 Intersectable.h \ 672 Material.h \ 673 Exporter.h \ 674 675 616 676 ####### Install 617 677 -
trunk/VUT/GtpVisibilityPreprocessor/src/preprocessor.pro
r364 r372 28 28 29 29 # Input 30 HEADERS += Halton.h 30 HEADERS += Halton.h VssRay.h VssPreprocessor.h 31 31 32 32 … … 38 38 Exporter.cpp Camera.cpp X3dParser.cpp MeshKdTree.cpp Pvs.cpp \ 39 39 MutualVisibility.cpp Triangle3.cpp Rectangle3.cpp Plane3.cpp Polygon3.cpp \ 40 ViewCell.cpp ViewCellBsp.cpp Halton.cpp 40 ViewCell.cpp ViewCellBsp.cpp Halton.cpp VssRay.cpp VssTree.cpp VssPreprocessor.cpp 41 41 42 42
Note: See TracChangeset
for help on using the changeset viewer.