API Documentation > Collection Classes > Class pfcSurfaceDerivative2
Class pfcSurfaceDerivative2

# include <pfcBase.h>

class
pfcSurfaceDerivative2
: public
xobject
{
xdeclare(pfcSurfaceDerivative2)
...
};
This is a
COMPACT class.

Description
Fixed dimention array.
Array provides methods for accessing its elemnts by index(indices) and for modifying its elements. Array object "does not know" its dimentions.
Array Dimensions: [3]
Method Summary
Creates new array object with uninitialized elements.
get (xint idx0)
Gets an array element with the specified index(indices). If an index is out of range throws exception cipXInvalidArrayIndex.
void
set (xint idx0, pfcVector3D_ptr value)
Assignes a new value to an array element with the specified index(indices). If an index is out of range throws exception cipXInvalidArrayIndex.
Method Detail
Gets an array element with the specified index(indices). If an index is out of range throws exception cipXInvalidArrayIndex.
Parameters:
idx0
First element index.
Returns:
Element value.
void
set
(xint idx0, pfcVector3D_ptr value)
Assignes a new value to an array element with the specified index(indices). If an index is out of range throws exception cipXInvalidArrayIndex.
Parameters:
idx0
First element index.
value
New element value.
Returns:
create
()
Creates new array object with uninitialized elements.
Returns:
Created array.
Was this helpful?