#include <fillattr2.h>
Inheritance diagram for AttrFractalTileableChange:
Public Member Functions | |
AttrFractalTileableChange () | |
virtual UINT32 | GetAttrNameID (void) |
Returns a string resource ID describing the attribute. | |
virtual AttrFillGeometry * | MutateFill (AttrFillGeometry *FillToMutate) |
Changes the Tileable-ness of a fractal fill. |
Definition at line 341 of file fillattr2.h.
|
Definition at line 346 of file fillattr2.h. 00346 : AttrFractalChange() { }
|
|
Returns a string resource ID describing the attribute.
Reimplemented from AttrFractalChange. Definition at line 4469 of file fillattr.cpp. 04470 { 04471 return (_R(IDS_FRACTAL_CHANGE)); 04472 }
|
|
Changes the Tileable-ness of a fractal fill.
Reimplemented from AttrValueChange. Definition at line 4237 of file fillattr.cpp. 04238 { 04239 #if !defined(EXCLUDE_FROM_RALPH) 04240 // Make a copy of this Fill to change 04241 AttrFillGeometry* NewFill = (AttrFillGeometry*)FillToMutate->SimpleCopy(); 04242 if (NewFill == NULL) 04243 return NULL; 04244 04245 NewFill->SetTileable(GetTileable()); 04246 NewFill->RecalcFractal(); 04247 04248 return NewFill; 04249 #else 04250 return NULL; 04251 #endif 04252 }
|