|
OutputIterator | copy_n (InputIterator first, Size n, OutputIterator result) |
|
std::pair< ForwardIterator, ForwardIterator > | min_max_element (ForwardIterator first, ForwardIterator last) |
|
std::pair< ForwardIterator, ForwardIterator > | min_max_element (ForwardIterator first, ForwardIterator last, CompareMin comp_min, CompareMax comp_max) |
|
BidirectionalIterator | predecessor (BidirectionalIterator it) |
|
ForwardIterator | successor (ForwardIterator it) |
|
CC_safe_handle< CC_iterator > | make_cc_safe_handle (CC_iterator iterator) |
|
Compare_to_less< F > | compare_to_less (const F &f) |
|
Iterator_range< T > | make_range (const T &b, const T &e) |
|
T | range_begin (Iterator_range< T > &x) |
|
T | range_end (Iterator_range< T > &x) |
|
T | range_begin (const Iterator_range< T > &x) |
|
T | range_end (const Iterator_range< T > &x) |
|
Failure_function | set_error_handler (Failure_function handler) |
|
Failure_function | set_warning_handler (Failure_function handler) |
|
Failure_behaviour | set_error_behaviour (Failure_behaviour eb) |
|
Failure_behaviour | set_warning_behaviour (Failure_behaviour eb) |
|
bool | read_off (Surface_mesh< K > &mesh, const std::string &filename) |
|
bool | write_off (const Surface_mesh< K > &mesh, const std::string &filename) |
|
bool | read_mesh (Surface_mesh< K > &mesh, const std::string &filename) |
|
bool | write_mesh (const Surface_mesh< K > &mesh, const std::string &filename) |
|
void | generic_print_surface_mesh (std::ostream &out, const Surface_mesh< P > &M, Writer &writer) |
|
bool | write_off (std::ostream &os, const Surface_mesh< P > &sm) |
|
bool | read_off (std::istream &is, Surface_mesh< P > &sm) |
|
void | draw (const POLY &apoly) |
|
IO::Mode | get_mode (std::ios &s) |
| returns the printing mode of the IO stream s . More...
|
|
IO::Mode | set_ascii_mode (std::ios &s) |
| sets the mode of the IO stream s to be the IO::ASCII mode. More...
|
|
IO::Mode | set_binary_mode (std::ios &s) |
|
IO::Mode | set_mode (std::ios &s, IO::Mode m) |
| sets the printing mode of the IO stream s . More...
|
|
IO::Mode | set_pretty_mode (std::ios &s) |
| sets the mode of the IO stream s to be the IO::PRETTY mode. More...
|
|
bool | is_ascii (std::ios &s) |
| checks if the IO stream s is in IO::ASCII mode. More...
|
|
bool | is_binary (std::ios &s) |
| checks if the IO stream s is in IO::BINARY mode. More...
|
|
bool | is_pretty (std::ios &s) |
| checks if the IO stream s is in IO::PRETTY mode. More...
|
|
template<class T > |
Output_rep< T > | oformat (const T &t) |
| Convenience function to construct an output representation (Output_rep ) for type T . More...
|
|
template<class T > |
Input_rep< T > | iformat (const T &t) |
| The definition of this function is completely symmetric to oformat() .
|
|
template<class T , typename F > |
Output_rep< T, F > | oformat (const T &t, F) |
| Convenience function to construct an output representation (Output_rep ) for type T . More...
|
|
ostream & | operator<< (ostream &os, Class c) |
| Inserts object c in the stream os . More...
|
|
istream & | operator>> (istream &is, Class c) |
| CGAL defines input operators for classes that are derived from the class istream . More...
|
|