/usr/include/CGAL/IO/Dxf_stream.h is in libcgal-dev 4.11-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 | // Copyright (c) 2007 GeometryFactory (France). 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; either version 3 of the License,
// or (at your option) any later version.
//
// 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.
//
// $URL$
// $Id$
//
//
// Author(s) : Fernando Cacciola
//
// Descriptions of the file format can be found at
// http://www.autodesk.com/techpubs/autocad/acad2000/dxf/
#ifndef CGAL_DXF_STREAM_H
#define CGAL_DXF_STREAM_H
#include <CGAL/license/Straight_skeleton_2.h>
#include <CGAL/basic.h>
#include <CGAL/Polygon_2.h>
#include <CGAL/IO/Dxf_writer.h>
#include <vector>
#include <fstream>
#include <stdio.h>
namespace CGAL {
class Dxf_layer
{
public:
Dxf_layer( std::string aStr ) : mStr(aStr) {}
std::string str() const { return mStr ; }
private:
std::string mStr ;
} ;
template <class Kernel_>
class Dxf_stream
{
public:
typedef Kernel_ Kernel;
// Define the kernel objects.
typedef typename Kernel::FT NT;
typedef typename Kernel::Point_2 Point_2;
typedef typename Kernel::Segment_2 Segment_2;
typedef typename Kernel::Ray_2 Ray_2;
typedef typename Kernel::Line_2 Line_2;
typedef typename Kernel::Triangle_2 Triangle_2;
typedef typename Kernel::Iso_rectangle_2 Iso_rectangle_2;
typedef CGAL::Polygon_2<Kernel> Polygon_2;
typedef typename Kernel::Circle_2 Circle_2;
protected:
// Data members:
Dxf_writer mWriter ;
int mDefaultDxfColor;
int mDxfColor;
Color mCgalColor ;
std::string mLayer ;
struct Color_less
{
bool operator() ( Color const& a, Color const& b ) const
{
return Color_value(a) < Color_value(b);
}
static int Color_value ( Color const& c )
{
return ( int(c.r()) << 16 ) + ( int(c.g()) << 8 ) + ( int(c.b()) ) ;
}
} ;
typedef std::map<Color,int,Color_less> Color_table ;
typedef typename Color_table::const_iterator Color_table_iterator ;
Color_table mColorTable ;
private:
// Copy constructor and assignment operator - not supported.
Dxf_stream (const Dxf_stream<Kernel>& );
const Dxf_stream<Kernel>& operator= (const Dxf_stream<Kernel>& );
public:
/// \name Constructors and destructor.
//@{
/*!
* Constructor.
* \param filename The name of the output FIG file.
*/
Dxf_stream ( std::ostream& out )
:
mWriter (out)
,mDefaultDxfColor (255)
,mDxfColor (255)
,mCgalColor (WHITE)
,mLayer ("0")
{
setup_initial_color_table();
}
/*!
* Destructor.
*/
virtual ~Dxf_stream () {}
//@}
/// \name Accessing drawing properties.
//@{
/*!
* Get the current layer.
*/
std::string layer() const { return mLayer ; }
/*!
* Get the current CGAL color.
*/
Color color () const { return mCgalColor ; }
/*!
* Get the current DXF color.
*/
int dxf_color () const { return mDxfColor ; }
/*!
* Get the current DXF color.
*/
int default_dxf_color () const { return mDefaultDxfColor ; }
/// \name Set the drawing properties.
//@{
/*!
* Set the current layer.
*/
void set_layer ( std::string aLayer ) { mLayer = aLayer ; }
/*!
* Set the current color.
* \pre The color must be defined.
*/
void set_color ( Color aColor )
{
mCgalColor = aColor ;
Color_table_iterator f = mColorTable.find(aColor);
if ( f != mColorTable.end() )
mDxfColor = f->second ;
else mDxfColor = mDefaultDxfColor ;
}
/*!
* Sets the default DXF color in case a CGAL color is unmapped.
* \param aDxfColor The default DXF color.
*/
void define_default_dxf_color ( int aDxfColor )
{
mDefaultDxfColor = aDxfColor ;
}
/*!
* Adds a mapping between a CGAL Color and a DXF color.
* \param aCgalColor The CGAL color.
* \param aDxfColor The DXF color.
*/
void define_color ( Color const& aCgalColor, int aDxfColor )
{
mColorTable.insert( std::make_pair(aCgalColor,aDxfColor) ) ;
}
//@}
/// \name Writing objects.
//@{
/*!
* Write a 2D segment.
*/
void write_segment_2 (const Segment_2& seg)
{
mWriter.add_segment_2( seg.source(), seg.target(), mLayer, mDxfColor ) ;
}
/*!
* Write a 2D polyline.
* \param begin An iterator of the control points (of type Point_2).
* \param end A past-the-end iterator for the control points.
*/
template <class Input_iterator>
void write_polyline_2 (const Input_iterator& begin, const Input_iterator& end)
{
mWriter.add_polyline_2( begin, end, false, mLayer, mDxfColor ) ;
}
/*!
* Write a 2D polygon (there is an added segment between the last vertex and the first)
* \param begin An iterator of the control points (of type Point_2).
* \param end A past-the-end iterator for the control points.
*/
template <class Input_iterator>
void write_polygon_2 (const Input_iterator& begin, const Input_iterator& end)
{
mWriter.add_polyline_2( begin, end, true, mLayer, mDxfColor ) ;
}
/*!
* Write a 2D polyline but as a sequence of line segments
* \param begin An iterator of the control points (of type Point_2).
* \param end A past-the-end iterator for the control points.
*/
template <class Input_iterator>
void write_open_segment_chain_2 (const Input_iterator& begin, const Input_iterator& end)
{
mWriter.add_segments_2( begin, end, false, mLayer, mDxfColor ) ;
}
/*!
* Write a 2D closed polyline but as a sequence of line segments
* \param begin An iterator of the control points (of type Point_2).
* \param end A past-the-end iterator for the control points.
*/
template <class Input_iterator>
void write_closed_segment_chain_2 (const Input_iterator& begin, const Input_iterator& end)
{
mWriter.add_segments_2( begin, end, true, mLayer, mDxfColor ) ;
}
/*!
* Write a 2D (closed) polygon.
*/
void write_polygon (const Polygon_2& pgn)
{
mWriter.add_polyline_2( pgn.begin(), pgn.end(), true, mLayer, mDxfColor ) ;
}
/// \name Setting the draw properties via the << operator.
//@{
/*!
* Set the current layer.
*/
Dxf_stream& operator<< ( Dxf_layer const& aLayer )
{
set_layer ( aLayer.str() );
return (*this);
}
/*!
* Set the current color.
*/
Dxf_stream& operator<< ( Color const& aColor )
{
set_color (aColor);
return (*this);
}
/// \name Drawing objects via the << operator.
//@{
/*!
* Write a line segment.
*/
Dxf_stream& operator<< (const Segment_2& seg)
{
write_segment_2 (seg);
return (*this);
}
/*!
* Write a polygon.
*/
Dxf_stream& operator<< (const Polygon_2& pgn)
{
write_polygon_2 (pgn);
return (*this);
}
//@}
protected:
void setup_initial_color_table()
{
define_color(BLACK,0);
define_color(RED,1);
define_color(YELLOW,2);
define_color(GREEN,3);
define_color(PURPLE,4);
define_color(BLUE,5);
define_color(VIOLET,6);
define_color(WHITE,7);
define_color(GRAY,8);
}
};
} // end namespace CGAL
#endif
|