|
| wykobi_graphics_vcl (TCanvas *c, unsigned int w, unsigned int h) |
|
| ~wykobi_graphics_vcl () |
|
void | set_pen (TPen *p) |
|
void | set_brush (TBrush *b) |
|
void | set_color (TColor c) |
|
void | set_width (unsigned int w) |
|
void | set_height (unsigned int h) |
|
TPen * | get_pen () |
|
unsigned int | width () const |
|
unsigned int | height () const |
|
unsigned int | center_x () const |
|
unsigned int | center_y () const |
|
void | set_pen_width (int w) |
|
void | draw_text (const T &x, const T &y, std::string text) |
|
void | draw_pixel (const T &x, const T &y) const |
|
void | draw_pixel (const point2d< T > &point) const |
|
void | draw_segment (const T &x1, const T &y1, const T &x2, const T &y2) const |
|
void | draw_line (const T &x1, const T &y1, const T &x2, const T &y2) const |
|
void | draw_triangle (const T &x1, const T &y1, const T &x2, const T &y2, const T &x3, const T &y3) const |
|
void | draw_quadix (const T &x1, const T &y1, const T &x2, const T &y2, const T &x3, const T &y3, const T &x4, const T &y4) const |
|
void | draw_rectangle (const T x1, const T &y1, const T &x2, const T &y2) const |
|
void | draw_circle (const T x, const T &y, const T &radius) const |
|
void | draw_segment (const point2d< T > &point1, const point2d< T > &point2) const |
|
void | draw_line (const point2d< T > &point1, const point2d< T > &point2) const |
|
void | draw_triangle (const point2d< T > &point1, const point2d< T > &point2, const point2d< T > &point3) const |
|
void | draw_quadix (const point2d< T > &point1, const point2d< T > &point2, const point2d< T > &point3, const point2d< T > &point4) const |
|
void | draw_rectangle (const point2d< T > &point1, const point2d< T > &point2) const |
|
void | draw_circle (const point2d< T > &point, const T &radius) const |
|
void | draw_polyline (std::vector< point2d< T > > point_list) |
|
void | clear (TColor color) |
|
void | clear_white () |
|
void | clear_black () |
|
void | draw (const point2d< T > &point) |
|
void | draw (const segment< T, 2 > &segment) |
|
void | draw (const line< T, 2 > &line) |
|
void | draw (const triangle< T, 2 > &triangle) |
|
void | draw (const rectangle< T > &rectangle) |
|
void | draw (const quadix< T, 2 > &quadix) |
|
void | draw (const circle< T > &circle) |
|
void | draw (const polygon< T, 2 > &polygon) |
|
void | draw (const cubic_bezier< T, 2 > &bezier, const std::size_t &point_count) |
|
void | draw (const quadratic_bezier< T, 2 > &bezier, const std::size_t &point_count) |
|