// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen // SPDX-License-Identifier: BSD-3-Clause #include "vtkToImplicitStrategy.h" #include "vtkObjectFactory.h" VTK_ABI_NAMESPACE_BEGIN //------------------------------------------------------------------------- void vtkToImplicitStrategy::PrintSelf(std::ostream& os, vtkIndent indent) { this->Superclass::PrintSelf(os, indent); os << indent << "Tolerance: " << this->Tolerance << std::endl; } VTK_ABI_NAMESPACE_END