Changeset 202 for trunk/VUT/GtpVisibilityPreprocessor
- Timestamp:
- 08/07/05 16:51:06 (19 years ago)
- Location:
- trunk/VUT/GtpVisibilityPreprocessor
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/VUT/GtpVisibilityPreprocessor/scripts/Preprocessor.vcproj
r190 r202 62 62 <Tool 63 63 Name="VCCLCompilerTool" 64 AdditionalIncludeDirectories="..\support;..\support\ zlib\include;"$(QTDIR)\include";"$(QTDIR)\include\Qt";..\include"64 AdditionalIncludeDirectories="..\support;..\support\devil\include;..\support\zlib\include;"$(QTDIR)\include";"$(QTDIR)\include\Qt";..\include" 65 65 PreprocessorDefinitions="WIN32;NDEBUG;_LIB" 66 66 RuntimeLibrary="2" 67 RuntimeTypeInfo="TRUE" 67 68 UsePrecompiledHeader="0" 68 69 WarningLevel="3" … … 73 74 <Tool 74 75 Name="VCLinkerTool" 75 AdditionalDependencies="xerces-c_2.lib zdll.lib zziplib.lib "76 AdditionalLibraryDirectories="..\support\xercesc\lib\;..\support\zlib\lib\; "$(QTDIR)\lib""/>76 AdditionalDependencies="xerces-c_2.lib zdll.lib zziplib.lib devil.lib" 77 AdditionalLibraryDirectories="..\support\xercesc\lib\;..\support\zlib\lib\;..\support\devil\lib;"$(QTDIR)\lib""/> 77 78 <Tool 78 79 Name="VCMIDLTool"/> … … 234 235 </File> 235 236 <File 237 RelativePath="..\src\ViewCell.h"> 238 </File> 239 <File 236 240 RelativePath="..\src\ViewCellBsp.cpp"> 237 241 </File> -
trunk/VUT/GtpVisibilityPreprocessor/src/ViewCellBSP.h
r197 r202 38 38 { 39 39 public: 40 BSPInterior(Plane3 *plane): mPlane(plane) {}40 BSPInterior(Plane3 plane): mPlane(plane) {} 41 41 /** @return false since it is an interior node */ 42 42 bool IsLeaf() const; -
trunk/VUT/GtpVisibilityPreprocessor/src/ViewCellBsp.cpp
r197 r202 5 5 #include "ViewCell.h" 6 6 #include <stack> 7 7 8 //namespace GtpVisibilityPreprocessor { 8 9 /****************************************************************/ … … 84 85 BSPNode *node = SubdivideNode(dynamic_cast<BSPLeaf *>(data.mNode), 85 86 data.mParent, 86 data.mParent,87 87 &data.mViewCell, 88 data.mDepth, 88 89 backPolys, 89 90 frontPolys); … … 118 119 // add the new nodes to the tree + select subdivision plane 119 120 Plane3 *plane = SelectPlane(viewCell); 120 BSPInterior *node = new BSPInterior( &plane); // ERROR!!121 BSPInterior *node = new BSPInterior(*plane); // ERROR!! 121 122 122 123
Note: See TracChangeset
for help on using the changeset viewer.