FillMappingSinAttribute Class Reference

Specifies a sinusoidal fill mapping for a filled object. i.e. the graduation sort of wibbles from one colour to another in a sort of whirly sinusoidal fashion. More...

#include <fillval.h>

Inheritance diagram for FillMappingSinAttribute:

FillMappingAttribute AttributeValue CCObject SimpleCCObject List of all members.

Public Member Functions

 FillMappingSinAttribute ()
virtual NodeAttributeMakeNode ()
 Make a AttrFillMappingSin node from this fill mapping attribute.

Detailed Description

Specifies a sinusoidal fill mapping for a filled object. i.e. the graduation sort of wibbles from one colour to another in a sort of whirly sinusoidal fashion.

Author:
Tim_Browse (Xara Group Ltd) <camelotdev@xara.com>
Date:
18/07/94
See also:
FillMappingAttribute

Definition at line 1673 of file fillval.h.


Constructor & Destructor Documentation

FillMappingSinAttribute::FillMappingSinAttribute  )  [inline]
 

Definition at line 1677 of file fillval.h.

01677 : FillMappingAttribute() {}


Member Function Documentation

NodeAttribute * FillMappingSinAttribute::MakeNode  )  [virtual]
 

Make a AttrFillMappingSin node from this fill mapping attribute.

Author:
Will_Cowling (Xara Group Ltd) <camelotdev@xara.com>
Date:
23/8/94
Returns:
Pointer to the new node, or NULL if out of memory.

Errors: Out of memory

See also:
AttributeValue::MakeNode

Reimplemented from AttributeValue.

Definition at line 8101 of file fillval.cpp.

08102 {
08103     // Create new attribute node
08104     AttrFillMappingSin *pAttr = new AttrFillMappingSin();
08105     if (pAttr==NULL)
08106         // error message has already been set by new
08107         return NULL;
08108 
08109     // Copy attribute value into the new node.
08110     pAttr->Value.SimpleCopy(this);
08111 
08112     // Return the new node
08113     return pAttr;
08114 }


The documentation for this class was generated from the following files:
Generated on Sat Nov 10 03:54:15 2007 for Camelot by  doxygen 1.4.4