« Introduction à ParaView/Quelques exemples simples » : différence entre les versions

Contenu supprimé Contenu ajouté
→‎Fichiers au format VTK XML : deux_tetraedres_vecteurs.vtu
Ligne 329 :
</Piece>
</ImageData>
</VTKFile>
</source>
 
Fichier <code>deux_tetraedres_vecteurs.vtu</code> :
<source lang="xml">
<?xml version="1.0"?>
<VTKFile type="UnstructuredGrid" version="0.1" byte_order="LittleEndian">
<UnstructuredGrid>
<Piece NumberOfPoints="5" NumberOfCells="2">
<PointData Vectors="mes_vecteurs">
<DataArray type="Float32" Name="mes_vecteurs" NumberOfComponents="3" format="ascii" RangeMin="2" RangeMax="3.8571750477">
2 0 -1 -1 2 -1
-1 -2 -1 0 0 2
1.6699999571 3.3299999237 1
</DataArray>
</PointData>
<CellData>
</CellData>
<Points>
<DataArray type="Float32" Name="Points" NumberOfComponents="3" format="ascii">
0.67 0 -0.33
-0.33 0.67 -0.33
-0.33 -0.67 -0.33
0 0 0.67
0.56 1.11 0.33
</DataArray>
</Points>
<Cells>
<DataArray type="Int64" Name="connectivity" format="ascii" RangeMin="0" RangeMax="4">
0 1 2 3 0 1
3 4
</DataArray>
<DataArray type="Int64" Name="offsets" format="ascii" RangeMin="4" RangeMax="8">
4 8
</DataArray>
<DataArray type="UInt8" Name="types" format="ascii" RangeMin="10" RangeMax="10">
10 10
</DataArray>
</Cells>
</Piece>
</UnstructuredGrid>
</VTKFile>
</source>