------------------------------------------------------------------------------
| 107 | |
| 108 | //------------------------------------------------------------------------------ |
| 109 | const char* vtkChacoReader::GetVertexWeightArrayName(int weight) |
| 110 | { |
| 111 | if (this->GetGenerateVertexWeightArrays() && (weight > 0) && |
| 112 | (weight <= this->NumberOfVertexWeights)) |
| 113 | { |
| 114 | return this->VarrayName[weight - 1].c_str(); |
| 115 | } |
| 116 | |
| 117 | return nullptr; |
| 118 | } |
| 119 | |
| 120 | //------------------------------------------------------------------------------ |
| 121 | const char* vtkChacoReader::GetEdgeWeightArrayName(int weight) |
no test coverage detected