Developer Documentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
PointStream.h
1 /*
2 Copyright (c) 2006, Michael Kazhdan and Matthew Bolitho
3 All rights reserved.
4 
5 Redistribution and use in source and binary forms, with or without modification,
6 are permitted provided that the following conditions are met:
7 
8 Redistributions of source code must retain the above copyright notice, this list of
9 conditions and the following disclaimer. Redistributions in binary form must reproduce
10 the above copyright notice, this list of conditions and the following disclaimer
11 in the documentation and/or other materials provided with the distribution.
12 
13 Neither the name of the Johns Hopkins University nor the names of its contributors
14 may be used to endorse or promote products derived from this software without specific
15 prior writften permission.
16 
17 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
18 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES
19 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
20 SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
21 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
22 TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
23 BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
25 ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
26 DAMAGE.
27 */
28 
29 #ifndef POINT_STREAM_INCLUDED
30 #define POINT_STREAM_INCLUDED
31 
32 template< class Real >
34 {
35 public:
36  virtual ~PointStream( void ){}
37  virtual void reset( void ) = 0;
38  virtual bool nextPoint( Point3D< Real >& p , Point3D< Real >& n ) = 0;
39 };
40 
41 template< class Real >
42 class ASCIIPointStream : public PointStream< Real >
43 {
44  FILE* _fp;
45 public:
46  ASCIIPointStream( const char* fileName );
47  ~ASCIIPointStream( void );
48  void reset( void );
49  bool nextPoint( Point3D< Real >& p , Point3D< Real >& n );
50 };
51 
52 template< class Real >
53 class BinaryPointStream : public PointStream< Real >
54 {
55  FILE* _fp;
56  static const int POINT_BUFFER_SIZE=1024;
57  Real _pointBuffer[ POINT_BUFFER_SIZE * 2 * 3 ];
58  int _pointsInBuffer , _currentPointIndex;
59 public:
60  BinaryPointStream( const char* filename );
61  ~BinaryPointStream( void );
62  void reset( void );
63  bool nextPoint( Point3D< Real >& p , Point3D< Real >& n );
64 };
65 
66 #include "PointStream.inl"
67 #endif // POINT_STREAM_INCLUDED