MCPcopy Create free account
hub / github.com/Kitware/VTK / SetVoidArray

Function SetVoidArray

Common/Core/vtkStringArray.h:281–284  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

279 void SetArray(
280 ValueType* array, vtkIdType size, int save, int deleteMethod = VTK_DATA_ARRAY_DELETE);
281 void SetVoidArray(void* array, vtkIdType size, int save) override
282 {
283 this->SetArray(static_cast<ValueType*>(array), size, save);
284 }
285 void SetVoidArray(void* array, vtkIdType size, int save, int deleteMethod) override
286 {
287 this->SetArray(static_cast<ValueType*>(array), size, save, deleteMethod);

Callers

nothing calls this directly

Calls 1

SetArrayMethod · 0.45

Tested by

no test coverage detected