#include <pathops.h>
Inheritance diagram for MovePointsParams:
Public Member Functions | |
MovePointsParams (NodePath *pPath, ElementCoord *ChangeData, INT32 NumChanges) | |
Constructor for the parameter class to be passed to OpMovePathPoint::DoWithParam. | |
Public Attributes | |
NodePath * | PathToEdit |
ElementCoord * | PathChanges |
INT32 | ChangesCount |
Definition at line 222 of file pathops.h.
|
Constructor for the parameter class to be passed to OpMovePathPoint::DoWithParam.
Definition at line 974 of file pathops.cpp. 00974 : OpParam( INT32(0), INT32(0) ) \ 00975 { 00976 PathToEdit = pPath; 00977 PathChanges = ChangeData; 00978 ChangesCount = NumChanges; 00979 };
|
|
|
|
|
|
|