In Activiz No SetValue and GetValue in vtkCharArray and other Array

Hi
I am tring to move C++ VTK code to activiz 9.4 ,but meet some problem in vtkIntArray, vtkCharArray, etc. These array seems do not have SetValue and GetValue any more ,and they only have SetTuple and GetTuple to set/get data, and the return value type is double. But the online examples are still use SetValue,i am not sure what is the correct way to set/get data from a array.

FYI @LucasGandel

1 Like

Hi,

I confirm the signatures to set/get typed tuples are missing in Activiz 9.4. We are working on adding this for the next release.
In the meantime, you can use the signatures accepting double when a cast is possible, and use marshalling for other types like char.
The following should help:

            vtkIntArray intArray = vtkIntArray.New();
            intArray.SetNumberOfComponents(1);
            intArray.SetNumberOfTuples(1);
            intArray.SetTuple1(0, 1);
            Console.WriteLine(intArray.GetTuple1(0));

            vtkCharArray charArray = vtkCharArray.New();
            charArray.SetNumberOfComponents(1);
            charArray.SetNumberOfTuples(3);

            // Set VTK char array
            char[] chars = new char[3] {'v', 't', 'k' };
            GCHandle h_chars = GCHandle.Alloc(chars, GCHandleType.Pinned);
            charArray.SetVoidArray(h_chars.AddrOfPinnedObject(), chars.Length, 1);
            h_chars.Free();

            // Get VTK char array
            char[] out_chars =  new char[3];
            Marshal.Copy(charArray.GetVoidPointer(0), out_chars, 0, out_chars.Length);
            Console.WriteLine(out_chars);