2019-05-11 08:51:24 +00:00
|
|
|
//
|
2019-05-20 10:49:29 +00:00
|
|
|
// This source code is property of the Computer Graphics and Visualization
|
|
|
|
// chair of the TU Dresden. Do not distribute in modified or unmodified form!
|
2019-05-11 08:51:24 +00:00
|
|
|
// Copyright (C) 2016 CGV TU Dresden - All Rights Reserved
|
|
|
|
//
|
|
|
|
/*************************************************************************
|
|
|
|
Bresenham-Circle tool.
|
|
|
|
This class is inherited from "tool_base" to define a tool for drawing
|
2019-05-20 10:49:29 +00:00
|
|
|
circles using the bresenham algorithm on a canvas_buffer.
|
2019-05-11 08:51:24 +00:00
|
|
|
Read the information in "tool_base.h" for more information.
|
|
|
|
*************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// provides the declaration of the super class tool_base
|
|
|
|
#include "tool_base.h"
|
|
|
|
|
2019-05-20 10:49:29 +00:00
|
|
|
class bresenham_circle_tool : public tool_base
|
2019-05-11 08:51:24 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// Initialize the tool and store a reference of a canvas_buffer
|
|
|
|
bresenham_circle_tool(canvas_buffer &canvas);
|
|
|
|
|
|
|
|
// Draw a circle with center (x0, y0) and (x1, y1) on the circle
|
|
|
|
void draw(int x0, int y0, int x1, int y1);
|
|
|
|
|
|
|
|
// Put debug output into the stream "stream" to be displayed in the
|
|
|
|
// main window
|
2019-05-20 10:49:29 +00:00
|
|
|
void set_text(std::stringstream &stream);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void draw_circle(int xc, int yc, int x, int y);
|
2019-05-11 08:51:24 +00:00
|
|
|
};
|