#include <math.h>#include <stdio.h>#include "agg_basics.h"#include "agg_rendering_buffer.h"#include "agg_rasterizer_scanline_aa.h"#include "agg_conv_stroke.h"#include "agg_conv_dash.h"#include "agg_conv_curve.h"#include "agg_conv_contour.h"#include "agg_conv_smooth_poly1.h"#include "agg_conv_marker.h"#include "agg_arrowhead.h"#include "agg_vcgen_markers_term.h"#include "agg_scanline_p.h"#include "agg_renderer_scanline.h"#include "agg_pixfmt_rgb.h"#include "platform/agg_platform_support.h"#include "ctrl/agg_slider_ctrl.h"#include "ctrl/agg_rbox_ctrl.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 22 of file conv_stroke.cpp. 00022 { flip_y = true };
|
|
||||||||||||
|
Definition at line 261 of file conv_stroke.cpp. References platform_support::caption(), flip_y, platform_support::init(), agg::pix_format_bgr24, and platform_support::run(). 00262 { 00263 the_application app(agg::pix_format_bgr24, flip_y); 00264 app.caption("AGG Example. Line Join"); 00265 00266 if(app.init(500, 330, 0)) 00267 { 00268 return app.run(); 00269 } 00270 return 1; 00271 }
|