#if !defined(_GRAPHICS_CONTEXT_H_) #define _GRAPHICS_CONTEXT_H_ #include "canvas.h" #include "color.h" #include "coordsys.h" // THE GRAPHICS CONTEXT IS // THE CURRENT SETTINGS OF // DRAWING RELATED PARAMETERS struct graphics_context { double center_angle; double rotation_angle; coordinate rotation_center; color pen_color; color fill_color; bool filled; bool rotate; int depth; int order; graphics_context(); }; #endif