#include <penedit.h>
Public Member Functions | |
WobbleFlags (BOOL pSister=FALSE, BOOL pBrother=TRUE, BOOL nBrother=FALSE, BOOL nSister=FALSE) | |
Public Attributes | |
BYTE | PrevSister: 1 |
BYTE | PrevBrother: 1 |
BYTE | NextBrother: 1 |
BYTE | NextSister: 1 |
Definition at line 177 of file penedit.h.
|
Definition at line 186 of file penedit.cpp. 00190 { 00191 // Set up some flags for wobbling a curves control points correctly 00192 PrevSister = pSister; 00193 PrevBrother = pBrother; 00194 NextBrother = nBrother; 00195 NextSister = nSister; 00196 };
|
|
|
|
|
|
|
|
|