#include <penedit.h>
Public Member Functions | |
HandleFlags (BOOL rTrackEnd=TRUE, BOOL rGhostEnd=TRUE, BOOL TrackPtMoves=TRUE, BOOL GhostPtMoves=TRUE, BOOL TrackPtSpins=FALSE, BOOL GhostPtSpins=FALSE) | |
constructor for handle flags class | |
Public Attributes | |
BYTE | RenderTrackEnd: 1 |
BYTE | RenderGhostEnd: 1 |
BYTE | TrackPointMoves: 1 |
BYTE | GhostPointMoves: 1 |
BYTE | TrackPointSpins: 1 |
BYTE | GhostPointSpins: 1 |
BYTE | Spare1: 1 |
BYTE | Spare2: 1 |
Definition at line 143 of file penedit.h.
|
constructor for handle flags class
Definition at line 156 of file penedit.cpp. 00162 { 00163 // Set up some flags for rendering handles correctly 00164 RenderTrackEnd = rTrackEnd; 00165 RenderGhostEnd = rGhostEnd; 00166 TrackPointMoves = TrackPtMoves; 00167 GhostPointMoves = GhostPtMoves; 00168 TrackPointSpins = TrackPtSpins; 00169 GhostPointSpins = GhostPtSpins; 00170 }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|