+ format
This commit is contained in:
parent
6e03fd7bb1
commit
04589282bb
1 changed files with 171 additions and 171 deletions
|
@ -35,232 +35,232 @@
|
|||
|
||||
namespace mapnik { namespace svg {
|
||||
|
||||
using namespace boost::fusion;
|
||||
using namespace boost::fusion;
|
||||
|
||||
inline double deg2rad(double deg)
|
||||
inline double deg2rad(double deg)
|
||||
{
|
||||
return (M_PI * deg)/180.0;
|
||||
}
|
||||
|
||||
template <typename PathType>
|
||||
struct move_to
|
||||
{
|
||||
template <typename T0, typename T1>
|
||||
struct result
|
||||
{
|
||||
return (M_PI * deg)/180.0;
|
||||
typedef void type;
|
||||
};
|
||||
|
||||
explicit move_to(PathType & path)
|
||||
: path_(path) {}
|
||||
|
||||
template <typename T0, typename T1>
|
||||
void operator() (T0 v, T1 rel) const
|
||||
{
|
||||
path_.move_to(at_c<0>(v),at_c<1>(v),rel); // impl
|
||||
}
|
||||
|
||||
template <typename PathType>
|
||||
struct move_to
|
||||
PathType & path_;
|
||||
};
|
||||
|
||||
template <typename PathType>
|
||||
struct hline_to
|
||||
{
|
||||
template <typename T0, typename T1>
|
||||
struct result
|
||||
{
|
||||
template <typename T0, typename T1>
|
||||
struct result
|
||||
{
|
||||
typedef void type;
|
||||
};
|
||||
|
||||
explicit move_to(PathType & path)
|
||||
: path_(path) {}
|
||||
|
||||
template <typename T0, typename T1>
|
||||
void operator() (T0 v, T1 rel) const
|
||||
{
|
||||
path_.move_to(at_c<0>(v),at_c<1>(v),rel); // impl
|
||||
}
|
||||
|
||||
PathType & path_;
|
||||
typedef void type;
|
||||
};
|
||||
|
||||
template <typename PathType>
|
||||
struct hline_to
|
||||
explicit hline_to(PathType & path)
|
||||
: path_(path) {}
|
||||
|
||||
template <typename T0, typename T1>
|
||||
void operator() (T0 const& x, T1 rel) const
|
||||
{
|
||||
template <typename T0, typename T1>
|
||||
struct result
|
||||
{
|
||||
typedef void type;
|
||||
};
|
||||
path_.hline_to(x,rel);
|
||||
}
|
||||
|
||||
explicit hline_to(PathType & path)
|
||||
: path_(path) {}
|
||||
PathType & path_;
|
||||
};
|
||||
|
||||
template <typename T0, typename T1>
|
||||
void operator() (T0 const& x, T1 rel) const
|
||||
{
|
||||
path_.hline_to(x,rel);
|
||||
}
|
||||
|
||||
PathType & path_;
|
||||
template <typename PathType>
|
||||
struct vline_to
|
||||
{
|
||||
template <typename T0, typename T1>
|
||||
struct result
|
||||
{
|
||||
typedef void type;
|
||||
};
|
||||
|
||||
explicit vline_to(PathType & path)
|
||||
: path_(path) {}
|
||||
|
||||
template <typename PathType>
|
||||
struct vline_to
|
||||
template <typename T0, typename T1>
|
||||
void operator() (T0 const& y, T1 rel) const
|
||||
{
|
||||
template <typename T0, typename T1>
|
||||
struct result
|
||||
{
|
||||
typedef void type;
|
||||
};
|
||||
path_.vline_to(y,rel);
|
||||
}
|
||||
|
||||
explicit vline_to(PathType & path)
|
||||
: path_(path) {}
|
||||
PathType & path_;
|
||||
};
|
||||
|
||||
template <typename T0, typename T1>
|
||||
void operator() (T0 const& y, T1 rel) const
|
||||
{
|
||||
path_.vline_to(y,rel);
|
||||
}
|
||||
|
||||
PathType & path_;
|
||||
template <typename PathType>
|
||||
struct line_to
|
||||
{
|
||||
template <typename T0, typename T1>
|
||||
struct result
|
||||
{
|
||||
typedef void type;
|
||||
};
|
||||
|
||||
template <typename PathType>
|
||||
struct line_to
|
||||
explicit line_to(PathType & path)
|
||||
: path_(path) {}
|
||||
|
||||
template <typename T0, typename T1>
|
||||
void operator() (T0 const& v, T1 rel) const
|
||||
{
|
||||
template <typename T0, typename T1>
|
||||
struct result
|
||||
{
|
||||
typedef void type;
|
||||
};
|
||||
path_.line_to(at_c<0>(v),at_c<1>(v),rel); // impl
|
||||
}
|
||||
|
||||
explicit line_to(PathType & path)
|
||||
: path_(path) {}
|
||||
PathType & path_;
|
||||
};
|
||||
|
||||
template <typename T0, typename T1>
|
||||
void operator() (T0 const& v, T1 rel) const
|
||||
{
|
||||
path_.line_to(at_c<0>(v),at_c<1>(v),rel); // impl
|
||||
}
|
||||
|
||||
PathType & path_;
|
||||
template <typename PathType>
|
||||
struct curve4
|
||||
{
|
||||
template <typename T0, typename T1, typename T2, typename T3>
|
||||
struct result
|
||||
{
|
||||
typedef void type;
|
||||
};
|
||||
|
||||
explicit curve4(PathType & path)
|
||||
: path_(path) {}
|
||||
|
||||
template <typename PathType>
|
||||
struct curve4
|
||||
template <typename T0, typename T1,typename T2, typename T3>
|
||||
void operator() (T0 const& v0, T1 const& v1, T2 const& v2, T3 rel) const
|
||||
{
|
||||
template <typename T0, typename T1, typename T2, typename T3>
|
||||
struct result
|
||||
{
|
||||
typedef void type;
|
||||
};
|
||||
path_.curve4(at_c<0>(v0),at_c<1>(v0),
|
||||
at_c<0>(v1),at_c<1>(v1),
|
||||
at_c<0>(v2),at_c<1>(v2),
|
||||
rel); // impl
|
||||
}
|
||||
|
||||
explicit curve4(PathType & path)
|
||||
: path_(path) {}
|
||||
PathType & path_;
|
||||
};
|
||||
|
||||
template <typename T0, typename T1,typename T2, typename T3>
|
||||
void operator() (T0 const& v0, T1 const& v1, T2 const& v2, T3 rel) const
|
||||
{
|
||||
path_.curve4(at_c<0>(v0),at_c<1>(v0),
|
||||
at_c<0>(v1),at_c<1>(v1),
|
||||
at_c<0>(v2),at_c<1>(v2),
|
||||
rel); // impl
|
||||
}
|
||||
|
||||
PathType & path_;
|
||||
template <typename PathType>
|
||||
struct curve4_smooth
|
||||
{
|
||||
template <typename T0, typename T1, typename T2>
|
||||
struct result
|
||||
{
|
||||
typedef void type;
|
||||
};
|
||||
|
||||
explicit curve4_smooth(PathType & path)
|
||||
: path_(path) {}
|
||||
|
||||
template <typename PathType>
|
||||
struct curve4_smooth
|
||||
template <typename T0, typename T1,typename T2>
|
||||
void operator() (T0 const& v0, T1 const& v1, T2 rel) const
|
||||
{
|
||||
template <typename T0, typename T1, typename T2>
|
||||
struct result
|
||||
{
|
||||
typedef void type;
|
||||
};
|
||||
path_.curve4(at_c<0>(v0),at_c<1>(v0),
|
||||
at_c<0>(v1),at_c<1>(v1),
|
||||
rel); // impl
|
||||
}
|
||||
PathType & path_;
|
||||
};
|
||||
|
||||
explicit curve4_smooth(PathType & path)
|
||||
: path_(path) {}
|
||||
|
||||
template <typename T0, typename T1,typename T2>
|
||||
void operator() (T0 const& v0, T1 const& v1, T2 rel) const
|
||||
{
|
||||
path_.curve4(at_c<0>(v0),at_c<1>(v0),
|
||||
at_c<0>(v1),at_c<1>(v1),
|
||||
rel); // impl
|
||||
}
|
||||
PathType & path_;
|
||||
template <typename PathType>
|
||||
struct curve3
|
||||
{
|
||||
template <typename T0, typename T1, typename T2>
|
||||
struct result
|
||||
{
|
||||
typedef void type;
|
||||
};
|
||||
|
||||
template <typename PathType>
|
||||
struct curve3
|
||||
explicit curve3(PathType & path)
|
||||
: path_(path) {}
|
||||
|
||||
template <typename T0, typename T1,typename T2>
|
||||
void operator() (T0 const& v0, T1 const& v1, T2 rel) const
|
||||
{
|
||||
template <typename T0, typename T1, typename T2>
|
||||
struct result
|
||||
{
|
||||
typedef void type;
|
||||
};
|
||||
path_.curve3(at_c<0>(v0),at_c<1>(v0),
|
||||
at_c<0>(v1),at_c<1>(v1),
|
||||
rel); // impl
|
||||
}
|
||||
|
||||
explicit curve3(PathType & path)
|
||||
: path_(path) {}
|
||||
PathType & path_;
|
||||
};
|
||||
|
||||
template <typename T0, typename T1,typename T2>
|
||||
void operator() (T0 const& v0, T1 const& v1, T2 rel) const
|
||||
{
|
||||
path_.curve3(at_c<0>(v0),at_c<1>(v0),
|
||||
at_c<0>(v1),at_c<1>(v1),
|
||||
rel); // impl
|
||||
}
|
||||
|
||||
PathType & path_;
|
||||
template <typename PathType>
|
||||
struct curve3_smooth
|
||||
{
|
||||
template <typename T0, typename T1>
|
||||
struct result
|
||||
{
|
||||
typedef void type;
|
||||
};
|
||||
|
||||
template <typename PathType>
|
||||
struct curve3_smooth
|
||||
explicit curve3_smooth(PathType & path)
|
||||
: path_(path) {}
|
||||
|
||||
template <typename T0, typename T1>
|
||||
void operator() (T0 const& v0, T1 rel) const
|
||||
{
|
||||
template <typename T0, typename T1>
|
||||
struct result
|
||||
{
|
||||
typedef void type;
|
||||
};
|
||||
path_.curve3(at_c<0>(v0),at_c<1>(v0),
|
||||
rel); // impl
|
||||
}
|
||||
|
||||
explicit curve3_smooth(PathType & path)
|
||||
: path_(path) {}
|
||||
PathType & path_;
|
||||
};
|
||||
|
||||
template <typename T0, typename T1>
|
||||
void operator() (T0 const& v0, T1 rel) const
|
||||
{
|
||||
path_.curve3(at_c<0>(v0),at_c<1>(v0),
|
||||
rel); // impl
|
||||
}
|
||||
|
||||
PathType & path_;
|
||||
template <typename PathType>
|
||||
struct arc_to
|
||||
{
|
||||
template <typename T0, typename T1, typename T2, typename T3, typename T4, typename T5>
|
||||
struct result
|
||||
{
|
||||
typedef void type;
|
||||
};
|
||||
|
||||
template <typename PathType>
|
||||
struct arc_to
|
||||
explicit arc_to(PathType & path)
|
||||
: path_(path) {}
|
||||
|
||||
template <typename T0, typename T1,typename T2, typename T3, typename T4, typename T5>
|
||||
void operator() (T0 const& rv, T1 const& angle, T2 large_arc_flag, T3 sweep_flag, T4 const& v, T5 rel) const
|
||||
{
|
||||
template <typename T0, typename T1, typename T2, typename T3, typename T4, typename T5>
|
||||
struct result
|
||||
{
|
||||
typedef void type;
|
||||
};
|
||||
path_.arc_to(at_c<0>(rv),at_c<1>(rv),
|
||||
deg2rad(angle),large_arc_flag,sweep_flag,
|
||||
at_c<0>(v),at_c<1>(v),
|
||||
rel);
|
||||
}
|
||||
|
||||
explicit arc_to(PathType & path)
|
||||
: path_(path) {}
|
||||
PathType & path_;
|
||||
};
|
||||
|
||||
template <typename T0, typename T1,typename T2, typename T3, typename T4, typename T5>
|
||||
void operator() (T0 const& rv, T1 const& angle, T2 large_arc_flag, T3 sweep_flag, T4 const& v, T5 rel) const
|
||||
{
|
||||
path_.arc_to(at_c<0>(rv),at_c<1>(rv),
|
||||
deg2rad(angle),large_arc_flag,sweep_flag,
|
||||
at_c<0>(v),at_c<1>(v),
|
||||
rel);
|
||||
}
|
||||
template <typename PathType>
|
||||
struct close
|
||||
{
|
||||
typedef void result_type;
|
||||
|
||||
PathType & path_;
|
||||
};
|
||||
explicit close(PathType & path)
|
||||
: path_(path) {}
|
||||
|
||||
template <typename PathType>
|
||||
struct close
|
||||
void operator()() const
|
||||
{
|
||||
typedef void result_type;
|
||||
path_.close_subpath();
|
||||
}
|
||||
|
||||
explicit close(PathType & path)
|
||||
: path_(path) {}
|
||||
PathType & path_;
|
||||
};
|
||||
|
||||
void operator()() const
|
||||
{
|
||||
path_.close_subpath();
|
||||
}
|
||||
|
||||
PathType & path_;
|
||||
};
|
||||
|
||||
}}
|
||||
}}
|
||||
|
||||
|
||||
#endif // MAPNIK_SVG_COMMANDS_HPP
|
||||
|
|
Loading…
Reference in a new issue