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