Lindenmayer System
A Simple L-system Image Generator Featuring Turtle Graphics
Public Member Functions | Public Attributes | List of all members
StackFrame Class Reference

Stack frame. More...

#include <Types.h>

Public Member Functions

 StackFrame ()
 Default constructor.
 
 StackFrame (Gdiplus::PointF pos, float angle, float len)
 Constructor. More...
 

Public Attributes

Gdiplus::PointF m_ptPos
 Position.
 
float m_fAngle = 0
 Rotation angle.
 
float m_fLength = 0
 Length.
 

Detailed Description

A stack frame to be used in turtle graphics.

Definition at line 71 of file Types.h.

Constructor & Destructor Documentation

◆ StackFrame()

StackFrame::StackFrame ( Gdiplus::PointF  pos,
float  angle,
float  len 
)
inline
Parameters
posPosition.
angleAngle.
lenLine length.

Definition at line 87 of file Types.h.