#include <math.h>#include <stdio.h>#include "agg_basics.h"#include "agg_rendering_buffer.h"#include "agg_rasterizer_scanline_aa.h"#include "agg_conv_curve.h"#include "agg_conv_contour.h"#include "agg_conv_stroke.h"#include "agg_scanline_p.h"#include "agg_renderer_scanline.h"#include "agg_pixfmt_rgb.h"#include "ctrl/agg_slider_ctrl.h"#include "ctrl/agg_rbox_ctrl.h"#include "ctrl/agg_cbox_ctrl.h"#include "platform/agg_platform_support.h"Go to the source code of this file.
Classes | |
| class | the_application |
Enumerations | |
| enum | flip_y_e { flip_y = true } |
Functions | |
| int | agg_main (int argc, char *argv[]) |
|
|
Definition at line 18 of file conv_contour.cpp. 00018 { flip_y = true };
|
|
||||||||||||
|
Definition at line 149 of file conv_contour.cpp. References platform_support::caption(), flip_y, platform_support::init(), agg::pix_format_bgr24, and platform_support::run(). 00150 { 00151 the_application app(agg::pix_format_bgr24, flip_y); 00152 app.caption("AGG Example. Contour Tool & Polygon Orientation"); 00153 00154 if(app.init(440, 330, 0)) 00155 { 00156 return app.run(); 00157 } 00158 return 1; 00159 }
|