/********************************************************************** * * GEOS - Geometry Engine Open Source * http://geos.osgeo.org * * Copyright (C) 2005-2006 Refractions Research Inc. * * This is free software; you can redistribute and/or modify it under * the terms of the GNU Lesser General Public Licence as published * by the Free Software Foundation. * See the COPYING file for more information. * ********************************************************************** * * Last port: noding/snapround/HotPixel.java r320 (JTS-1.12) * **********************************************************************/ #pragma once #include #include #include namespace geos { namespace noding { // geos::noding namespace snapround { // geos::noding::snapround INLINE double HotPixel::scaleRound(double val) const { // Use Java-compatible round implementation return util::round(val * scaleFactor); } INLINE double HotPixel::scale(double val) const { return val * scaleFactor; } } // namespace geos::noding::snapround } // namespace geos::noding } // namespace geos