Created
February 23, 2012 21:58
-
-
Save pstiasny/1895284 to your computer and use it in GitHub Desktop.
demo vtk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VTKFile type="UnstructuredGrid"> | |
<UnstructuredGrid> | |
<!-- kawal danych --> | |
<Piece NumberOfPoints="3" NumberOfCells="1"> | |
<!-- wartosci w punktach --> | |
<PointData Scalars="Coolness"> | |
<DataArray Name="Coolness" type="Float32"> | |
1.0 | |
1.0 | |
1.2 | |
</DataArray> | |
</PointData> | |
<!-- wspolrzedne kolejnych punktow --> | |
<Points> | |
<DataArray NumberOfComponents="3" type="Int32" format="ascii"> | |
0 0 500 | |
100 100 600 | |
500 0 0 | |
</DataArray> | |
</Points> | |
<!-- komorki --> | |
<Cells> | |
<!-- polaczenia miedzy punktami po kolei dla kazdej komorki (tu jedna) --> | |
<DataArray Name="connectivity" type="Int32" format="ascii">0 1 2</DataArray> | |
<!-- gdzie koncza sie kolejne komorki w powyzszym? --> | |
<DataArray Name="offsets" type="Int32" format="ascii">3</DataArray> | |
<!-- typ komorek. tu jedna VTK_POLYGON. --> | |
<DataArray Name="types" type="Int32" format="ascii">7</DataArray> | |
</Cells> | |
</Piece> | |
</UnstructuredGrid> | |
</VTKFile> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment