CTurtle
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | Protected Member Functions | List of all members
cturtle::AbstractDrawableObject Class Referenceabstract

AbstractDrawableObject is a base class, intended to be inherited from by all drawable objects. This class just contains a simple virtual drawing function, intended to be inherited from and to overload the draw function. This allows for the storage of drawable geometry/etc and attributes in a generic fashion. More...

#include <CTurtle.hpp>

Inheritance diagram for cturtle::AbstractDrawableObject:
Inheritance graph
[legend]
Collaboration diagram for cturtle::AbstractDrawableObject:
Collaboration graph
[legend]

Public Member Functions

virtual ~AbstractDrawableObject ()=default
 Empty– virtual– default de-constructor.
 
virtual AbstractDrawableObjectcopy () const =0
 Returns a pointer to a copy of this drawable object, allocated with NEW. Result must be deleted at the responsibility of the invoker.
 
virtual void draw (const Transform &t, Image &imgRef) const =0
 This function is intended to draw all applicable geometry in this object to the specified image, with the specified transform, with the specified color. This function is intended to be overloaded by child classes to draw applicable geometry to an image, acting as a canvas.
 

Public Attributes

Color fillColor
 
Color outlineColor
 
int outlineWidth = 0
 

Protected Member Functions

 AbstractDrawableObject ()=default
 Empty default constructor.
 

Detailed Description

AbstractDrawableObject is a base class, intended to be inherited from by all drawable objects. This class just contains a simple virtual drawing function, intended to be inherited from and to overload the draw function. This allows for the storage of drawable geometry/etc and attributes in a generic fashion.

Member Function Documentation

◆ copy()

virtual AbstractDrawableObject * cturtle::AbstractDrawableObject::copy ( ) const
pure virtual

Returns a pointer to a copy of this drawable object, allocated with NEW. Result must be deleted at the responsibility of the invoker.

Implemented in cturtle::Text, cturtle::Line, cturtle::Circle, cturtle::Polygon, cturtle::Sprite, and cturtle::CompoundPolygon.

◆ draw()

virtual void cturtle::AbstractDrawableObject::draw ( const Transform & t,
Image & imgRef ) const
pure virtual

This function is intended to draw all applicable geometry in this object to the specified image, with the specified transform, with the specified color. This function is intended to be overloaded by child classes to draw applicable geometry to an image, acting as a canvas.

Parameters
tThe transform at which to draw the geometry.
imgRefThe canvas on which to draw.
cThe color with to draw the geometry.

Implemented in cturtle::Text, cturtle::Line, cturtle::Circle, cturtle::Polygon, cturtle::Sprite, and cturtle::CompoundPolygon.

Member Data Documentation

◆ fillColor

Color cturtle::AbstractDrawableObject::fillColor

The internal fill color of the circle.

◆ outlineColor

Color cturtle::AbstractDrawableObject::outlineColor

The outline color of the circle.

◆ outlineWidth

int cturtle::AbstractDrawableObject::outlineWidth = 0

The width of the outline of the circle, in pixels.


The documentation for this class was generated from the following file: