[vtkusers] Activiz.NET VTKCellArray Missing Functions

David Gobbi david.gobbi at gmail.com
Sat Jun 11 19:47:55 EDT 2011


Hi Sam,

The GetNextCell() method up until VTK 5.6.1 is not wrapped because
of its arguments:

int GetNextCell(vtkIdType& npts, vtkIdType* &pts);

It isn't just ActiViz, none of the VTK wrappers are able to wrap
methods that use argument types like "vtkIdType *&".  For VTK 5.8,
I've added a modified version of the GetCellArray() method that the
wrappers can use (but VTK 5.8 isn't released yet).

Until then, you might be able to use the vtkDataSet GetCell() method
as a replacement, if your cell array is part of a data set.

 - David


On Sat, Jun 11, 2011 at 4:22 PM, Sam <sistephan at gmail.com> wrote:
> Hi,
>
> I'm using Activiz.NET with C#. I found an issue,
>
> vtkCellArray.h has a function, GetNextCell and the defintion is in the .h
> file not in the .cxx file.  It looks like the Activiz wrappers do not have
> this function.
>
> In other words,
>
>            vtkCellArray cells = new vtkCellArray();
>            cells.GetNextCell()  //This function does not exist.
>
> Please help!
>
> --
> View this message in context: http://vtk.1045678.n5.nabble.com/Activiz-NET-VTKCellArray-Missing-Functions-tp4480040p4480040.html
> Sent from the VTK - Users mailing list archive at Nabble.com.



More information about the vtkusers mailing list