- Timestamp:
- 01/06/06 14:53:38 (19 years ago)
- Location:
- trunk/VUT/GtpVisibilityPreprocessor/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/VUT/GtpVisibilityPreprocessor/src/Frustum.cpp
r504 r505 1 #include " Frustum.h"1 #include "Beam.h" 2 2 #include "VssRay.h" 3 3 … … 6 6 7 7 void 8 Frustum::Construct(const AxisAlignedBox3 &box,8 Beam::Construct(const AxisAlignedBox3 &box, 9 9 const AxisAlignedBox3 &dBox) 10 10 { … … 49 49 50 50 int 51 Frustum::ComputeIntersection(const AxisAlignedBox3 &box)51 Beam::ComputeIntersection(const AxisAlignedBox3 &box) 52 52 { 53 53 int i; -
trunk/VUT/GtpVisibilityPreprocessor/src/Frustum.h
r504 r505 1 #ifndef __ FRUSTUM_H2 #define __ FRUSTUM_H1 #ifndef __BEAM_H 2 #define __BEAM_H 3 3 4 4 #include <vector> … … 9 9 #include "AxisAlignedBox3.h" 10 10 11 class Frustum {11 class Beam { 12 12 13 13 public: … … 29 29 vector<Plane3> mPlanes; 30 30 31 Frustum():mFlags(STORE_KD_NODES+STORE_OBJECTS)31 Beam():mFlags(STORE_KD_NODES+STORE_OBJECTS) 32 32 { 33 33 } -
trunk/VUT/GtpVisibilityPreprocessor/src/KdTree.cpp
r504 r505 6 6 #include "KdTree.h" 7 7 #include "ViewCell.h" 8 #include " Frustum.h"8 #include "Beam.h" 9 9 10 10 int KdNode::mailID = 1; … … 967 967 968 968 int 969 Cast Frustum(970 Frustum &frustum971 969 CastBeam( 970 Beam &beam 971 ) 972 972 { 973 973 -
trunk/VUT/GtpVisibilityPreprocessor/src/KdTree.h
r504 r505 16 16 class Intersectable; 17 17 //class KdViewCell; 18 class Frustum;18 class Beam; 19 19 20 20 // -------------------------------------------------------------- … … 288 288 289 289 int 290 Cast Frustum(291 Frustum &frustum292 290 CastBeam( 291 Beam &beam 292 ); 293 293 294 294 -
trunk/VUT/GtpVisibilityPreprocessor/src/Makefile
r504 r505 1 1 ############################################################################# 2 2 # Makefile for building: preprocessor 3 # Generated by qmake (2.00a) (Qt 4.1.0) on: pá 6. I 1 1:25:4520063 # Generated by qmake (2.00a) (Qt 4.1.0) on: pá 6. I 14:52:19 2006 4 4 # Project: preprocessor.pro 5 5 # Template: app -
trunk/VUT/GtpVisibilityPreprocessor/src/preprocessor.pro
r504 r505 30 30 # Input 31 31 HEADERS += Halton.h VssRay.h VssPreprocessor.h RssTree.h GlRenderer.h \ 32 PreprocessorThread.h Preprocessor.h Frustum.h32 PreprocessorThread.h Preprocessor.h Beam.h 33 33 34 34 … … 43 43 RenderSimulator.cpp VspKdTree.cpp RayInfo.cpp RssTree.cpp RssPreprocessor.cpp \ 44 44 ViewCellsManager.cpp VspBspTree.cpp GlRenderer.cpp \ 45 PreprocessorThread.cpp Renderer.cpp Frustum.cpp45 PreprocessorThread.cpp Renderer.cpp Beam.cpp 46 46
Note: See TracChangeset
for help on using the changeset viewer.