join.hpp
Go to the documentation of this file.
1 
6 #pragma once
7 
8 #include <etk/types.hpp>
9 
10 namespace esvg {
11  enum join {
12  join_miter,
13  join_round,
14  join_bevel
15  };
19  std::ostream& operator <<(std::ostream& _os, enum esvg::join _obj);
20 }
21 
22 
Main esvg namespace.
Definition: Base.hpp:24