#include <fillattr2.h>
Inheritance diagram for AttrBitmapTessChange:
Public Member Functions | |
AttrBitmapTessChange () | |
virtual UINT32 | GetAttrNameID (void) |
Returns a string resource ID describing the attribute. | |
virtual AttrFillGeometry * | MutateFill (AttrFillGeometry *FillToMutate) |
Changes the bitmap tesselation of a fill. |
Definition at line 233 of file fillattr2.h.
|
Definition at line 238 of file fillattr2.h. 00238 : AttrBitmapChange() { }
|
|
Returns a string resource ID describing the attribute.
Reimplemented from AttrBitmapChange. Definition at line 4405 of file fillattr.cpp. 04406 { 04407 return (_R(IDS_BITMAPTESS_CHANGE)); 04408 }
|
|
Changes the bitmap tesselation of a fill.
Reimplemented from AttrBitmapChange. Definition at line 4154 of file fillattr.cpp. 04155 { 04156 #if !defined(EXCLUDE_FROM_RALPH) 04157 // Make a copy of this Fill to change 04158 AttrFillGeometry* NewFill = (AttrFillGeometry*)FillToMutate->SimpleCopy(); 04159 if (NewFill == NULL) 04160 return NULL; 04161 04162 NewFill->SetTesselation(GetTesselation()); 04163 NewFill->RecalcFractal(); 04164 04165 return NewFill; 04166 #else 04167 return NULL; 04168 #endif 04169 }
|