void T6963::plot8points(int cx, int cy, int x, int y)
{
	plot4points(cx, cy, x, y);
	if (x != y) plot4points(cx, cy, y, x);
}
Exemple #2
0
void plot8points(int x0, int y0, int x, int y, int borderColor) {
    plot4points(x0, y0, x, y, borderColor);
    if (x != y) plot4points(x0, y0, y, x, borderColor);
}
Exemple #3
0
void plot8points(int cx, int cy, int x, int y, QColor color, QImage &img)
{
  plot4points(cx, cy, x, y, color, img);
  if (x != y) plot4points(cx, cy, y, x, color, img);
}
Exemple #4
0
void Circle::plot8points(int cx, int cy, int x, int y, QImage* surface, bool fill)
{
    plot4points(cx, cy, x, y, surface, fill);
    if (x != y) plot4points(cx, cy, y, x, surface, fill);
}
Exemple #5
0
// used when drawing an (empty) circle
static void plot8points(uint16_t cx, uint16_t cy, uint16_t x, uint16_t y,
		uint32_t color)
{
	plot4points(cx, cy, x, y, color);
	if (x != y) plot4points(cx, cy, y, x, color);
}
Exemple #6
0
void easyT6963::plot8points(uint8_t cx, uint8_t cy, uint8_t x, uint8_t y, bool color){
	plot4points(cx, cy, x, y, color);
	if (x != y) plot4points(cx, cy, y, x, color);
}