90 lines
3.0 KiB
C
90 lines
3.0 KiB
C
|
// Copyright (c) 2017 GeometryFactory
|
||
|
//
|
||
|
// This file is part of CGAL (www.cgal.org)
|
||
|
//
|
||
|
// $URL: https://github.com/CGAL/cgal/blob/v5.1/Polyhedron_IO/include/CGAL/IO/STL_writer.h $
|
||
|
// $Id: STL_writer.h 52164b1 2019-10-19T15:34:59+02:00 Sébastien Loriot
|
||
|
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial
|
||
|
//
|
||
|
// Author(s) : Sebastien Loriot
|
||
|
|
||
|
#ifndef CGAL_IO_STL_WRITER_H
|
||
|
#define CGAL_IO_STL_WRITER_H
|
||
|
|
||
|
#include <CGAL/Kernel_traits.h>
|
||
|
#include <CGAL/boost/graph/properties.h>
|
||
|
|
||
|
#include <boost/cstdint.hpp>
|
||
|
#include <boost/graph/graph_traits.hpp>
|
||
|
|
||
|
|
||
|
|
||
|
namespace CGAL{
|
||
|
|
||
|
template <class TriangleMesh>
|
||
|
std::ostream&
|
||
|
write_STL(const TriangleMesh& tm, std::ostream& out)
|
||
|
{
|
||
|
typedef typename boost::graph_traits<TriangleMesh>::face_descriptor face_descriptor;
|
||
|
typedef typename boost::graph_traits<TriangleMesh>::halfedge_descriptor halfedge_descriptor;
|
||
|
typedef typename boost::property_map<TriangleMesh, boost::vertex_point_t>::const_type Vpm;
|
||
|
typedef typename boost::property_traits<Vpm>::reference Point_3_ref;
|
||
|
typedef typename boost::property_traits<Vpm>::value_type Point_3;
|
||
|
typedef typename Kernel_traits<Point_3>::Kernel::Vector_3 Vector_3;
|
||
|
|
||
|
Vpm vpm = get(boost::vertex_point, tm);
|
||
|
|
||
|
if (get_mode(out) == IO::BINARY)
|
||
|
{
|
||
|
out << "FileType: Binary ";
|
||
|
const boost::uint32_t N32 = static_cast<boost::uint32_t>(faces(tm).size());
|
||
|
out.write(reinterpret_cast<const char *>(&N32), sizeof(N32));
|
||
|
|
||
|
for(face_descriptor f : faces(tm))
|
||
|
{
|
||
|
halfedge_descriptor h = halfedge(f, tm);
|
||
|
Point_3_ref p = get(vpm, target(h, tm));
|
||
|
Point_3_ref q = get(vpm, target(next(h, tm), tm));
|
||
|
Point_3_ref r = get(vpm, source(h, tm));
|
||
|
|
||
|
Vector_3 n = collinear(p,q,r) ? Vector_3(1,0,0):
|
||
|
unit_normal(p,q,r);
|
||
|
|
||
|
const float coords[12]={
|
||
|
static_cast<float>(n.x()), static_cast<float>(n.y()), static_cast<float>(n.z()),
|
||
|
static_cast<float>(p.x()), static_cast<float>(p.y()), static_cast<float>(p.z()),
|
||
|
static_cast<float>(q.x()), static_cast<float>(q.y()), static_cast<float>(q.z()),
|
||
|
static_cast<float>(r.x()), static_cast<float>(r.y()), static_cast<float>(r.z()) };
|
||
|
|
||
|
for (int i=0; i<12; ++i)
|
||
|
out.write(reinterpret_cast<const char *>(&coords[i]), sizeof(coords[i]));
|
||
|
out << " ";
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
out << "solid\n";
|
||
|
for(face_descriptor f : faces(tm))
|
||
|
{
|
||
|
halfedge_descriptor h = halfedge(f, tm);
|
||
|
Point_3_ref p = get(vpm, target(h, tm));
|
||
|
Point_3_ref q = get(vpm, target(next(h, tm), tm));
|
||
|
Point_3_ref r = get(vpm, source(h, tm));
|
||
|
|
||
|
Vector_3 n = collinear(p,q,r) ? Vector_3(1,0,0):
|
||
|
unit_normal(p,q,r);
|
||
|
out << "facet normal " << n << "\nouter loop\n";
|
||
|
out << "vertex " << p << "\n";
|
||
|
out << "vertex " << q << "\n";
|
||
|
out << "vertex " << r << "\n";
|
||
|
out << "endloop\nendfacet\n";
|
||
|
}
|
||
|
out << "endsolid\n";
|
||
|
}
|
||
|
return out;
|
||
|
}
|
||
|
|
||
|
} // end of namespace CGAL
|
||
|
|
||
|
#endif // CGAL_IO_STL_WRITER_H
|