mirror of https://github.com/CGAL/cgal
33 lines
1.0 KiB
C
33 lines
1.0 KiB
C
// Copyright (c) 1997
|
|
// Utrecht University (The Netherlands),
|
|
// ETH Zurich (Switzerland),
|
|
// INRIA Sophia-Antipolis (France),
|
|
// Max-Planck-Institute Saarbruecken (Germany),
|
|
// and Tel-Aviv University (Israel). All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org)
|
|
//
|
|
// $URL$
|
|
// $Id$
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial
|
|
//
|
|
//
|
|
// Author(s) : Lutz Kettner <kettner@mpi-sb.mpg.de>
|
|
|
|
#ifndef CGAL_IO_FILE_WRITER_WAVEFRONT_H
|
|
#define CGAL_IO_FILE_WRITER_WAVEFRONT_H 1
|
|
|
|
#include <CGAL/disable_warnings.h>
|
|
}
|
|
void write_vertex_normal( const double& x, const double& y, const double& z) {
|
|
out() << "vn " << x << ' ' << y << ' ' << z << '\n';
|
|
|
|
#define CGAL_DEPRECATED_HEADER "<CGAL/IO/File_writer_wavefront.h>"
|
|
#define CGAL_REPLACEMENT_HEADER "<CGAL/IO/OBJ/File_writer_wavefront.h>"
|
|
#include <CGAL/internal/deprecation_warning.h>
|
|
#include <CGAL/IO/OBJ/File_writer_wavefront.h>
|
|
#include <CGAL/enable_warnings.h>
|
|
|
|
#endif // CGAL_IO_FILE_WRITER_WAVEFRONT_H //
|
|
// EOF //
|