//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. // // This software is distributed WITHOUT ANY WARRANTY; without even // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // PURPOSE. See the above copyright notice for more information. //============================================================================ #define vtkm_filter_Contour_cxx #include namespace vtkm { namespace filter { //----------------------------------------------------------------------------- Contour::Contour() : vtkm::filter::FilterDataSetWithField() , IsoValues() , GenerateNormals(false) , AddInterpolationEdgeIds(false) , ComputeFastNormalsForStructured(false) , ComputeFastNormalsForUnstructured(true) , NormalArrayName("normals") , InterpolationEdgeIdsArrayName("edgeIds") , Worklet() { // todo: keep an instance of marching cubes worklet as a member variable } //----------------------------------------------------------------------------- void Contour::SetNumberOfIsoValues(vtkm::Id num) { if (num >= 0) { this->IsoValues.resize(static_cast(num)); } } //----------------------------------------------------------------------------- vtkm::Id Contour::GetNumberOfIsoValues() const { return static_cast(this->IsoValues.size()); } //----------------------------------------------------------------------------- void Contour::SetIsoValue(vtkm::Id index, vtkm::Float64 v) { std::size_t i = static_cast(index); if (i >= this->IsoValues.size()) { this->IsoValues.resize(i + 1); } this->IsoValues[i] = v; } //----------------------------------------------------------------------------- void Contour::SetIsoValues(const std::vector& values) { this->IsoValues = values; } //----------------------------------------------------------------------------- vtkm::Float64 Contour::GetIsoValue(vtkm::Id index) const { return this->IsoValues[static_cast(index)]; } } }