ultimatepp/uppsrc/Geom/Draw/coordutil.h
cxl 8ebdcbb0d5 uppsrc: NAMESPACE_UPP / END_UPP_NAMESPACE removed
git-svn-id: svn://ultimatepp.org/upp/trunk@10186 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2016-08-26 17:15:30 +00:00

21 lines
731 B
C++

#ifndef _Geom_Draw_coordutil_h_
#define _Geom_Draw_coordutil_h_
namespace Upp {
void AlphaTransformPaint(ImageBuffer& out, const Image& in,
const PlanarSegmentTree& planar,
const LinearSegmentTree& left, const LinearSegmentTree& top,
const LinearSegmentTree& right, const LinearSegmentTree& bottom,
const SegmentTreeInfo& info, Color background);
void PaintPlanarTree(Draw& draw, const PlanarSegmentTree& planar,
const LinearSegmentTree& left, const LinearSegmentTree& top,
const LinearSegmentTree& right, const LinearSegmentTree& bottom);
void PlotLine(PlotterTool& tool, GisTransform transform, Pointf source1, Pointf source2);
void PlotRect(PlotterTool& tool, GisTransform transform, const Rectf& src);
}
#endif