CTurtle
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
cturtle::PenState Struct Reference

The Pen State structure Holds all pen attributes, which are grouped in this way to allow stack-based undo for Turtle objects. Instances of this object are self-contained, and has ownership of all objects and memory referenced by itself. More...

#include <CTurtle.hpp>

Collaboration diagram for cturtle::PenState:
Collaboration graph
[legend]

Public Member Functions

 PenState (const PenState &copy)
 
PenStateoperator= (const PenState &copy)
 

Public Attributes

Transform transform
 
float moveSpeed = TS_NORMAL
 
bool tracing = true
 
bool angleMode = false
 
int penWidth = 1
 
bool filling = false
 
Color penColor = Color("black")
 
Color fillColor = Color("black")
 
size_t objectsBefore = 0
 
std::unique_ptr< AbstractDrawableObjectcursor = nullptr
 
int curStamp = 0
 
bool visible = true
 
float cursorTilt = 0
 

Detailed Description

The Pen State structure Holds all pen attributes, which are grouped in this way to allow stack-based undo for Turtle objects. Instances of this object are self-contained, and has ownership of all objects and memory referenced by itself.

Member Data Documentation

◆ angleMode

bool cturtle::PenState::angleMode = false

The angle mode. False for degrees, true for radians.

◆ cursor

std::unique_ptr<AbstractDrawableObject> cturtle::PenState::cursor = nullptr

The turtle's cursor geometry. MUST ASSIGN BEFORE USE.

◆ cursorTilt

float cturtle::PenState::cursorTilt = 0

A float for cursor tilt (e.g, rotation appleid to the cursor itself)

◆ curStamp

int cturtle::PenState::curStamp = 0

The current stamp ID.

◆ fillColor

Color cturtle::PenState::fillColor = Color("black")

The intended fill color.

◆ filling

bool cturtle::PenState::filling = false

A boolean indicating if we're trying to fill a shape.

◆ moveSpeed

float cturtle::PenState::moveSpeed = TS_NORMAL

The movement speed of the turtle, in range of 0...10

◆ objectsBefore

size_t cturtle::PenState::objectsBefore = 0

The total number of objects in the screen's object stack prior to the addition of this state->

◆ penColor

Color cturtle::PenState::penColor = Color("black")

The color of the pen.

◆ penWidth

int cturtle::PenState::penWidth = 1

The width of the pen, in pixels.

◆ tracing

bool cturtle::PenState::tracing = true

Whether or not the turtle's "tail" (or pen) is down.

◆ transform

Transform cturtle::PenState::transform

The transform of the pen. holds position, rotation, and scale of the turtle.

◆ visible

bool cturtle::PenState::visible = true

A boolean indicating if this turtle is visible.


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