Skip to content

Commit

Permalink
polish
Browse files Browse the repository at this point in the history
  • Loading branch information
afabri committed Dec 7, 2023
1 parent 07a0671 commit 79262a3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ A precise specification of the format is available <a href="http://gun.teipir.gr
</tr>
</table>

\section IOStreamVTK VTK (VTU / VTP) File Formats
\section IOStreamVTK VTK (VTU / VTP / legacy) File Formats

\attention \cgal needs to be configured with the VTK Libraries for this function to be available.

Expand All @@ -440,7 +440,9 @@ The VTK libraries use different file formats to handle data structures, but we o

- The `VTP` format can be used to store collections of points, lines, and triangles.
In the <a href="https://vtk.org/"> VTK Libraries</a>, it is the format
reserved to store `PolyData`, and in \cgal, we use it to store Polygon Meshes.
reserved to store `PolyData`, and in \cgal, we use it to store polygon meshes.

We additionally provide a read function for the legacy non-XML file `VTK` file format for polygon meshes.

A precise specification of those formats is available at
<a href="https://vtk.org/wp-content/uploads/2015/04/file-formats.pdf">vtk.org</a>.
Expand Down
2 changes: 1 addition & 1 deletion Stream_support/include/CGAL/IO/VTK.h
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ bool read_VTK(const std::string& fname,
/*!
* \ingroup PkgStreamSupportIoFuncsVTP
*
* \brief reads the content of the input file into `points` and `polygons`, using the \ref IOStreamVTK.
* \brief reads the content of the input file into `points` and `polygons`, using the legacy file format of the \ref IOStreamVTK.
*
* \attention The polygon soup is not cleared, and the data from the file are appended.
*
Expand Down

0 comments on commit 79262a3

Please sign in to comment.