polygon_window_stream.h

来自「CGAL is a collaborative effort of severa」· C头文件 代码 · 共 110 行

H
110
字号
// Copyright (c) 1997  Utrecht University (The Netherlands),// ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany),// INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg// (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria),// and Tel-Aviv University (Israel).  All rights reserved.//// This file is part of CGAL (www.cgal.org); you can redistribute it and/or// modify it under the terms of the GNU Lesser General Public License as// published by the Free Software Foundation; version 2.1 of the License.// See the file LICENSE.LGPL distributed with CGAL.//// Licensees holding a valid commercial license may use this file in// accordance with the commercial license agreement provided with the software.//// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.//// $Source: /CVSROOT/CGAL/Packages/Polygon/include/CGAL/IO/polygon_Window_stream.h,v $// $Revision: 1.7 $ $Date: 2003/10/21 12:22:51 $// $Name:  $//// Author(s)     : Wieger Wesselink, Geert-Jan Giezeman, Matthias Baesken// Window_stream I/O operators// ===========================// Polygon_2// ---------#ifdef CGAL_POLYGON_2_H#ifndef CGAL_WINDOW_STREAM_POLYGON_2_H#define CGAL_WINDOW_STREAM_POLYGON_2_H#if defined(CGAL_USE_CGAL_WINDOW)#include <list>#endifCGAL_BEGIN_NAMESPACEtemplate <class Traits, class Container>Window_stream&operator<<(Window_stream& ws,           const Polygon_2<Traits,Container> &polygon){  typedef typename Polygon_2<Traits,Container>::Edge_const_circulator EI;  typedef typename Traits::Point_2  Point_2;    EI e = polygon.edges_circulator();  #if defined(CGAL_USE_CGAL_WINDOW)  CGAL::color cl = ws.get_fill_color();    if (cl != CGAL::invisible) {     std::list<CGAL::window_point> LP;          if (e != NULL) {     EI end = e;     do {      Point_2 p = (*e).source();      double x = CGAL::to_double(p.x());      double y = CGAL::to_double(p.y());                 LP.push_back(CGAL::window_point(x,y));      ++e;      } while (e != end);    }        ws.draw_filled_polygon(LP,cl);      }#else    leda_color cl = ws.get_fill_color();    if (cl != leda_invisible) { // draw filled polygon ...    leda_list<leda_point> LP;          if (e != NULL) {     EI end = e;     do {      Point_2 p = (*e).source();      double x = CGAL::to_double(p.x());      double y = CGAL::to_double(p.y());                 LP.append(leda_point(x,y));      ++e;      } while (e != end);    }        ws.draw_filled_polygon(LP,cl);      }#endif    else {  if (e != NULL) {    EI end = e;    do {      ws << *e;      ws << (*e).source();      ++e;      } while (e != end);    }  }    return ws;}CGAL_END_NAMESPACE#endif // CGAL_WINDOW_STREAM_POLYGON_2_H#endif // CGAL_POLYGON_2_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?