Namespace: Rx – Class: IMemory2D – Header: Rx.Core/IMemory2D.h

IMemory2D Class

C++
#include "Rx.Core/IMemory2D.h"
class IMemory2D : public IMemory2DAccess

Common 2D memory interface.

Methods

New(nRows, nCols)

Creates a new memory block of nRows times nCols elements. The size of an element is fixed by the implementation and can be read out with the function GetElementSize().

Resize(nRows, nCols)

Resizes the memory block to the given number of elements. The size of an element is fixed by the implementation and can be read out with the function GetElementSize().

Delete()

Deletes this memory block.

Reset()

Reset all values in the memory block. The actual value the elements in the memory block are reset to depends on the implementation.

CopyFrom(pMemory)

Copies the memory block described by pMemory into this memory block. This memory block is automatically resized. The function throws an exception if the element sizes of the given memory block does not agree with the element size of this memory block.

GetPointer()

Gets the pointer to the memory block.

GetPointer()

Gets the pointer to memory.

GetElementSize()

Gets the element size. The memory block is made up of blocks of the given number of bytes. The function Length() returns the number of elements in the memory block, where each element is of the size given in GetElementSize(). For example, an array of 10 doubles has element size 8 and length 10.

(Inherited from IMemory2DAccess)
GetSize(nRows, nCols)

Gets the number of elements in the memory block. The total number of bytes allocated by the memory block is given by the nRows times nCols times the element size.

(Inherited from IMemory2DAccess)
IsValid()

Query if this object is valid. This function returns also true if the object itself is valid but the memory block has size zero.

(Inherited from IMemory2DAccess)