elevationmatrixcell.cpp
来自「一个很好的vc底层代码」· C++ 代码 · 共 96 行
CPP
96 行
/********************************************************************** * $Id: ElevationMatrixCell.cpp,v 1.3 2004/11/29 16:05:33 strk Exp $ * * GEOS - Geometry Engine Open Source * http://geos.refractions.net * * Copyright (C) 2001-2002 Vivid Solutions 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. * **********************************************************************/#include <sstream>#include <geos/geom.h>#include <geos/opOverlay.h>namespace geos{ElevationMatrixCell::ElevationMatrixCell(): ztot(0){}ElevationMatrixCell::~ElevationMatrixCell(){}voidElevationMatrixCell::add(const Coordinate &c){ if ( !ISNAN(c.z) ) { if ( zvals.insert(c.z).second ) { ztot+=c.z; } }}voidElevationMatrixCell::add(double z){ if ( !ISNAN(z) ) { if ( zvals.insert(z).second ) { ztot+=z; } }}doubleElevationMatrixCell::getTotal() const{ return ztot;}doubleElevationMatrixCell::getAvg() const{ if ( ! zvals.size() ) return DoubleNotANumber; return (ztot/zvals.size());}stringElevationMatrixCell::print() const{ ostringstream ret; //ret<<"["<<ztot<<"/"<<zvals.size()<<"]"; ret<<"["<<ztot/zvals.size()<<"]"; return ret.str();}} // namespace geos;/********************************************************************** * $Log: ElevationMatrixCell.cpp,v $ * Revision 1.3 2004/11/29 16:05:33 strk * Fixed a bug in LineIntersector::interpolateZ causing NaN values * to come out. * Handled dimensional collapses in ElevationMatrix. * Added ISNAN macro and changed ISNAN/FINITE macros to avoid * dispendious isnan() and finite() calls. * * Revision 1.2 2004/11/26 09:22:50 strk * Added FINITE(x) macro and its use. * Made input geoms average Z computation optional in OverlayOp. * * Revision 1.1 2004/11/23 16:22:49 strk * Added ElevationMatrix class and components to do post-processing draping of overlayed geometries. * **********************************************************************/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?