|
| wykobi_graphics_net (Graphics ^ gc, const unsigned int &w, const unsigned int &h) |
|
| ~wykobi_graphics_net () |
|
void | set_pen (Pen ^ _pen) const |
|
float | get_pen_width () const |
|
void | set_pen_width (const unsigned int &w) const |
|
void | set_dash_mode () const |
|
void | set_nodash_mode () const |
|
void | set_color (const unsigned int &color) const |
|
unsigned int | width () const |
|
unsigned int | height () const |
|
unsigned int | center_x () const |
|
unsigned int | center_y () const |
|
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_segment (const point2d< T > &point1, const point2d< T > &point2) 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_rectangle (const T &x1, const T &y1, const T &x2, const T &y2) 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_circle (const T &x, const T &y, const T &radius) const |
|
void | draw_circle (const point2d< T > center, const T &radius) const |
|
void | draw_polyline (const std::vector< point2d< T > > &point_list) const |
|
void | draw_polyline (const std::vector< point3d< T > > &point_list) const |
|
void | draw_crosshair (const point2d< T > &p, const T r) const |
|
void | clear (System::Drawing::Color color) const |
|
void | clear () const |
|
void | clear (const unsigned int &color) const |
|
void | draw (const point2d< T > &point) const |
|
void | draw (const segment< T, 2 > &segment) const |
|
void | draw (const triangle< T, 2 > &triangle) const |
|
void | draw (const rectangle< T > &rectangle) const |
|
void | draw (const quadix< T, 2 > &quadix) const |
|
void | draw (const circle< T > &circle) const |
|
void | draw (const polygon< T, 2 > &polygon) const |
|
void | draw (const cubic_bezier< T, 2 > &bezier, const std::size_t &point_count) const |
|
void | draw (const quadratic_bezier< T, 2 > &bezier, const std::size_t &point_count) const |
|
template<typename InputIterator > |
void | draw (const InputIterator begin, const InputIterator end) const |
|
|
static const unsigned int | clAqua = 0 |
|
static const unsigned int | clBlack = 1 |
|
static const unsigned int | clBlue = 2 |
|
static const unsigned int | clBrown = 3 |
|
static const unsigned int | clCyan = 4 |
|
static const unsigned int | clGray = 5 |
|
static const unsigned int | clGreen = 6 |
|
static const unsigned int | clIndigo = 7 |
|
static const unsigned int | clLimeGreen = 8 |
|
static const unsigned int | clMagenta = 9 |
|
static const unsigned int | clOrange = 10 |
|
static const unsigned int | clPurple = 11 |
|
static const unsigned int | clRed = 12 |
|
static const unsigned int | clViolet = 13 |
|
static const unsigned int | clWhite = 14 |
|
static const unsigned int | clYellow = 15 |
|