vgl_io_infinite_line_3d.h
Go to the documentation of this file.
1 // This is core/vgl/io/vgl_io_infinite_line_3d.h
2 #ifndef vgl_io_infinite_line_3d_h_
3 #define vgl_io_infinite_line_3d_h_
4 //:
5 // \file
6 // \brief contains functions vsl_b_write, vsl_b_read and vsl_print_summary
7 // \date 16 Mar 2001
8 // \author Franck Bettinger
9 //
10 // \verbatim
11 // Modifications
12 // 2001/03/16 Franck Bettinger Creation
13 // \endverbatim
14 
16 #include <vsl/vsl_binary_io.h>
17 
18 //: Binary save vgl_infinite_line_3d to stream.
19 template <class T>
20 void vsl_b_write(vsl_b_ostream &os, const vgl_infinite_line_3d<T>& v);
21 
22 //: Binary load vgl_infinite_line_3d from stream.
23 template <class T>
24 void vsl_b_read(vsl_b_istream &is, vgl_infinite_line_3d<T>& v);
25 
26 //: Print human readable summary of a vgl_infinite_line_3d object to a stream
27 template <class T>
28 void vsl_print_summary(std::ostream& os,const vgl_infinite_line_3d<T>& v);
29 
30 #endif // #ifndef vgl_io_infinite_line_3d_h_
void vsl_b_write(vsl_b_ostream &os, const vgl_infinite_line_3d< T > &v)
Binary save vgl_infinite_line_3d to stream.
void vsl_print_summary(std::ostream &os, const vgl_infinite_line_3d< T > &v)
Print human readable summary of a vgl_infinite_line_3d object to a stream.
#define v
Definition: vgl_vector_2d.h:74
void vsl_b_read(vsl_b_istream &is, vgl_infinite_line_3d< T > &v)
Binary load vgl_infinite_line_3d from stream.
Represents a 3-d line with position defined in the orthogonal plane passing through the origin.
Definition: vgl_fwd.h:20
A 3-d infinite line with position parameterized by orthogonal plane coordinates.