initial commit

This commit is contained in:
davidpagnon 2023-07-19 11:37:20 +02:00
commit b2f5edb743
737 changed files with 299039 additions and 0 deletions

View File

@ -0,0 +1,58 @@
# This workflow will install Python dependencies, run tests and lint on several OS with a several versions of Python
# See: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Build on Win-MacOS-Ubuntu with Python 3.7-3.10
on:
push:
branches: [ "main" ]
paths-ignore:
- 'README.md'
- 'Content/**'
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7, 3.8, 3.9, "3.10"]
include:
- os: ubuntu-latest
path: ~/.cache/pip
- os: macos-latest
path: ~/Library/Caches/pip
- os: windows-latest
path: ~\AppData\Local\pip\Cache
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
python -m pip install git+https://github.com/${{ github.repository }}.git@${{ github.sha }}
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
cd Pose2Sim/Demo
pytest -v test.py

30
.github/workflows/joss_pdf.yml vendored Normal file
View File

@ -0,0 +1,30 @@
name: JOSS pdf constructor
on:
push:
paths:
- 'Content/paper.md'
- 'Content/paper.bib'
- 'Content/Pipeline.png'
jobs:
paper:
runs-on: ubuntu-latest
name: Paper Draft
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build draft PDF
uses: openjournals/openjournals-draft-action@master
with:
journal: joss
# This should be the path to the paper within your repo.
paper-path: Content/paper.md
- name: Upload
uses: actions/upload-artifact@v1
with:
name: paper
# This is the output path where Pandoc will write the compiled
# PDF. Note, this should be the same directory as the input
# paper.md
path: Content/paper.pdf

View File

@ -0,0 +1,40 @@
# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Upload Python Package to PyPi upon release
on:
release:
types: [published]
permissions:
contents: read
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
**/__pycache__/
*.pyc
logs.txt*
*.egg-info/
dist/
**/*.avi

34
CITATION.cff Normal file
View File

@ -0,0 +1,34 @@
cff-version: 1.2.0
message: "If you use Pose2Sim, please cite it as below."
authors:
- family-names: "Pagnon"
given-names: "David"
orcid: "https://orcid.org/0000-0002-6891-8331"
title: "Pose2Sim - Markerless kinematics, from OpenPose to OpenSim"
version: 0.3.6
doi: ''
date-released: 2023-05-05
url: "https://github.com/perfanalytics/pose2sim"
journal: "GitHub repository"
preferred-citation:
type: article
authors:
- family-names: "Pagnon"
given-names: "David"
orcid: "https://orcid.org/0000-0002-6891-8331"
- family-names: "Domalain"
given-names: "Mathieu"
orcid: "https://orcid.org/0000-0002-4518-8479"
- family-names: "Reveret"
given-names: "Lionel"
orcid: "https://orcid.org/0000-0002-0810-5187"
doi: "10.3390/s21196530"
journal: "Journal Title"
month: 9
start: 6530 # First page number
end: 6557 # Last page number
title: "Pose2Sim: An End-to-End Workflow for 3D Markerless Sports Kinematics—Part 1: Robustness"
issue: 19
volume: 11
year: 2021

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 MiB

BIN
Content/Calib2D.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
Content/CalibFile.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
Content/Filter3D.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

BIN
Content/FilterPlot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

BIN
Content/OpenSim.JPG Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
Content/Pipeline.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 MiB

BIN
Content/Pose2D.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

BIN
Content/Track2D.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

BIN
Content/Triangulate3D.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

BIN
Content/checkerboard.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

289
Content/paper.bib Normal file
View File

@ -0,0 +1,289 @@
@article{Beaucage_2019,
title={Validation of an OpenSim full-body model with detailed lumbar spine for estimating lower lumbar spine loads during symmetric and asymmetric lifting tasks},
author={Beaucage-Gauvreau, Erica and Robertson, William SP and Brandon, Scott CE and Fraser, Robert and Freeman, Brian JC and Graham, Ryan B and Thewlis, Dominic and Jones, Claire F},
journal={Computer methods in biomechanics and biomedical engineering},
DOI = {10.1080/10255842.2018.1564819},
volume={22},
number={5},
pages={451--464},
year={2019},
publisher={Taylor \& Francis}
}
@article{Bradski_2000,
author = {Bradski, G.},
citeulike-article-id = {2236121},
journal = {Dr. Dobb's Journal of Software Tools},
keywords = {bibtex-import},
posted-at = {2008-01-15 19:21:54},
priority = {4},
title = {The OpenCV Library},
year = {2000}
}
@article{Butterworth_1930,
title={On the theory of filter amplifiers},
author={Butterworth, Stephen},
journal={Wireless Engineer},
volume={7},
number={6},
pages={536--541},
year={1930}
}
@article{Cao_2019,
title={OpenPose: realtime multi-person 2D pose estimation using Part Affinity Fields},
author={Cao, Zhe and Hidalgo, Gines and Simon, Tomas and Wei, Shih-En and Sheikh, Yaser},
journal={IEEE transactions on pattern analysis and machine intelligence},
volume={43},
number={1},
pages={172--186},
year={2019},
URL = {https://arxiv.org/abs/1611.08050},
DOI = {10.1109/TPAMI.2019.2929257},
publisher={IEEE}
}
@article{Cleveland_1981,
title={LOWESS: A program for smoothing scatterplots by robust locally weighted regression},
author={Cleveland, William S},
DOI={10.2307/2683591},
journal={American Statistician},
volume={35},
number={1},
pages={54},
year={1981}
}
@article{Colyer_2018,
title={A review of the evolution of vision-based motion analysis and the integration of advanced computer vision methods towards developing a markerless system},
author={Colyer, Steffi L and Evans, Murray and Cosker, Darren P and Salo, Aki IT},
journal={Sports medicine-open},
DOI={10.1186/s40798-018-0139-y},
volume={4},
number={1},
pages={1--15},
year={2018},
publisher={SpringerOpen}
}
@article{Delp_2007,
title={OpenSim: open-source software to create and analyze dynamic simulations of movement},
author={Delp, Scott L and Anderson, Frank C and Arnold, Allison S and Loan, Peter and Habib, Ayman and John, Chand T and Guendelman, Eran and Thelen, Darryl G},
journal={IEEE transactions on biomedical engineering},
volume={54},
number={11},
pages={1940--1950},
year={2007},
URL = {https://ieeexplore.ieee.org/abstract/document/4352056},
DOI = {10.1109/TBME.2007.901024},
publisher={IEEE}
}
@inproceedings{Fang_2017,
title={{RMPE}: Regional Multi-person Pose Estimation},
author={Fang, Hao-Shu and Xie, Shuqin and Tai, Yu-Wing and Lu, Cewu},
booktitle={ICCV},
year={2017},
URL = {https://ieeexplore.ieee.org/document/8237518},
DOI = {10.1109/ICCV.2017.256}
}
@article{Hartley_1997,
title={Triangulation},
author={Hartley, Richard I and Sturm, Peter},
journal={Computer vision and image understanding},
DOI={10.1006/cviu.1997.0547},
volume={68},
number={2},
pages={146--157},
year={1997},
publisher={Elsevier}
}
@misc{Hidalgo_2019,
author = {Hidalgo, Ginés},
title = {OpenPose Experimental Models},
year = {2019},
publisher = {GitHub},
journal = {GitHub repository},
url = {https://github.com/CMU-Perceptual-Computing-Lab/openpose_train/tree/master/experimental_models#body_25b-model---option-2-recommended}
}
@misc{Hidalgo_2021,
author = {Hidalgo, Ginés},
title = {OpenPose 3D reconstruction module},
year = {2021},
publisher = {GitHub},
journal = {GitHub repository},
url = {https://github.com/CMU-Perceptual-Computing-Lab/openpose/blob/master/doc/advanced/3d_reconstruction_module.md}
}
@article{Kanko_2021,
title={Concurrent assessment of gait kinematics using marker-based and markerless motion capture},
author={Kanko, Robert M and Laende, Elise K and Davis, Elysia M and Selbie, W Scott and Deluzio, Kevin J},
journal={Journal of biomechanics},
volume={127},
pages={110665},
year={2021},
URL = {https://doi.org/10.1016/j.jbiomech.2021.110665},
DOI = {10.1016/j.jbiomech.2021.110665},
publisher={Elsevier}
}
@article{Karashchuk_2021,
title={Anipose: a toolkit for robust markerless 3D pose estimation},
author={Karashchuk, Pierre and Rupp, Katie L and Dickinson, Evyn S and Walling-Bell, Sarah and Sanders, Elischa and Azim, Eiman and Brunton, Bingni W and Tuthill, John C},
journal={Cell reports},
volume={36},
number={13},
pages={109730},
year={2021},
URL = {https://doi.org/10.1016/j.celrep.2021.109730},
DOI = {10.1016/j.celrep.2021.109730},
publisher={Elsevier}
}
@article{Mathis_2018,
title={DeepLabCut: markerless pose estimation of user-defined body parts with deep learning},
author={Mathis, Alexander and Mamidanna, Pranav and Cury, Kevin M and Abe, Taiga and Murthy, Venkatesh N and Mathis, Mackenzie Weygandt and Bethge, Matthias},
journal={Nature neuroscience},
volume={21},
number={9},
pages={1281--1289},
year={2018},
URL = {https://www.nature.com/articles/s41593-018-0209-y},
DOI = {10.1038/s41593-018-0209-y},
publisher={Nature Publishing Group}
}
@misc{Matthis_2022,
type={Python},
title={FreeMoCap: A free, open source markerless motion capture system},
rights={AGPL-3.0},
url={https://github.com/freemocap/freemocap},
author={Matthis, Jonathan Samir and Cherian, Aaron},
year={2022},
publisher = {GitHub},
journal = {GitHub repository},
}
@article{Needham_2021,
title={The accuracy of several pose estimation methods for 3D joint centre localisation},
author={Needham, Laurie and Evans, Murray and Cosker, Darren P and Wade, Logan and McGuigan, Polly M and Bilzon, James L and Colyer, Steffi L},
journal={Scientific reports},
DOI={10.1038/s41598-021-00212-x},
volume={11},
number={1},
pages={1--11},
year={2021},
publisher={Nature Publishing Group}
}
@article{Pagnon_2021,
title={Pose2Sim: An End-to-End Workflow for 3D Markerless Sports Kinematics—Part 1: Robustness},
author={Pagnon, David and Domalain, Mathieu and Reveret, Lionel},
journal={Sensors},
volume={21},
number={19},
year={2021},
URL = {https://www.mdpi.com/1424-8220/21/19/6530},
DOI = {10.3390/s21196530},
publisher={Multidisciplinary Digital Publishing Institute}
}
@article{Pagnon_2022,
title = {Pose2Sim: An End-to-End Workflow for 3D Markerless Sports Kinematics—Part 2: Accuracy},
author = {Pagnon, David and Domalain, Mathieu and Reveret, Lionel},
journal = {Sensors},
volume={22},
number={7},
year={2022},
URL = {https://www.mdpi.com/1424-8220/22/7/2712},
DOI = {10.3390/s22072712},
publisher={Multidisciplinary Digital Publishing Institute}
}
@article{Rajagopal_2016,
title={Full-body musculoskeletal model for muscle-driven simulation of human gait},
author={Rajagopal, Apoorva and Dembia, Christopher L and DeMers, Matthew S and Delp, Denny D and Hicks, Jennifer L and Delp, Scott L},
journal={IEEE transactions on biomedical engineering},
DOI={10.1109/tbme.2016.2586891},
volume={63},
number={10},
pages={2068--2079},
year={2016},
publisher={IEEE}
}
@article{Seth_2018,
DOI = {10.1371/journal.pcbi.1006223},
author = {Seth, Ajay AND Hicks, Jennifer L. AND Uchida, Thomas K. AND Habib, Ayman AND Dembia, Christopher L. AND Dunne, James J. AND Ong, Carmichael F. AND DeMers, Matthew S. AND Rajagopal, Apoorva AND Millard, Matthew AND Hamner, Samuel R. AND Arnold, Edith M. AND Yong, Jennifer R. AND Lakshmikanth, Shrinidhi K. AND Sherman, Michael A. AND Ku, Joy P. AND Delp, Scott L.},
journal = {PLOS Computational Biology},
publisher = {Public Library of Science},
title = {OpenSim: Simulating musculoskeletal dynamics and neuromuscular control to study human and animal movement},
year = {2018},
month = {07},
volume = {14},
url = {https://doi.org/10.1371/journal.pcbi.1006223},
pages = {1-20},
number = {7},
}
@article{Sheshadri_2020,
DOI={10.21105/joss.01849},
url = {https://doi.org/10.21105/joss.01849},
year = {2020},
publisher = {The Open Journal},
volume = {5},
number = {45},
pages = {1849},
author = {Sheshadri, Swathi and Dann, Benjamin and Hueser, Timo and Scherberger, Hansjoerg},
title = {3D reconstruction toolbox for behavior tracked with multiple cameras},
journal = {Journal of Open Source Software}
}
@article{Uhlrich_2022,
title={OpenCap: 3D human movement dynamics from smartphone videos},
url={https://www.biorxiv.org/content/10.1101/2022.07.07.499061v1},
DOI={10.1101/2022.07.07.499061},
publisher={bioRxiv},
author={Uhlrich, Scott D. and Falisse, Antoine and Kidziński, Łukasz and Muccini, Julie and Ko, Michael and Chaudhari, Akshay S. and Hicks, Jennifer L. and Delp, Scott L.},
year={2022},
month={Jul},
pages={2022.07.07.499061}
}
@article{Zeni_2008,
title={Two simple methods for determining gait events during treadmill and overground walking using kinematic data},
author={Zeni Jr, JA and Richards, JG and Higginson, JS2384115},
journal={Gait \& posture},
volume={27},
number={4},
pages={710--714},
year={2008},
URL={https://doi.org/10.1016/j.gaitpost.2007.07.007},
DOI={10.1016/j.gaitpost.2007.07.007},
publisher={Elsevier}
}
@article{Zhang_2000,
title={A flexible new technique for camera calibration},
author={Zhang, Zhengyou},
journal={IEEE Transactions on pattern analysis and machine intelligence},
DOI={10.1109/34.888718},
volume={22},
number={11},
pages={1330--1334},
year={2000},
publisher={IEEE}
}
@article{Zheng_2022,
title={Deep learning-based human pose estimation: A survey},
author={Zheng, Ce and Wu, Wenhan and Yang, Taojiannan and Zhu, Sijie and Chen, Chen and Liu, Ruixu and Shen, Ju and Kehtarnavaz, Nasser and Shah, Mubarak},
journal={arXiv},
year={2022},
URL={https://doi.org/10.48550/arXiv.2012.13392},
DOI={10.48550/arXiv.2012.13392},
}

124
Content/paper.md Normal file
View File

@ -0,0 +1,124 @@
---
title: 'Pose2Sim: An open-source Python package for multiview markerless kinematics'
tags:
- python
- markerless kinematics
- motion capture
- sports performance analysis
- openpose
- opensim
authors:
- name: David Pagnon^[corresponding author]
orcid: 0000-0002-6891-8331
affiliation: 1, 2
- name: Mathieu Domalain
orcid: 0000-0002-4518-8479
affiliation: 2
- name: Lionel Reveret
orcid: 0000-0002-0810-5187
affiliation: 1, 3
affiliations:
- name: Laboratoire Jean Kuntzmann, Université Grenoble Alpes, 700 avenue Centrale, 38400 Saint Martin dHères, France
index: 1
- name: Institut Pprime, 2 Bd des Frères Lumière, 86360 Chasseneuil-du-Poitou, France
index: 2
- name: Inria Grenoble Rhône-Alpes, 38330 Montbonnot-Saint-Martin, France
index: 3
date: January 24 2021
bibliography: paper.bib
---
# Summary
`Pose2Sim` provides a workflow for 3D markerless kinematics, as an alternative to the more usual marker-based motion capture methods.
`Pose2Sim` stands for "OpenPose to OpenSim", as it uses `OpenPose` inputs (2D coordinates obtained from multiple videos) and leads to an `OpenSim` result (full-body 3D joint angles).
The repository presents a framework for:
* Detecting 2D joint coordinates from videos, e.g. via `OpenPose` [@Cao_2019]
* Calibrating cameras
* Detecting the person of interest
* Triangulating 2D joint coordinates and storing them as 3D positions in a .trc file
* Filtering these calculated 3D positions
* Scaling and running inverse kinematics via `OpenSim` [@Delp_2007; @Seth_2018], in order to obtain full-body 3D joint angles
Each task is easily customizable, and requires only moderate Python skills. `Pose2Sim` is accessible at [https://github.com/perfanalytics/pose2sim](https://github.com/perfanalytics/pose2sim).
# Statement of need
For the last few decades, marker-based kinematics has been considered the best choice for the analysis of human movement, when regarding the trade-off between ease of use and accuracy. However, a marker-based system is hard to set up outdoors or in context, and it requires placing markers on the body, which can hinder natural movement [@Colyer_2018].
The emergence of markerless kinematics opens up new possibilities. Indeed, the interest in deep-learning pose estimation neural networks has been growing fast since 2015 [@Zheng_2022], which makes it now possible to collect accurate and reliable kinematic data without the use of physical markers. `OpenPose`, for example, is a widespread open-source software which provides 2D joint coordinate estimates from videos. These coordinates can then be triangulated in order to produce 3D positions. Aside from `Pose2Sim`, a number a tools are available for such triangulation: the experimental `OpenPose 3D reconstruction module` [@Hidalgo_2021], the `FreeMoCap` Python and Blender toolbox [@Matthis_2022], and the `pose3d` Matlab toolbox [@Sheshadri_2020]. Yet, when it comes to the biomechanical analysis of human motion, it is often more useful to obtain joint angles than joint center positions in space. Joint angles allow for better comparison among trials and individuals, and they represent the first step for other analyses such as inverse dynamics.
`OpenSim` is another widespread open-source software which helps compute 3D joint angles, usually from marker coordinates. It lets scientists define a detailed musculoskeletal model, scale it to individual subjects, and perform inverse kinematics with customizable biomechanical constraints. It provides other features such as net calculation of joint moments or resolution of individual muscle forces, although this is beyond the scope of our contribution.
So far, little work has been done towards obtaining 3D angles from multiple views [@Zheng_2022]. However, three software applications are worth mentioning. `Anipose` [@Karashchuk_2021] proposes a Python open-source framework which allows for joint angle estimation with spatio-temporal constraints, but it is primarily designed for animal motion analysis. `Theia3D` [@Kanko_2021] is a software application for human gait markerless kinematics. Although the GUI is more user friendly, it is neither open-source nor customizable. `OpenCap` [@Uhlrich_2022] has recently been released, and offers a user-friendly web application working with low-cost hardware. It predicts the coordinates of 43 anatomical markers from 20 triangulated keypoints, and imports them in `OpenSim`. However, the source code has not yet been released.
The goal of `Pose2Sim` is to build a bridge between the communities of computer vision and biomechanics, by providing a simple and open-source pipeline connecting the two aforementioned state-of-the-art tools: `OpenPose` and `OpenSim`. The whole workflow runs from any video cameras, on any computer, equipped with any operating system (although `OpenSim` has to be compiled from source on Linux.) `Pose2Sim` has already been used and tested in a number of situations (walking, running, cycling, dancing, balancing, swimming, boxing), and published in peer-reviewed scientific publications assessing its robustness [@Pagnon_2021] and accuracy [@Pagnon_2022]. Its results for inverse kinematics were deemed good when compared to marker-based ones, with errors generally below 4.0° across several activities, on both lower and on upper limbs. The combination of its ease of use, customizable parameters, and high robustness and accuracy makes it promising, especially for "in-the-wild" sports movement analysis.
# Pose2Sim workflow
`Pose2Sim` connects two of the most widely recognized (and open-source) softwares in their respective fields:
* `OpenPose` [@Cao_2019], a 2D human pose estimation neural network
* `OpenSim` [@Delp_2007], a 3D biomechanics analysis software
The workflow is organized as follows (\autoref{fig:pipeline}):
1. Preliminary `OpenPose` [@Cao_2019] 2D keypoints detection
2. `Pose2Sim` core, including 4 customizable steps:
1. Camera calibration
2. 2D tracking of the person of interest
3. 3D keypoint triangulation
4. 3D coordinate filtering
3. A full-body `OpenSim` [@Delp_2007] skeletal model with `OpenPose` keypoints is provided, as well as scaling and inverse kinematics setup files.
![Pose2Sim full pipeline: (1) OpenPose 2D keypoint detection; (2.1) Camera calibration; (2.12.4) Tracking of the person of interest, Triangulation of keypoint coordinates, and Filtering; (3) Constraining the 3D coordinates to an individually scaled, physically consistent OpenSim skeletal model.\label{fig:pipeline}](Pipeline.png)
# Pose2Sim method details
`Pose2Sim` is meant to be as fully and easily configurable as possible, by editing the 'User/Config.toml' file. Optional tools are also provided for extending its usage (\autoref{fig:utilities}).
## Project
The user can specify the project path and folder names, the video frame rate, and the range of analyzed frames.
![The Pose2Sim workflow, along with some optional utilities provided in the package.\label{fig:utilities}](Pose2Sim_workflow_utilities.jpg)
## 2D keypoint detection
It is possible to define which 2D pose estimation model is used. This choice will affect how keypoint indices will be mapped to model markers in `OpenSim`, corresponding to anatomical landmarks or joint centers. Only 21 of the 25 keypoints detected by the default `OpenPose` models are tracked, since eye and ear keypoints would be redundant in the determination of the head orientation.
The `OpenPose` BODY_25B experimental model is recommended, as it is as fast as the standard BODY_25 model, while being more accurate [@Hidalgo_2019]. Non-`OpenPose` models can also be chosen, whether they are human (such as the AlphaPose one [@Fang_2017]), or animal (such as any `DeepLabCut` model trained by the user [@Mathis_2018]). Two optional standalone scripts are also provided if the user desires a visual display of the resulting 2D pose estimation (\autoref{fig:utilities}).
## Camera calibration
The user can indicate whether cameras are going to be calibrated with a checkerboard, or if a preexisting calibration file (such as one provided by a Qualisys system) will simply be converted.
If checkerboard calibration is chosen, the number of corners and the size of the squares have to be specified. In this case, the operator needs to take at least 10 pictures or one video per camera of the checkerboard, covering as much as the field of view as possible, with different orientations. Corners are then detected and refined with OpenCV. Detected corners can optionally be displayed for verification. Each camera is finally calibrated using OpenCV with an algorithm based on [@Zhang_2000]. The user can choose the index of the image which they want to be used as a reference for calculating extrinsic parameters. Residual calibration errors are given, and stored in a log file.
## Tracking the person of interest
One needs to differentiate the people in the background from the actual subject. The tracking step examines all possible triangulations of a chosen keypoint among all detected persons, and reprojects them on the image planes. The triangulation with the smallest reprojection error is considered to be the one associated with the right person on all cameras. If the reprojection error is above a predefined threshold, the process is repeated after taking off one, or several cameras. This happens, for example, if the person of interest has exited the field of a camera, while another person is still in the background.
We recommend choosing the neck point or one of the hip points. In most cases they are the least likely to move out of the cameras' views.
## Triangulation
`Pose2Sim` triangulation is robust, largely because instead of using classic Direct Linear Transform (DLT) [@Hartley_1997], we propose a weighted DLT, i.e., a triangulation procedure where each `OpenPose` keypoint coordinate is weighted with its confidence score [@Pagnon_2021].
Other parameters can be specified, such as:
* The minimum likelihood (given by `OpenPose` for each detected keypoint) below which a 2D point will not be taken into account for triangulation.\
* The maximum in reprojection error above which triangulation results will not be accepted. This can happen if `OpenPose` provides a bad 2D keypoint estimate, or if the person of interest leaves the camera field. Triangulation will then be tried again on all subsets of all cameras minus one. If the best of the resulting reprojection errors is below the threshold, it is retained. If it is still above the threshold, one more camera is excluded.\
* The minimum number of "good" cameras (i.e., cameras remaining after the last two steps) required for triangulating a keypoint. If there are not enough cameras left, the 3D keypoint is dropped for this frame.
Once all frames are triangulated, the ones with missing keypoint coordinates are interpolated. The interpolation method can also be chosen from among linear, slinear, quadratic, and cubic. The mean reprojection error over all frames is given for each point and saved to a log file, as well as the number of cameras excluded to reach the demanded thresholds. The resulting 3D coordinates are formatted as a .trc file, which can be read by `OpenSim`.
## Filtering and other operations
Different filters can be chosen, and their parameters can be adjusted. The user can choose a zero-phase low-pass Butterworth filter [@Butterworth_1930] that they can apply either on keypoint positions or on their speeds, a LOESS filter [@Cleveland_1981], a Gaussian filter, or a median filter. Waveforms before and after filtering can be displayed and compared.
If needed, other standalone tools are provided to further work on the .trc 3D coordinate files (\autoref{fig:utilities}). Among others, it is possible to undersample a file from a higher to a lower framerate, or to convert a file from Z-up to Y-up axis convention. The resulting 3D coordinates can be plotted for verification. Additionally, a tool is provided to detect gait events from point coordinates, according to the equations given by [@Zeni_2008].
## OpenSim scaling and inverse kinematics
The main contribution of this software is to build a bridge between `OpenPose` and `OpenSim`. The latter allows for much more accurate and robust results [@Pagnon_2022], since it constrains kinematics to an individually scaled and physically accurate skeletal model. Bones are constrained to a constant length, and joints to coherent angle limits.
The provided model is adapted from the human gait full-body model [@Rajagopal_2016] and the lifting full-body model [@Beaucage_2019]. The first one has a better definition of the knee joint: abduction/adduction and internal/external rotation angles are constrained to the flexion/extension angle. The latter has a better definition of the spine: each lumbar vertebra is constrained to the next one, which makes it possible for the spine to bend in a coherent way with only a few tracked keypoints, without having to make it a rigid single bone. Combining those two models allows for ours to be as versatile as possible. Hand movements are locked, because the standard `OpenPose` models don't provide any hand detection.
This model also takes into account systematic labelling errors in `OpenPose` [@Needham_2021], and offsets model markers as regards true joint centers accordingly. Unlike in marker-based capture, and despite the aforementioned systematic errors, keypoints detection hardly depends on the subject, the operator, nor the context. For this reason, the scaling and the inverse kinematic steps are straightforward, and the provided setup files require little to no adjusting.
# Acknowledgements
We acknowledge the dedicated people involved in the many major software programs and packages used by `Pose2Sim`, such as `Python`, `OpenPose`, `OpenSim`, `OpenCV` [@Bradski_2000], among others.
# References

29
LICENSE Normal file
View File

@ -0,0 +1,29 @@
BSD 3-Clause License
Copyright (c) 2022, perfanalytics
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

View File

@ -0,0 +1,113 @@
###############################################################################
## PROJECT PARAMETERS ##
###############################################################################
# Configure your project parameters here
[project]
project_dir = 'D:\softs\github_david\pose2sim\Pose2Sim\Demo' # BETWEEN SINGLE QUOTES! # If empty, project dir is current dir
frame_range = [] #For example [10,300], or [] for all frames
frame_rate = 60 #Hz
rawImg_folder_name = 'raw'
calib_folder_name = 'calibration'
pose_folder_name = 'pose'
pose_json_folder_extension = 'json'
pose_img_folder_extension = 'img'
poseAssociated_folder_name = 'pose-associated'
pose3d_folder_name = 'triangulation'
opensim_folder_name = 'opensim'
[pose]
pose_model = 'BODY_25B' #CUSTOM, BODY_25B, BODY_25, BODY_135, BLAZEPOSE, HALPE_26, HALPE_68, HALPE_136, COCO_133, COCO, MPII are available,
# from DeepLabCut, OpenPose, MediaPipe BlazePose, and AlphaPose
# See Pose2Sim\skeleton.py for their skeleton hierarchy
[calibration]
calibration_type = 'convert' # 'convert' or 'calculate'
[calibration.convert]
convert_from = 'qualisys' # 'qualisys', 'optitrack', or 'vicon' (coming)
[calibration.convert.qualisys]
binning_factor = 1 # Usually 1, except when filming in 540p where it usually is 2
[calibration.calculate] # coming later: 'points'
calculate_method = 'board' # 'board' or 'points'
[calibration.calculate.board.intrinsics] # camera properties, only needs to be done once
intrinsics_board_type = 'checkerboard' # 'checkerboard' ('charucoboard' not supported yet)
overwrite_intrinsics = false # overwrite (or not) if they have already been calculated?
intrinsics_extension = 'avi' # any video or image extension
extract_every_N_sec = 1 # if video, extract frames every N seconds (can be <1 )
show_detection_intrinsics = true # true or false (lowercase). Close window to proceed to next detection
intrinsics_corners_nb = [6,9]
intrinsics_square_size = 80 # mm
intrinsics_marker_size = 60 # mm # only checked if charucoboard
intrinsics_aruco_dict = 'DICT_6X6_250' # only checked if charucoboard # see https://docs.opencv.org/3.4/dc/df7/dictionary_8hpp.html
[calibration.calculate.board.extrinsics] # camera placement, needs to be done every time
extrinsics_board_type = 'checkerboard' # 'checkerboard', 'scene' ('charucoboard' not supported yet)
# 'board' should be large enough to be detected when laid on the floor.
# 'scene' involves manually clicking any point of know coordinates on scene. Usually more accurate
calculate_extrinsic = true # true or false (lowercase)
extrinsics_extension = 'avi' # any video or image extension
# if extrinsics_board_type = 'checkerboard' or 'charucoboard'
extrinsics_corners_nb = [6,9] # [H,W] rather than [w,h]
extrinsics_square_size = 80 # mm # [h,w] if square is actually a rectangle
extrinsics_marker_size = 60 # mm # only checked if 'charucoboard'
extrinsics_aruco_dict = 'DICT_6X6_250' # only checked if 'charucoboard' # see https://docs.opencv.org/3.4/dc/df7/dictionary_8hpp.html
# if extrinsics_board_type = 'scene'
# list of 3D coordinates to be manually labelled on images. Can also be 2 dimensional.
object_coords_3d = [[0,0,0],[10,0,0],[10,0,0],[10,10,0],[5,5,5]]
[calibration.calculate.points]
calibration_points = 'wand' # 'wand' or 'keypoints'
# Not supported yet.
[personAssociation]
tracked_keypoint = 'Neck' # If the neck is not detected by the pose_model, check skeleton.py
# and choose a stable point for tracking the person of interest (e.g., 'right_shoulder' with BLAZEPOSE)
reproj_error_threshold_association = 20 # px
[triangulation]
reproj_error_threshold_triangulation = 15 # px
likelihood_threshold = 0.3
min_cameras_for_triangulation = 2
interpolation = 'cubic' #linear, slinear, quadratic, cubic, or none
# 'none' if you don't want to interpolate missing points
show_interp_indices = false # true or false (lowercase). For each keypoint, return the frames that need to be interpolated
[filtering]
type = 'butterworth' # butterworth, butterworth_on_speed, gaussian, LOESS, median
display_figures = true # true or false (lowercase)
[filtering.butterworth]
type = 'low'
order = 4
cut_off_frequency = 6 # Hz
[filtering.butterworth_on_speed]
type = 'low'
order = 4
cut_off_frequency = 10 # Hz
[filtering.gaussian]
sigma_kernel = 2 #px
[filtering.LOESS]
nb_values_used = 30 # = fraction of data used * nb frames
[filtering.median]
kernel_size = 9
[opensim]

View File

@ -0,0 +1,78 @@
###############################################################################
## POSE2SIM PROJECT PARAMETERS ##
###############################################################################
# Configure your project parameters here
[project]
project_dir = '' # BETWEEN SINGLE QUOTES! # If empty, project dir is current dir
frame_range = [0,10] #For example [10,300], or [] for all frames
frame_rate = 60 #Hz
rawImg_folder_name = 'raw-2d'
calib_folder_name = 'calibration'
pose_folder_name = 'pose'
pose_json_folder_extension = 'json'
pose_img_folder_extension = 'img'
poseTracked_folder_name = 'pose-2d-tracked'
pose3d_folder_name = 'triangulation'
opensim_folder_name = 'opensim'
[pose]
pose_model = 'BODY_25B' #CUSTOM, BODY_25B, BODY_25, BODY_135, BLAZEPOSE,
# HALPE_26, HALPE_68, HALPE_136, COCO_133, COCO, MPII are available,
# from DeepLabCut, OpenPose, MediaPipe BlazePose, and AlphaPose
# See Pose2Sim\skeleton.py for their skeleton hierarchy
[calibration]
type = 'qca' # 'qca', 'checkerboard', 'arucoboard', or 'charucoboard'
[calibration.qca]
binning_factor = 1 # Usually 1, except when filming in 540p where it usually is 2
[calibration.checkerboard]
corners_nb = [7,12] # [H,W] rather than [w,h]
square_size = 80 # mm # [h,w] if square is actually a rectangle
frame_for_origin = -1 # starting from zero. -1 if board is at origin on last frame
# /!\ Beware that corners must be detected on all view at frame_for_origin, or else
# extrinsic parameters will be wrong. Set show_corner_detection to true to check it.
show_corner_detection = false # true or false (lowercase)
from_vid_or_img = 'img' # 'vid' or 'img'
vid_snapshot_every_N_frames = 20
vid_extension = 'mp4'
img_extension = 'jpg' # 'png', 'jpg', etc
[2d-tracking]
tracked_keypoint = 'Neck' # If the neck is not detected by the pose_model, check skeleton.py
# and choose a stable point for tracking the person of interest (e.g., 'right_shoulder' with BLAZEPOSE)
error_threshold_tracking = 20 # px
[3d-triangulation]
error_threshold_triangulation = 15 # px
likelihood_threshold = 0.3
min_cameras_for_triangulation = 2
interpolation = 'cubic' #linear, slinear, quadratic, cubic, or none
# 'none' if you don't want to interpolate missing points
interp_if_gap_smaller_than = 10 # do not interpolate bigger gaps
show_interp_indices = true # true or false (lowercase). For each keypoint, return the frames that need to be interpolated
[3d-filtering]
type = 'butterworth' # butterworth, butterworth_on_speed, gaussian, LOESS, median
display_figures = false # true or false (lowercase)
[3d-filtering.butterworth]
type = 'low'
order = 4
cut_off_frequency = 6 # Hz
[3d-filtering.butterworth_on_speed]
type = 'low'
order = 4
cut_off_frequency = 10 # Hz
[3d-filtering.gaussian]
sigma_kernel = 2 #px
[3d-filtering.LOESS]
nb_values_used = 5 # = fraction of data used * nb frames
[3d-filtering.median]
kernel_size = 9
[opensim]

View File

@ -0,0 +1,38 @@
<?xml version='1.0' encoding='ASCII'?>
<calibration created="sometimes ago" longArmEnd="none" longArmMiddle="none" maximumFrames="none" qtm-version="none" shortArmEnd="none" source="calibration_qca_rotated.qca.txt" type="regular" wandLength="none">
<results min-max-diff="0." std-dev="0."/>
<cameras>
<camera active="1" avg-residual="0.402000" model="none" point-count="999999999" serial="cam01" viewrotation="0">
<fov_marker bottom="1919" left="0" right="1087" top="0"/>
<fov_marker_max bottom="1919" left="0" right="1087" top="0"/>
<fov_video bottom="1919" left="0" right="1087" top="0"/>
<fov_video_max bottom="1919" left="0" right="1087" top="0"/>
<transform r11="0.5536380477336265" r12="0.8046719867383512" r13="0.2144479094331626" r21="-0.4345300743838753" r22="0.05946489349975602" r23="0.8986921279821063" r31="0.7104002579937896" r32="-0.5907342212870501" r33="0.3825762057979294" x="1460.2323709212087" y="-1909.1590482454608" z="1896.5058524092062"/>
<intrinsic centerPointU="34110.316406" centerPointV="60680.792969" focalLengthU="107599.671875" focalLengthV="107588.828125" focallength="9.314096596679686" radialDistortion1="-0.046183" radialDistortion2="0.139983" radialDistortion3="0.000000" sensorMaxU="69568" sensorMaxV="122816" sensorMinU="0.000000" sensorMinV="0.000000" skew="0.000000" tangentalDistortion1="0.000608" tangentalDistortion2="0.00069"/>
</camera>
<camera active="1" avg-residual="0.444749" model="none" point-count="999999999" serial="cam02" viewrotation="0">
<fov_marker bottom="1919" left="0" right="1087" top="0"/>
<fov_marker_max bottom="1919" left="0" right="1087" top="0"/>
<fov_video bottom="1919" left="0" right="1087" top="0"/>
<fov_video_max bottom="1919" left="0" right="1087" top="0"/>
<transform r11="-0.1966832217091926" r12="0.979523227309506" r13="-0.043011131806342306" r21="-0.31478107085300017" r22="-0.02153908797812718" r23="0.9489198834051846" r31="0.9285626460991909" r32="0.20017570994064315" r33="0.3125717476340885" x="2582.0136248568124" y="706.5662881637625" z="1690.9818366061595"/>
<intrinsic centerPointU="34207.652344" centerPointV="61646.457031" focalLengthU="107118.695313" focalLengthV="107123.023438" focallength="9.272462063031563" radialDistortion1="-0.047847" radialDistortion2="0.136786" radialDistortion3="0.000000" sensorMaxU="69568" sensorMaxV="122816" sensorMinU="0.000000" sensorMinV="0.000000" skew="0.000000" tangentalDistortion1="0.000972" tangentalDistortion2="0.000291"/>
</camera>
<camera active="1" avg-residual="0.450323" model="none" point-count="999999999" serial="cam03" viewrotation="0">
<fov_marker bottom="1919" left="0" right="1087" top="0"/>
<fov_marker_max bottom="1919" left="0" right="1087" top="0"/>
<fov_video bottom="1919" left="0" right="1087" top="0"/>
<fov_video_max bottom="1919" left="0" right="1087" top="0"/>
<transform r11="-0.740641130147863" r12="-0.6704153360235378" r13="-0.044654154988568895" r21="0.25251118212268814" r22="-0.3393170985114385" r23="0.9061467925015139" r31="-0.6226466246887545" r32="0.6598539110153292" r33="0.4205995683324882" x="-3216.86586729648" y="2231.1786368869416" z="2088.19103027083"/>
<intrinsic centerPointU="32845.335938" centerPointV="61120.328125" focalLengthU="107622.296875" focalLengthV="107616.632813" focallength="9.316055073242188" radialDistortion1="-0.046705" radialDistortion2="0.137622" radialDistortion3="0.000000" sensorMaxU="69568" sensorMaxV="122816" sensorMinU="0.000000" sensorMinV="0.000000" skew="0.000000" tangentalDistortion1="-0.000542" tangentalDistortion2="-0.000517"/>
</camera>
<camera active="1" avg-residual="0.504772" model="none" point-count="999999999" serial="cam04" viewrotation="0">
<fov_marker bottom="1919" left="0" right="1087" top="0"/>
<fov_marker_max bottom="1919" left="0" right="1087" top="0"/>
<fov_video bottom="1919" left="0" right="1087" top="0"/>
<fov_video_max bottom="1919" left="0" right="1087" top="0"/>
<transform r11="0.2586331447643361" r12="-0.875095795920923" r13="-0.40904308378315923" r21="0.49590579729377593" r22="-0.24310718522469382" r23="0.8336524076031634" r31="-0.8289670298870364" r32="-0.4184569804097585" r33="0.3710895025551282" x="-3758.720480260634" y="-1415.6654017496533" z="1881.7941041388026"/>
<intrinsic centerPointU="34566.796875" centerPointV="61697.9375" focalLengthU="107215.039063" focalLengthV="107213.070313" focallength="9.280801818890938" radialDistortion1="-0.047633" radialDistortion2="0.134667" radialDistortion3="0.000000" sensorMaxU="69568" sensorMaxV="122816" sensorMinU="0.000000" sensorMinV="0.000000" skew="0.000000" tangentalDistortion1="0.000277" tangentalDistortion2="0.000199"/>
</camera>
</cameras>
</calibration>

View File

@ -0,0 +1,30 @@
[cam_1]
name = "cam_01"
size = [ 1920.0, 1080.0]
matrix = [ [ 1203.246243533484, 0.0, 959.5], [ 0.0, 1198.3711959207449, 539.5], [ 0.0, 0.0, 1.0]]
distortions = [ -0.044787602246347216, -0.5273833010005556, 0.009327766682582903, 0.00034371130233083687]
rotation = [ 0, 0, 0]
translation = [ 0, 0, 0]
fisheye = false
[cam_2]
name = "cam_02"
size = [ 1920.0, 1080.0]
matrix = [ [ 1201.3535871331092, 0.0, 959.5], [ 0.0, 1296.9584035037935, 539.5], [ 0.0, 0.0, 1.0]]
distortions = [ 0.016997873879159856, 0.15076005731825853, -0.07849748162325841, 0.0031187917923049886]
rotation = [ 0, 0, 0]
translation = [ 0, 0, 0]
fisheye = false
[cam_3]
name = "cam_03"
size = [ 1920.0, 1080.0]
matrix = [ [ 1375.7450722547337, 0.0, 959.5], [ 0.0, 1367.6433832166495, 539.5], [ 0.0, 0.0, 1.0]]
distortions = [ -0.008547555195961013, -0.1321001559843561, 0.002017158533123475, 0.0033830082027901435]
rotation = [ 0, 0, 0]
translation = [ 0, 0, 0]
fisheye = false
[metadata]
adjusted = false
error = 0.0

View File

@ -0,0 +1,39 @@
[cam_1]
name = "cam01"
size = [ 1088.0, 1920.0]
matrix = [ [ 1681.244873046875, 0.0, 532.97369384375], [ 0.0, 1681.075439453125, 948.137390140625], [ 0.0, 0.0, 1.0]]
distortions = [ -0.000721609375, 0.002187234375, 9.5e-06, 1.078125e-05]
rotation = [ 1.6882754799999993, 1.0483220499999997, -0.41955852000000016]
translation = [ 0.3211048899999996, 0.9563320600000009, 2.8907130499999996]
fisheye = false
[cam_2]
name = "cam02"
size = [ 1088.0, 1920.0]
matrix = [ [ 1673.729614265625, 0.0, 534.494567875], [ 0.0, 1673.79724121875, 963.225891109375], [ 0.0, 0.0, 1.0]]
distortions = [ -0.000747609375, 0.00213728125, 1.51875e-05, 4.546875e-06]
rotation = [ 1.34975875, 1.5963809099999993, -1.1983285799999999]
translation = [ -0.1115282900000002, 0.7766184800000001, 3.0675519599999994]
fisheye = false
[cam_3]
name = "cam03"
size = [ 1088.0, 1920.0]
matrix = [ [ 1681.598388671875, 0.0, 513.20837403125], [ 0.0, 1681.509887703125, 955.005126953125], [ 0.0, 0.0, 1.0]]
distortions = [ -0.000729765625, 0.00215034375, -8.46875e-06, -8.078125e-06]
rotation = [ 0.8109654899999995, -2.1972129299999996, 1.3760277799999996]
translation = [ -0.7934803899999995, 0.32283594000000126, 4.353514870000001]
fisheye = false
[cam_4]
name = "cam04"
size = [ 1088.0, 1920.0]
matrix = [ [ 1675.234985359375, 0.0, 540.106201171875], [ 0.0, 1675.204223640625, 964.0302734375], [ 0.0, 0.0, 1.0]]
distortions = [ -0.000744265625, 0.002104171875, 4.328125e-06, 3.109375e-06]
rotation = [ 1.4045571699999995, -1.3887412699999993, 0.42535743000000026]
translation = [ 0.5030217200000006, 0.04894934000000085, 4.406564460000002]
fisheye = false
[metadata]
adjusted = false
error = 0.0

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 MiB

View File

@ -0,0 +1,105 @@
PathFileType 4 (X/Y/Z) Demo_0-100.trc
DataRate CameraRate NumFrames NumMarkers Units OrigDataRate OrigDataStartFrame OrigNumFrames
60 60 100 21 m 60 0 100
Frame# Time RHip RKnee RAnkle RBigToe RSmallToe RHeel LHip LKnee LAnkle LBigToe LSmallToe LHeel Neck Head Nose RShoulder RElbow RWrist LShoulder LElbow LWrist
X1 Y1 Z1 X2 Y2 Z2 X3 Y3 Z3 X4 Y4 Z4 X5 Y5 Z5 X6 Y6 Z6 X7 Y7 Z7 X8 Y8 Z8 X9 Y9 Z9 X10 Y10 Z10 X11 Y11 Z11 X12 Y12 Z12 X13 Y13 Z13 X14 Y14 Z14 X15 Y15 Z15 X16 Y16 Z16 X17 Y17 Z17 X18 Y18 Z18 X19 Y19 Z19 X20 Y20 Z20 X21 Y21 Z21
1 0.0166666666666666 -0.06499776880731584 0.9015132201416929 -1.4005735926016618 -0.03953823544185855 0.4928670195676177 -1.4488398285119384 0.043722239677177546 0.14392102600475692 -1.5950232476837605 -0.016930358013220913 0.06443271631692336 -1.4465817927970495 -0.023659406882450114 0.07649613531234134 -1.504955670851614 0.059985551516713226 0.10449043759251578 -1.6357123947948065 0.10412925185379157 0.9087452234460844 -1.4589563098305751 0.03046064437340479 0.5362746404904444 -1.2634604115734183 0.013825475610302005 0.18117305106442444 -1.1375271880024058 -0.022230130873009023 0.09538301202311449 -1.0124216532378894 0.002585112527233243 0.11342035499030148 -0.9900955931253046 0.02324341098571149 0.10281046967820899 -1.226940406627339 -0.028691117162967534 1.4640467742574672 -1.3966877075073407 -0.05637421589160283 1.7024200638322964 -1.2516128899060592 -0.05303931035925115 1.5572384516777784 -1.1970436207520263 -0.167442086648298 1.392947588015956 -1.4130332081978958 -0.27295446083447816 1.1455669190226074 -1.4797215568704447 -0.363078065347936 0.9229656892080893 -1.3696481415007873 0.1449346084625672 1.4142103983448608 -1.4453320504539162 0.277046555117822 1.1648130235865395 -1.4725039614568265 0.35463254276602035 0.937737730471396 -1.4579500717624179
2 0.0333333333333333 -0.07104221539355539 0.9043857718248944 -1.3935290026984142 -0.03880590057606989 0.49350054440359026 -1.446546013508329 0.042171226978639384 0.1456514778923865 -1.5952702035359851 -0.01726238596964083 0.06489677662461549 -1.4471475723743108 -0.023450287553422086 0.07552904378809105 -1.503324160367071 0.05909754623411686 0.10738317958411918 -1.636385597839711 0.10071723690326366 0.9082867353873171 -1.4465696738127223 0.03768271444426343 0.5291465823978587 -1.2425930838408041 0.011219622298424652 0.1726017604584103 -1.149628403484432 -0.023506949025403796 0.09085042852301174 -1.0128543960362535 -0.0017343510873553073 0.09846739691190844 -1.0095156760416237 0.019979298828053854 0.10451892856850689 -1.217635806244642 -0.023391910591897516 1.4638619184705208 -1.3856850474961646 -0.043915425552927254 1.7026548729321063 -1.2512145404992965 -0.037401443003060704 1.556111109962116 -1.1993429627695789 -0.16398493590089255 1.3941321603107173 -1.421332180236123 -0.27591600807308203 1.1487930488475269 -1.4801962058940867 -0.36572816332854563 0.9359377608915077 -1.360064165244055 0.1497446791896487 1.4100972780266514 -1.4377593851411463 0.2812419795732824 1.160081452984462 -1.4560701338967506 0.35944636657246337 0.9320159286708114 -1.4383584093560937
3 0.05 -0.07645198561087355 0.9069940575482702 -1.386021592722144 -0.03822743922871416 0.49409662221293527 -1.4441913244047033 0.04056369624494717 0.14734992674577058 -1.595505291073214 -0.017867244863870865 0.0654855226798009 -1.4470331418421103 -0.02356921111498618 0.07515743354397725 -1.502082608316526 0.058118048710675066 0.11063680953345591 -1.6371707607521462 0.09720199175920108 0.9080798844258202 -1.4346185098781312 0.04490296203786441 0.5227327874168545 -1.2224064807806698 0.008571391007630368 0.16532945071820646 -1.1604310273275136 -0.02531132479031102 0.08630322929983965 -1.0131031181997188 -0.006238421296742498 0.08592374531388872 -1.025611629506082 0.016708852486160237 0.10632323927914533 -1.209276544835169 -0.017674284528190354 1.463763485102624 -1.3748427241451058 -0.03143945788304647 1.7028880007733869 -1.2490642166058654 -0.02309858181356092 1.5552175702276105 -1.2002725099379585 -0.1600340329378888 1.3961490903770342 -1.4255817971801812 -0.27883793278844965 1.1531479796379254 -1.4784308333074834 -0.36904576783040505 0.9489834612138168 -1.3489596196539768 0.15414429522636164 1.406907438321292 -1.430821359357215 0.28512078106741273 1.1550622245569269 -1.4402949572925516 0.36357677312515185 0.9264522765266473 -1.419229549778169
4 0.0666666666666666 -0.08094892532689273 0.9091861124521746 -1.377468194814903 -0.038160165698748826 0.49484526715581 -1.441234779686723 0.03879492924977217 0.14901982475953318 -1.5955454652363399 -0.018881909828377105 0.06633042749208141 -1.4458379719028598 -0.0241442373481497 0.07564123177700784 -1.5011868517683955 0.057068706303409336 0.11435847102508064 -1.6381125543793322 0.09349261870507852 0.9080862478436125 -1.4231340468339015 0.05127714035925511 0.5176337434335632 -1.2039577995786594 0.005918700949447484 0.15991981061336222 -1.1692039690246165 -0.02723107242441973 0.08212569818720132 -1.0128943064007176 -0.010404052359602598 0.07722823888254973 -1.0365069303198478 0.013495919915038726 0.10816672049760752 -1.2022530830684044 -0.01119191972260288 1.4638138281852073 -1.3641796776284827 -0.018760524266627193 1.70309332480987 -1.2437223159825272 -0.010758345291826708 1.5548530875014261 -1.1980173904182616 -0.15506064269938122 1.3995831233356526 -1.4223134646599125 -0.2813836321306575 1.1596958040055125 -1.4723493709031408 -0.37358057986575954 0.9625872373796395 -1.3353134211822866 0.1580820088451117 1.4050796793839504 -1.424636248866424 0.2883791816150288 1.149695420975792 -1.4259619080587087 0.36642809816273175 0.9211729638771048 -1.4010367753851085
5 0.0833333333333333 -0.08470151873521665 0.9110495547770558 -1.3674809095177511 -0.03894896641965008 0.4961502747891749 -1.4368520197224879 0.036917927459728585 0.15080130153095586 -1.5951031291164626 -0.02017014446877074 0.06745612556398115 -1.4437141664554223 -0.025030194457627795 0.07678232736241629 -1.500339465930817 0.05614280237893545 0.11842494150824794 -1.6391919833894608 0.08958184945738988 0.9080475483985258 -1.4116845681379022 0.05535484128595056 0.5141475580229875 -1.1883663741642372 0.003393447312982566 0.1563370742902982 -1.175367988590263 -0.028649065098054875 0.07878718081263564 -1.0119670239897254 -0.013497949423113085 0.07248460554435787 -1.0420646396639421 0.01055340805538862 0.11004588519573731 -1.1962153616619389 -0.003790019429250883 1.4640130211304263 -1.3535789823238118 -0.005696975607219752 1.7032529297409906 -1.2346767255592295 -3.875543008163883e-05 1.5552161597151741 -1.1910520763070536 -0.1487803847373467 1.4045049379022188 -1.4104861891999845 -0.2832502518265761 1.1687911014875298 -1.4614300447072883 -0.3793869067269434 0.9773437232369573 -1.3189227211334373 0.16200912508988088 1.4044096989515966 -1.4183926306247607 0.29080763373070784 1.1442538746953461 -1.4136003231597327 0.36777743007215674 0.9162071448538645 -1.3839626556771796
6 0.1 -0.08810515478109157 0.9128997693016939 -1.3560727876162548 -0.04102364059663987 0.4985798979266883 -1.4298086221712711 0.035192185600523646 0.1529679110296584 -1.5940072159336929 -0.021385118036042334 0.06871831205429012 -1.4412958924988086 -0.02593309624978896 0.07815405958822522 -1.4994014052654077 0.05552809579873479 0.1227816673633633 -1.6403352315846642 0.08556212554777835 0.9077657586194066 -1.399587347191998 0.05601342361413439 0.5119959348035745 -1.1759813320846195 0.0011906620332082492 0.15429915219822005 -1.1786304131302505 -0.029898169926256372 0.07628492531462161 -1.0103373891830265 -0.015204954904712574 0.07109005353058655 -1.0431058095924837 0.008219007566918117 0.1122223639244033 -1.1905855175085234 0.004558912742279186 1.4643184333496837 -1.3428888780013986 0.007745672468595215 1.7033361094681325 -1.2227596748538667 0.009909925902068262 1.5562674900185531 -1.178962745002714 -0.14130075179981258 1.4103992235151253 -1.392631308163416 -0.28460334750694155 1.1797619838464957 -1.447461879381868 -0.38583180461352795 0.9937582970403883 -1.3001904793719405 0.16677659880148615 1.4040893790768796 -1.4103073178833734 0.2925268201732782 1.1390974599924175 -1.4030243386763852 0.36794749853726766 0.9113334128947934 -1.367797844492298
7 0.1166666666666666 -0.09148949719783087 0.9150605803002242 -1.3436322672639038 -0.045061238542007796 0.5026266704524465 -1.4185457968577802 0.03377363804587478 0.1557697794250094 -1.5923536424297597 -0.02224292170365026 0.06990110270720257 -1.4392546002206916 -0.02661495380244763 0.07940759164725038 -1.4985206571813947 0.05518094092829555 0.12753930627526466 -1.6413338978634817 0.08154622635761503 0.9072166355434923 -1.3863859678263668 0.05303985545055157 0.5104380830939487 -1.1661994082906901 -0.0005108844405011539 0.15343805964786597 -1.1794619095666172 -0.03187252470609607 0.07424943954689897 -1.0082459477849446 -0.01555450069530918 0.07248235709179052 -1.0406122542198295 0.006747304362786923 0.11496380281906403 -1.185305877799504 0.013796937132589275 1.4646939743320608 -1.332082163792745 0.021455943811477265 1.7032287790647167 -1.2096545098796674 0.019704011357948907 1.5577369030877173 -1.1628001336538047 -0.13303723368987724 1.4164484539672841 -1.37328408393954 -0.2858339383654483 1.1915917720752613 -1.4328794422864644 -0.391876776011465 1.012170377474731 -1.279875419716323 0.17321182530477483 1.4030326714397205 -1.3986203039858092 0.29405075542902565 1.1343730557072365 -1.3935212141307307 0.3676428239584251 0.9060552467745205 -1.3524131374704744
8 0.1333333333333333 -0.09499939536551551 0.9175971344590585 -1.3308069811211498 -0.05192274461133079 0.5085355561723321 -1.401395703592181 0.0323483967680352 0.15932352323791038 -1.590323563544894 -0.02274285825040212 0.07083458181490793 -1.4378743573039543 -0.026996815008268976 0.08037315824456627 -1.49793431780833 0.05483132314835247 0.13274863278032206 -1.6415621814697676 0.07744347841673718 0.9064821143471855 -1.3723243167937758 0.04694381698782685 0.5088146754851912 -1.158133571110094 -0.0016390140604383733 0.15342964172503762 -1.1787756093599127 -0.03472947529097448 0.07263152866302078 -1.0058838495900362 -0.014642300172025327 0.07635130700103983 -1.0352053083808477 0.006102625562542777 0.11809639315772671 -1.1811227536007805 0.023739781296445463 1.4651211919627478 -1.3212425030017392 0.035585983241017284 1.7027158127128525 -1.1967707784985024 0.02965228234462662 1.5591398489317867 -1.144862170744279 -0.12460997812656383 1.4219254611821466 -1.3563351722173003 -0.2872149969147141 1.2037502579160642 -1.4189220643486802 -0.3966979035713708 1.0327925926194033 -1.2588846672403042 0.18142499967175355 1.4004574244601984 -1.3832367568294668 0.29603438876976246 1.1299482273351478 -1.3842747536178173 0.3675987743381777 0.8997165274703649 -1.3379647785581807
9 0.15 -0.09857750917585235 0.9202327411674395 -1.318314785271811 -0.06226521521667137 0.5161483936053335 -1.3772537519906083 0.0301687490646826 0.16359239957345476 -1.5878463280797008 -0.023148847209485405 0.07145696931836536 -1.4369441959439582 -0.02716956240996365 0.08107136515057414 -1.497613595709524 0.054110064906094664 0.13829440897813228 -1.6399492645699767 0.07288836509202934 0.9057064484128327 -1.3584207418139873 0.03858555590093555 0.5070335155784254 -1.1512040663659437 -0.0022433190376355957 0.1540552476059861 -1.1773495590733836 -0.03752890231562689 0.07191283751547664 -1.0034211002661395 -0.012596804931062754 0.08237174854135743 -1.0272308772761043 0.006016924179486994 0.12108827026969371 -1.1789227781483296 0.034164120256227594 1.465573718590361 -1.3103626274829692 0.050578473064726105 1.70160723902864 -1.1846865872023948 0.040122382967265405 1.5598887807019857 -1.1276016487967533 -0.11664751504931789 1.4263817665501661 -1.3437465608524493 -0.2888887461359524 1.216204328570778 -1.4057729995298984 -0.40025374402296005 1.0559288108522793 -1.2378783384441443 0.1904328206177167 1.3962840509138863 -1.3662606431935724 0.29897273839638533 1.1254666362928891 -1.3745635582845304 0.3683027978963715 0.8918152160661225 -1.324281037874697
10 0.1666666666666666 -0.10204764769434616 0.9225561839068854 -1.3066732679615556 -0.07588707519129553 0.5243182736435127 -1.3473168977900234 0.026453008490375515 0.16844388950460346 -1.5845339442180777 -0.02382632041250201 0.07187022708383617 -1.435942163625703 -0.027396589865805905 0.08170693349342954 -1.4970799109192892 0.05246077193292376 0.14437629128663237 -1.6355880900852564 0.06767511582044385 0.9049861672041322 -1.3457701268902342 0.0291087358035665 0.5056904088475026 -1.1452031666012186 -0.002425170433077134 0.15518733906616347 -1.1756200535755967 -0.03878808626965971 0.07262615633669733 -1.0011946298814869 -0.009702652612269649 0.08968901670915913 -1.0176518310560172 0.006224984183254802 0.12350700417492788 -1.1790776104891645 0.04500976340679286 1.4659608048062653 -1.2991938518170496 0.06666290122168823 1.699919266354279 -1.173381340388293 0.05165320177078502 1.5595794938418295 -1.112590735659497 -0.10945114482669013 1.4296999591516906 -1.3353450744979398 -0.2908510469137625 1.229039680239472 -1.3933500774678778 -0.40337229582535294 1.0820171627716493 -1.217062880917018 0.19873050609651674 1.3909663420665122 -1.3505247104920568 0.30303730542216467 1.1204147489705265 -1.3637982072398556 0.36990356085108983 0.8823964965206873 -1.3103727508507534
11 0.1833333333333333 -0.10535707800882141 0.9243339027043135 -1.2960870538462042 -0.09118849111500732 0.5304184792599705 -1.3165203289405476 0.020710460179797937 0.17380997333885392 -1.5798865372825308 -0.025107320712804936 0.07238177870993204 -1.4343116095063515 -0.028111652845020044 0.08260795997163455 -1.4955625709231353 0.04912839084410681 0.15186084048540927 -1.6281683302018652 0.062093065906149415 0.9042225996360818 -1.3347265851937262 0.01993517789342246 0.5056958175073892 -1.1398802266309405 -0.002290316696953616 0.15672996025339817 -1.1737090835309523 -0.03721617507909655 0.07494480411176628 -0.9996926749038895 -0.006453879031756036 0.09652996953056475 -1.0087598520447134 0.006571865299344712 0.12519622533230895 -1.1814415682858872 0.05632659016981395 1.4660593355601412 -1.2874398245555994 0.08350383173510585 1.697873146265337 -1.1623600869466149 0.06461991679117939 1.5580953684178178 -1.1005846717322265 -0.10278484978830162 1.4320467888431436 -1.3291372015143739 -0.29285871717997036 1.2423306526125417 -1.3814546421751333 -0.40706529377811834 1.111169421318335 -1.1966792990375201 0.2054223251639423 1.384962824298598 -1.3375588013819604 0.30804686405180265 1.1142818473656495 -1.351542666841533 0.37217101686211196 0.8721088315106302 -1.2949180412123786
12 0.2 -0.1086970241815413 0.9256259631625756 -1.2865175298513571 -0.10601208597023849 0.5318236475664562 -1.2908318230652411 0.012798291029946274 0.17983469226512516 -1.5734103519647407 -0.027320010847118076 0.0734605783966445 -1.4316093299332848 -0.029919828214914436 0.0842167399293144 -1.4922165802567648 0.04350332514645946 0.1615467523238689 -1.6178619203264382 0.05651446308484378 0.9032431588839841 -1.3249830247523529 0.012113261014764445 0.5073240720459484 -1.1343128684674437 -0.0020176347362838975 0.15848910788503234 -1.1714871692800284 -0.03258065852040127 0.0785313090497316 -0.9992479614011112 -0.0033315004933396866 0.1007634697128435 -1.0033415811679347 0.00692374524430032 0.1262507546515392 -1.1851544457905818 0.06797180384440052 1.4655266805700882 -1.2751336137995937 0.10047481078255621 1.6956888169792164 -1.1505941859817432 0.07875095572627473 1.5553980361107151 -1.0917763811797332 -0.09600699286340511 1.4336558130123174 -1.3227549672518244 -0.29438726673753146 1.2561510203419943 -1.3695289376269577 -0.4117076030502567 1.1428037988120805 -1.1771739467765683 0.21086809258067724 1.3783654488659727 -1.3267893979535907 0.31361597574656513 1.1067531396551493 -1.3376128138968508 0.37453348345869003 0.8617666494734141 -1.2769425065833118
13 0.2166666666666666 -0.11231835752752022 0.9267037397119463 -1.2777358904896063 -0.11964960060178484 0.5286504181622373 -1.271877168040522 0.0028257703330316145 0.186855751670853 -1.5645057483750964 -0.031052632588713495 0.07562834703077655 -1.427391695911453 -0.033663017278334914 0.08708727695047183 -1.4862271979758348 0.03532720163529576 0.1732028988461484 -1.6053895645506358 0.050928240794511255 0.9020004396402673 -1.316136982634782 0.005639326991558289 0.509586755974032 -1.1270822105379523 -0.0019299900078290485 0.15999159788003264 -1.1688248423417305 -0.026104591270614878 0.08252435448876276 -0.999735803243548 -0.0004934992929058668 0.10133563273507608 -1.002770835207525 0.007095934602777485 0.12677768493616534 -1.1888384741207256 0.07950458004133773 1.4640224647437177 -1.262778441002858 0.11717933031278244 1.6934454388850069 -1.1369850128178154 0.09309670732777796 1.5514896209363398 -1.0853639698398987 -0.08842085441179817 1.4346689475860737 -1.3150500642476854 -0.2947617700357972 1.2704460631946526 -1.356696910187442 -0.4169297399392898 1.175924476133879 -1.158557282130637 0.2164696404441979 1.370911708662916 -1.316064794642632 0.31934864838730315 1.0977989972046585 -1.322221364731295 0.3762859637335171 0.8517882927824676 -1.2562849662549835
14 0.2333333333333333 -0.1162854981607975 0.9279248323809285 -1.2694939120885793 -0.13334606757195883 0.523896369637175 -1.2563014540135593 -0.009036060267742903 0.1952347312555853 -1.5524035329605685 -0.03738271855950619 0.07932650828276565 -1.420966035011952 -0.04040447641914017 0.09169359824308858 -1.4769158775610374 0.024649924088434166 0.18567808069675237 -1.5916988619438195 0.045078046700994245 0.9005044281266907 -1.30796194751272 -0.00035780932569267785 0.5110334717399895 -1.1176124002165861 -0.0023832227302647588 0.16038852703152626 -1.1661576186958411 -0.019517072441672112 0.0859554321621124 -1.0007186913941477 0.0023070067592395444 0.0990487518595622 -1.0060771483832014 0.006951196967750596 0.12634893327317373 -1.1920835317925083 0.09044867615964325 1.4613366006979178 -1.2510955066407223 0.1336702137109429 1.6911187826608818 -1.1211964684985785 0.1066803535785899 1.546608852762957 -1.0794794425526393 -0.07964229688577548 1.4351711178877264 -1.3065536196633707 -0.2934170371131227 1.284888808854919 -1.3423323044572277 -0.4217678083899477 1.209647702680501 -1.1403263620198638 0.22384918992325772 1.362289784022314 -1.302989532963777 0.3248819937882688 1.087663462359301 -1.3059948649869553 0.37688024176431717 0.8420160151919782 -1.2340629584269427
15 0.25 -0.12045696664578454 0.929567663976636 -1.2616901379118486 -0.14879027923253435 0.5207668748467262 -1.2400919433500448 -0.022806688130987223 0.20505205110417957 -1.5364524684389997 -0.047655299522160105 0.08474292447538874 -1.4114670271243437 -0.05118714792018843 0.09812575709398938 -1.4639001046583018 0.011727108752468225 0.1977681942706606 -1.5769914280760398 0.03884571858108523 0.8987120200069298 -1.3003672728885516 -0.007018753985087103 0.5109518714326976 -1.1069479550805525 -0.0035221827177915966 0.1587270246891128 -1.1646657309360888 -0.013708286389216994 0.08833121733427438 -1.0018594928186364 0.0056567240235153166 0.09562790439370725 -1.0112521070516036 0.006540268334766407 0.1240349077359674 -1.1962560198021326 0.1005764837463818 1.4574552620111645 -1.2405280144152881 0.1501768416641998 1.6885809368987623 -1.1041261923697772 0.11906503222434452 1.5411935230853224 -1.0722681540828147 -0.06977133506623347 1.4352909960241278 -1.2985863232917272 -0.2900529835101217 1.299017897208429 -1.3265903361005282 -0.4247877898233503 1.243350698566391 -1.1220872882053619 0.23380317652981375 1.3525456547079986 -1.286584217180733 0.3298478679935717 1.0768131924566549 -1.2897196617611817 0.37618156963045857 0.8320930200473242 -1.2124557880380897
16 0.2666666666666666 -0.12466974448002127 0.9316909260160654 -1.2542090989080592 -0.16690317160328455 0.520903518291795 -1.221576664309245 -0.038835420245870375 0.2158543029272106 -1.5165311916257047 -0.06294594754344474 0.09168727958113035 -1.398314358457667 -0.06686463118557417 0.10601009906008019 -1.4472390054529536 -0.003272158993240043 0.20875737343084277 -1.5607560887034537 0.032465568039572054 0.8966059832014155 -1.2932219274341166 -0.015099791743690725 0.5094943840056895 -1.0968274071471527 -0.0051834045189007244 0.15471897951161057 -1.1652723095715838 -0.008841322604945426 0.0897214659745398 -1.0029344821534836 0.010078506623937935 0.09215682280504343 -1.017281768810678 0.006092000636722673 0.11948260370130588 -1.2029037132525529 0.10995335585592772 1.4525765784797227 -1.2308766151513362 0.16655384534260853 1.6854673353817937 -1.0876639144989535 0.13018718802050927 1.535639110523916 -1.0630357501083894 -0.059205061364134025 1.4352919593771174 -1.291469535909818 -0.28469972264687976 1.3125421587040973 -1.3103345294068458 -0.4247700670583809 1.276388200702837 -1.1038701128241901 0.24567007019656809 1.3422991708564953 -1.2679774769686718 0.3339232997522466 1.065830023662229 -1.2738612698715077 0.374531842450538 0.8218982541577333 -1.1935873216164585
17 0.2833333333333333 -0.12885582394501016 0.9341849033176203 -1.2468134328030585 -0.18779908333581863 0.5245871150633576 -1.2014155825280892 -0.05767708623160099 0.22684875995504988 -1.4932502660587568 -0.08361380798580403 0.09958925710820257 -1.3813647510170508 -0.08805901518502325 0.114712208865229 -1.427412296182124 -0.020385322792260588 0.21825364825927185 -1.5425455970788036 0.026497045241356234 0.8943152592934946 -1.2862565362409537 -0.024594180455634367 0.5072205707434451 -1.0882582407262615 -0.0070693247018595315 0.1492066530995978 -1.1676104330633952 -0.005351192584427616 0.09050960441191877 -1.0035121250843924 0.015336290306235486 0.08893895346443545 -1.024009271863842 0.005794406703040713 0.11378740670668827 -1.2116411151138924 0.11886113676267313 1.4470755765646417 -1.2214012482240224 0.18206834240776104 1.6811839557131882 -1.07374543936252 0.1400378335456122 1.5301267642266392 -1.0523590128152691 -0.048431237996667306 1.4354374042275237 -1.2842425645406899 -0.2777873704374877 1.3253522184776687 -1.294680741346003 -0.42137498987493727 1.3078119655011504 -1.0863528567408949 0.2577486306288888 1.3324405826197965 -1.2493159837607533 0.33697214828465566 1.0552269961432583 -1.2582720432184702 0.37243105656060926 0.8115720348690179 -1.1785497339472282
18 0.3 -0.13299370488172094 0.936938224591769 -1.2393683587597424 -0.2110610099938269 0.5314106585792752 -1.181282605052467 -0.07976248934609835 0.23726745935209062 -1.4680477787528936 -0.10896483781033355 0.1075984204858469 -1.360531549397216 -0.11490789331818677 0.12346437396210448 -1.4050451029081379 -0.03970257355769089 0.22584607070482768 -1.5222814549253403 0.02161959897967169 0.8920990700808399 -1.2791152083068253 -0.034727622674030706 0.5048527795684081 -1.0807918533571457 -0.008971234752915724 0.1435645640574837 -1.1704137572658215 -0.003785590744817306 0.09110096171945331 -1.0031301263958063 0.020415563647328074 0.08634408896326096 -1.0306843456972055 0.005488045540533047 0.10878561487467353 -1.2200922667329404 0.12763346635428396 1.4413931886062117 -1.2113785727911073 0.1958408378521477 1.6752236484154326 -1.0632544583986676 0.14874793579061935 1.5245678916478826 -1.0413061194186015 -0.0379801416112693 1.4357085808847663 -1.2762826729849397 -0.26997086196869624 1.3372377890466682 -1.2806965843908973 -0.41493547911652806 1.3365459091838818 -1.071130795791078 0.268465532169296 1.3235491932796266 -1.2321948907098568 0.33912453454057373 1.0453053117945004 -1.2424497229228464 0.37008251670107656 0.8014550048580259 -1.1671656101977108
19 0.3166666666666666 -0.137057751646128 0.9398714063017328 -1.2319381598586487 -0.23587993517869033 0.5406940072125479 -1.1624018662342037 -0.10514341207828601 0.24628636620454195 -1.4426253041394852 -0.13744315668509136 0.11480908636634343 -1.3356367897107937 -0.14680968340381317 0.13140051548754184 -1.3805358149839304 -0.06163366968510666 0.23115289565352254 -1.5006371478111635 0.018297894729294443 0.8901547804170519 -1.2713317071048453 -0.04399417006259239 0.5031328792362137 -1.0725898410496362 -0.010836134769388361 0.13889613057500902 -1.172435506355916 -0.003944360610837947 0.09158877420708164 -1.0018076289772344 0.024240910697972722 0.08473562644570516 -1.0361638573953715 0.004649178005084069 0.1055649497145234 -1.2257427886170937 0.13642993690889507 1.4358357986634556 -1.200670379220982 0.20740797940645594 1.6674412429136651 -1.0557438274677609 0.1567157244282392 1.5187281355538096 -1.0306142607005973 -0.028228742978461445 1.435865105986172 -1.267797872421102 -0.26169108417220066 1.3477865160776226 -1.2692030079541106 -0.40607083632558827 1.3620233640442914 -1.060460386294507 0.27711283171464285 1.3157129682316255 -1.2171746561626882 0.340721516842075 1.0361266820630346 -1.2260577766370855 0.36730912526448206 0.7921221200955498 -1.1583256701974607
20 0.3333333333333333 -0.14103492743359908 0.9428310075096435 -1.2246667346347369 -0.26116841652499745 0.5516242305326275 -1.1450043331782607 -0.13352989927567066 0.25293593094880096 -1.4174618044283545 -0.16786387896489696 0.1206073761757288 -1.3069532178399543 -0.1825733963628859 0.1378030631760828 -1.3539627213529295 -0.08736822212131132 0.2339560828367051 -1.4785531776157945 0.016552014215095164 0.8884265901556346 -1.2622716593795773 -0.050862052388086706 0.5027465895985554 -1.0612868668317776 -0.012663529440146669 0.1359398162763819 -1.1728142966029542 -0.004994922731788294 0.09171321075373512 -1.00004369874323 0.026228982343435864 0.08397791639370643 -1.0399414442527706 0.0028481362504872466 0.10419986987792021 -1.2275586021959979 0.14516408663681582 1.4304222262916855 -1.1897204922180085 0.21690853647247157 1.6580063680167458 -1.050074383099625 0.16449516184199237 1.5124338701841238 -1.020447128810577 -0.019250637483892215 1.4357588314976728 -1.2588959542266365 -0.25302484919513946 1.3565819507258523 -1.2603647715520998 -0.39582208222948917 1.3846023428424845 -1.056295946737269 0.28374863751247714 1.308713706023263 -1.2041202913285074 0.3421593663187349 1.0274860159813721 -1.2092759822567352 0.36375409490974314 0.7840453482930585 -1.1508953040889143
21 0.35 -0.14495538402385036 0.9455629683576855 -1.217841054496985 -0.2857078000839965 0.5633144945012001 -1.1287907593163609 -0.16448815651904575 0.2565216688371843 -1.3919647614247834 -0.20019145147259879 0.12505124673463733 -1.2757170142265044 -0.2208612439245846 0.14230937850076938 -1.3253975396129651 -0.11824216629683683 0.23405616766212362 -1.4555078123185134 0.01619198271289795 0.8866801443895551 -1.2512752852057338 -0.05499203174954526 0.5043474765796364 -1.0454033345742673 -0.014322248894858638 0.13516974067519336 -1.171226097790139 -0.0061496886331458955 0.09121212269780012 -0.9984375914542083 0.02648423350588746 0.08363490792031672 -1.0421656575534555 0.00020684775615135005 0.10451882583575958 -1.2261214667434102 0.1535930162641852 1.424968238026986 -1.1791562210962747 0.22504708902831766 1.6473835981537557 -1.0448833224700114 0.17259972535282225 1.505689919229768 -1.010521550657182 -0.010935840984384737 1.4355021245504316 -1.2489651031413969 -0.24403836913625815 1.363475107060934 -1.253589706889474 -0.38570127542713517 1.405130113873831 -1.058816327851167 0.2888478494578563 1.3021688055549108 -1.1925889801572611 0.3436643995224368 1.0189952565424094 -1.192890727325408 0.35910494522803343 0.7769836503173003 -1.144324654705434
22 0.3666666666666666 -0.14890280337101483 0.9478085936843883 -1.211965480171271 -0.30840829232990347 0.5750114834432993 -1.1134563091374359 -0.1975889279857505 0.2569075239515463 -1.3667435101587035 -0.23454221857733795 0.1288428373000454 -1.2438546904451893 -0.26058026796936523 0.14485700333079796 -1.295210050201822 -0.15413816831235602 0.2314328526156177 -1.4298986912312046 0.017177940400576214 0.8847359983938804 -1.2378632719009457 -0.05728474851018255 0.5082362316524492 -1.0253419573505902 -0.015511577993223117 0.13653948465467086 -1.1680818290951673 -0.006988538657215989 0.09003239458210612 -0.9973557512787525 0.025754452648850557 0.08339568683107236 -1.0430959321879494 -0.0026048462092892986 0.10633906856297091 -1.2228709269800169 0.16145432745573 1.419312226542075 -1.1695967014646427 0.23290150983751898 1.6364735564569328 -1.0387031294481675 0.18128137379161208 1.4987445587784582 -1.0003132000414867 -0.0031396746440991987 1.4353416505469883 -1.2370982489426423 -0.23512124011720575 1.368776832945523 -1.24804400022184 -0.37703245436353217 1.4240532228766136 -1.0655672037175823 0.29303619804689707 1.2956919331163586 -1.182176266198903 0.3450871061637294 1.0105271272999123 -1.1780547991449102 0.35345261956793295 0.7699485643799047 -1.1377621207158786
23 0.3833333333333333 -0.15296033534079392 0.9493629806328309 -1.2075150148839326 -0.3286289563353141 0.5862825510974892 -1.098922518640464 -0.23233244851128712 0.2544291176867305 -1.3434489999539938 -0.2702053358806926 0.13256508120862903 -1.213219773244032 -0.3009836284191788 0.14575188603148895 -1.2640949099120138 -0.19321489470844672 0.22685246329535363 -1.4015557937466296 0.019414758720144896 0.8825703153263321 -1.2220438863608596 -0.0587689558449469 0.5138305815771748 -1.0032621233899495 -0.0159583321540165 0.13931748061694638 -1.1643480761146037 -0.0074829115942437775 0.08823033929360106 -0.9968045489315334 0.025006131155442726 0.08318041997044391 -1.0427819236733245 -0.004771353478007185 0.10916507890680767 -1.2192866344477329 0.1686215581642575 1.4134317978484947 -1.1614600684412881 0.24149039255203375 1.6264410073108664 -1.0304831430730435 0.19032034127235484 1.4920860690187558 -0.9895240232864473 0.004211581402650393 1.4352698206873817 -1.2233644333971376 -0.22686892191600644 1.3731845873939053 -1.2430481981328954 -0.37018066614671763 1.4410464804438714 -1.0727692993061744 0.2968771171436121 1.2890737610711163 -1.1727509844365347 0.34593380629816295 1.0025097701709123 -1.1657233382205774 0.3474994389155451 0.7618693605473696 -1.1293760928031875
24 0.4 -0.1571387634699262 0.9501030787920461 -1.2045860924039793 -0.346258100313823 0.5968966232881632 -1.0854565965123892 -0.2680972569663575 0.2500342968540357 -1.3220242298250946 -0.3062511191830168 0.13610921616489158 -1.1848875930885885 -0.34152005755425974 0.14588396690078634 -1.2330330287874378 -0.23359583957087857 0.2218705450905717 -1.372164085424907 0.022248287811400754 0.8803038935174685 -1.2047806010107973 -0.05989974811216856 0.5198013596110123 -0.9820065512677241 -0.015597630054804499 0.1424334540331123 -1.1609271124505736 -0.007870381416002735 0.08597348232293132 -0.9965684713852065 0.024723404775016406 0.08293934900855308 -1.0412590652078495 -0.005831491689911151 0.11213465925608765 -1.2163105949590491 0.17517013826845193 1.4073896530559293 -1.1546361607053242 0.2514086630997211 1.6182168640316872 -1.0199789963773642 0.19910535760964185 1.4862474228310965 -0.9785416269297749 0.011148205477226388 1.4349018382326224 -1.2089083544295212 -0.21973324897261048 1.3774714238471661 -1.2381529722502962 -0.3645427808660608 1.4555787107945872 -1.0779121708445079 0.30069194448399933 1.2823033523569114 -1.1643950179694882 0.3457453322216558 0.9954197043303682 -1.1561724438147045 0.3421661345322473 0.7523002450797907 -1.1178327902078833
25 0.4166666666666667 -0.16137172266158964 0.950111973094877 -1.2026545195025637 -0.3615765457309191 0.6065235521204816 -1.0735756033608517 -0.3045903914299626 0.24544010185011844 -1.3005550933094314 -0.3426521320641597 0.13924462129981852 -1.1586898070941019 -0.3817746346771083 0.14658924960432745 -1.203179412731319 -0.2745627900451688 0.21788951757057992 -1.343528501245719 0.02456300378065626 0.878148009870446 -1.1878173657248436 -0.06069491271540126 0.5247976789501865 -0.9638416082407809 -0.01457942544640761 0.14495508338899651 -1.1582566336322218 -0.008442849371649777 0.08362456690347207 -0.9963862478176776 0.02463672331596615 0.08251045775859482 -1.0388836444295988 -0.005855620448679367 0.11433406888807095 -1.2141975256379747 0.18129778393629645 1.4012338872702632 -1.148541403291354 0.262737906236678 1.612118659016819 -1.0074466001182976 0.20704840995296733 1.4814826564086643 -0.9682209462647116 0.01782874486780388 1.4338881074244865 -1.1946354969482733 -0.21381924518985307 1.382270369494013 -1.2331421361043124 -0.3591774273724932 1.4677209155954447 -1.0807445999761385 0.3044725922993978 1.275479101182261 -1.1571642518500045 0.3444309917171692 0.9891686590804709 -1.149005539463873 0.33799228391158237 0.7417457685120539 -1.1037668171653354
26 0.4333333333333333 -0.16550268830262785 0.9498105197059807 -1.2003209919118734 -0.3751501772756496 0.6147348922124197 -1.063633872061759 -0.34200218651557535 0.24259993366103522 -1.2777090719754438 -0.3801610377636155 0.14252487693526306 -1.1334503579190724 -0.42157684378234567 0.1490197590104368 -1.1755285644106568 -0.3160499713008529 0.21557303681058124 -1.3166505742563024 0.02549873097762447 0.8762830252201073 -1.1727261983639865 -0.061149825388912164 0.5279435262093933 -0.9498483465768179 -0.013234766119063051 0.14631822631036087 -1.1563806465179034 -0.00930790723095267 0.08158196632109913 -0.9960721533400847 0.02428381308061941 0.08178812118382674 -1.0362351290717937 -0.0052263566765378714 0.11517286487215608 -1.21274276453412 0.18716793011034405 1.3949653429787092 -1.1424996649384083 0.2750518846948281 1.6077258145918176 -0.9934804932622104 0.21390214689034945 1.4775769920287019 -0.9592296147934749 0.02451382958329285 1.4322259945917746 -1.1808002337234247 -0.20890074201589182 1.3879759275080545 -1.2279475382170812 -0.3534484416345282 1.478214505316964 -1.0820197710843817 0.308016685182771 1.2686990630018113 -1.1510183854912235 0.34220216765441697 0.9832523635919622 -1.1434926204484388 0.3349824862483576 0.7313900660475611 -1.0890030615661532
27 0.45 -0.1692285906719539 0.9499206115896183 -1.1953334855696915 -0.38768683642599655 0.6214344105535407 -1.0553193852184473 -0.3801525923023058 0.2427152469701729 -1.25387395295664 -0.41894125757284817 0.14731680655465176 -1.1080432212733875 -0.46077798880094983 0.15369087031495757 -1.1506921272747241 -0.3577973825620641 0.21526906333613752 -1.2919484419210512 0.02489300582431807 0.8747972183241135 -1.1604140054757348 -0.06148720962606934 0.5289605210126169 -0.9400369083414268 -0.012015141976125658 0.14638612879120083 -1.1551684701013072 -0.010302725999369784 0.08005190689909393 -0.9956464484141911 0.023607190604035162 0.08085203061893245 -1.0338482142813878 -0.004391583290846766 0.11458542147224109 -1.2115735729744483 0.19276481676911453 1.3885895259952692 -1.1360117147994908 0.28750531453350525 1.6040242439721741 -0.9793248846085161 0.21978808677674389 1.473936032595071 -0.9516888126371171 0.03132949470084523 1.4301201556740917 -1.167527950073826 -0.20457211282576196 1.394611295278559 -1.2225761452870465 -0.3472856580041395 1.4879292785310017 -1.0821910428431871 0.31120093877914107 1.2619793735234455 -1.145928567953814 0.3394901427911887 0.9772065672226905 -1.1388054705623691 0.3328678478360819 0.7223771831013663 -1.0749024934810942
28 0.4666666666666667 -0.17220721227509608 0.9511147769587118 -1.1858394140002044 -0.399761374755237 0.6271489816056319 -1.0476089294039856 -0.41795185833573045 0.24582960167126505 -1.2303459576733937 -0.4578708947588279 0.15486485626266974 -1.082427910374431 -0.49873510505014435 0.16070427042743446 -1.1288774853459946 -0.39918925506068337 0.21728366709104346 -1.2695168878446221 0.023041966510274854 0.8737013800574613 -1.1513164778229161 -0.062057944619313014 0.5281071774692847 -0.933733770844139 -0.01130887232164006 0.14543167067115775 -1.154479884591467 -0.01115863697035817 0.07901991126483898 -0.9953786711265037 0.022898008003659435 0.07987056998691965 -1.0320757918960086 -0.0037334675163482904 0.11299556864562459 -1.2104025790482384 0.19793611027830132 1.3821989529128946 -1.1288788290773615 0.2992195520955285 1.5999051571624172 -0.9666031860127513 0.22515517394017254 1.4698279959687135 -0.9452296923270671 0.03815843087454363 1.4277543122694445 -1.1550464727804017 -0.20044354554191868 1.4018194698122968 -1.2170294134952733 -0.3409253486664005 1.4974885940470628 -1.0813714900087845 0.31408837128884 1.2552773251295968 -1.141805607013806 0.33702794565489486 0.9707987899864224 -1.134100673304955 0.33140169254863255 0.715269686590745 -1.061769604049865
29 0.4833333333333333 -0.17438549991499616 0.9534816411591276 -1.1722212358491673 -0.4116292758409577 0.632713836818449 -1.0394885167200365 -0.4540534537926984 0.2513706709814568 -1.2080908991183474 -0.49513328402612605 0.16524330172417256 -1.0580146774325923 -0.5343754956239649 0.17006268299957816 -1.109770746131554 -0.4393675644693804 0.22156993095420524 -1.2491929277588394 0.020275424566475398 0.8728784843978026 -1.1453990971181602 -0.06302240618134627 0.5259275056980355 -0.9299797838438664 -0.011244961475174809 0.14399556627838292 -1.1542532423245413 -0.011677868463193773 0.07834963060538383 -0.9955992150207831 0.02243495603834037 0.0790285050062306 -1.031015140460338 -0.0034751061349459636 0.11103692322307322 -1.209201278809181 0.2025958994881845 1.3759965272057342 -1.1212523444188978 0.3098088061613678 1.5948064992193196 -0.9561358167300672 0.230692229068639 1.464561499389152 -0.9392537257002003 0.04468894716728409 1.4252172716662153 -1.1437554350253378 -0.19633817865683703 1.409052742624479 -1.2114349666781914 -0.3344605925100248 1.507263284113847 -1.0796442604147591 0.3168219808223695 1.2485808547534702 -1.138292982282328 0.33566296815720537 0.9639993890313207 -1.1287070244117454 0.33048962808809024 0.7100100989433135 -1.0493310435247891
30 0.5 -0.17616706514134178 0.9564401793810295 -1.1569712870343716 -0.4232975896830487 0.6386812774831 -1.030922457287346 -0.48762232752232376 0.2588057754620611 -1.1872662116457067 -0.5291011309914728 0.17724381521200736 -1.0370447431862977 -0.5669083224350545 0.18160791738868526 -1.0925940988317198 -0.47730821651149424 0.22771880525020155 -1.2306310044722517 0.016919270901108136 0.8720545447747802 -1.1417904241112808 -0.06415224087635081 0.5229506522174758 -0.9277834450804232 -0.011680026639808948 0.1426265862281444 -1.1545286526790512 -0.011760662581373914 0.07787362650893298 -0.9964061221870085 0.022310301622193086 0.07848847231492243 -1.0306010738214244 -0.0036248983373178326 0.10923757568801747 -1.2081752976812359 0.20676302707081062 1.3702374256563954 -1.1134862390666027 0.3194949138084543 1.5888948189762115 -0.9474313274988458 0.23705132130246837 1.4576432414383613 -0.9331986107301584 0.05049380488766261 1.422552597593487 -1.1343341982376378 -0.19242924999111768 1.4157791005899913 -1.2065043162347249 -0.3277138727180049 1.517480531712773 -1.0769290232666775 0.3195009773741981 1.2419671959500729 -1.1348204439720277 0.33597097402570253 0.9568546355290547 -1.1223728354226197 0.33014610033681085 0.7061358155627792 -1.037382909238935
31 0.5166666666666667 -0.17813722978947405 0.9592799586083034 -1.1426283628984135 -0.4346561039215011 0.645022008174775 -1.0231302543799075 -0.5183844708113974 0.26768621218202454 -1.1677298253641553 -0.5590804493920236 0.1891208392595802 -1.0213502190257764 -0.5962710868325498 0.1948257043376767 -1.0765565512867992 -0.5121978166286739 0.2353233888357162 -1.2133965860336022 0.013459300331265012 0.870941974722134 -1.1387176626982123 -0.06492292824169531 0.5196103362794935 -0.9262417867081927 -0.012340568935708 0.14164048910446655 -1.1553029456801043 -0.01135296171040618 0.07744452774824875 -0.9976315743642294 0.0224700361182733 0.07830671161234631 -1.0307659415627128 -0.004000087211861312 0.10790882229391724 -1.2075982273902415 0.21043967850785741 1.3650921352697463 -1.1058256325053282 0.32869937296589147 1.5825320724313645 -0.9397139870882172 0.24461453951269646 1.449016683593477 -0.9268661041284753 0.055205581149298515 1.4198318601802153 -1.1275739812573096 -0.1891702509523743 1.421629455919092 -1.2034073879720513 -0.32041046807744444 1.5282373078322269 -1.0729328841722836 0.32213646361426207 1.23558264864564 -1.1308423609432312 0.33798773468893684 0.9494069775151456 -1.115465795356676 0.3304031534154926 0.7029397207810579 -1.0260999875194807
32 0.5333333333333333 -0.18063742453722267 0.9616330360010504 -1.130510540138291 -0.445554746548859 0.6512238397731714 -1.017718988674522 -0.546377504443311 0.2774322177802655 -1.1496232657816958 -0.5856098628833625 0.199672826126142 -1.0111359106370832 -0.6229828372020325 0.20882844567212303 -1.0612819622481167 -0.5437946253764622 0.24409141003860244 -1.196979500263285 0.0103625158495278 0.8694229673608412 -1.1342696441625244 -0.06483321421547408 0.5163050073056561 -0.9246810703148163 -0.012962457004021448 0.1410396028463728 -1.1562904995395937 -0.010467030485478451 0.07696405510112957 -0.9990511948423826 0.022759151949841034 0.07840822763683708 -1.0313997330472466 -0.004370766194689531 0.10716605028734924 -1.207637766161146 0.2136152237785324 1.3605002807816189 -1.0983117669035205 0.3376620182277017 1.5757129194467092 -0.9328299365373378 0.2535524222576034 1.439142255606936 -0.9207562135313564 0.05874735971381913 1.4171583110807304 -1.1240178139533266 -0.18699418116771127 1.4264669623490422 -1.2028670159339627 -0.31234310603620824 1.5394539318044393 -1.0675455867644197 0.32468724659718345 1.2295745225282937 -1.125908811634293 0.3412013870523464 0.9417705820384757 -1.1089635843047647 0.33126598894029385 0.6995496659692088 -1.0161237430943897
33 0.55 -0.1836728131447684 0.9634299681223784 -1.1209796534750218 -0.4558967612832968 0.6567633303395477 -1.0152356897786206 -0.5718988855142102 0.2875007149664766 -1.1332121236653045 -0.6101042929378647 0.20933907558628828 -1.003981686011523 -0.6477978675120395 0.22273201357442118 -1.0467954263297592 -0.5723392612162478 0.25373601349038344 -1.1809134909476289 0.0077803058492635895 0.8675718454941206 -1.1274180257350495 -0.06379494866163879 0.5133376119284316 -0.922821692964788 -0.013415210938897908 0.14066962770856395 -1.1570045138228746 -0.009308508390104827 0.07638850439280755 -1.0004826055750327 0.022945386608837704 0.07862695255213116 -1.0323319411461982 -0.004671026804632846 0.10701604636192151 -1.2082397279292147 0.21638132070923644 1.3562001053307262 -1.0909840970632876 0.34639330443812116 1.568189819907681 -0.926912361604912 0.2638518312353467 1.4287964134439946 -0.9157490185776078 0.061367325493049206 1.4146183717991387 -1.123647458309927 -0.18599718591288902 1.4303725693494729 -1.204671680511918 -0.3034590807828415 1.5509531155725147 -1.0610635543432771 0.3271493609033501 1.2240616400082809 -1.1196482188983294 0.3449864284418125 0.9342085517170501 -1.1039338503030782 0.332691183785377 0.6951286437598699 -1.0083844160652358
34 0.5666666666666667 -0.18716157224025687 0.9646181638761033 -1.113966035737067 -0.4656676698242411 0.6617195897769295 -1.0143145972163912 -0.5955082334150951 0.2977725485319792 -1.1183523009451015 -0.6341720090228027 0.22004333019549938 -0.9956232078361744 -0.6714648661187543 0.23610955232372927 -1.0331932630742962 -0.5984209332368488 0.26392850220804154 -1.1650747045430814 0.005500744529203844 0.8656177013919791 -1.1186515090555913 -0.062339112158398484 0.5109017071560061 -0.920863627921426 -0.013769603945578251 0.14048844370830707 -1.1571546652537668 -0.008259171584943678 0.07573209512413095 -1.0017208610529713 0.02282839231207334 0.07873744330348922 -1.0334876047029535 -0.005047433164054228 0.10744785661597307 -1.2091258979380934 0.21893862870889327 1.3519202867320064 -1.084015613946508 0.3547644476891759 1.5599240483534338 -0.9220425114505817 0.2750704257354466 1.4187979799839745 -0.9122335925678904 0.06348174937946936 1.4122875980049376 -1.1253457781598266 -0.18584940656324223 1.433655222587456 -1.2077203615154675 -0.2938455929579225 1.5626237154165552 -1.0538305947201785 0.32960329497890967 1.2191159381875951 -1.111869243458673 0.34902803544623107 0.9270197079916543 -1.1008790225136538 0.3345926761392384 0.6893038737727529 -1.0033284697360658
35 0.5833333333333334 -0.19107463938875324 0.9650814199529038 -1.1091825526953558 -0.4749366923762972 0.6667430042756993 -1.0124083983592196 -0.6179095859990538 0.3085890185161613 -1.104363965047031 -0.6590912230562385 0.2335576894331518 -0.9830652122120662 -0.6946632335381209 0.24903587078014897 -1.0204214878134001 -0.6229344856097466 0.27435466576507256 -1.1495684367918577 0.002980829168599044 0.8639123430270406 -1.1099753330144582 -0.061416523449248216 0.5092260661797985 -0.9192795678840537 -0.014200829038348947 0.1406415577623876 -1.1568602508649604 -0.0076500211743894975 0.0750888373951777 -1.0025050061445488 0.02236305930380132 0.07855059181038368 -1.0348510362140337 -0.00567062882406423 0.10841997645945362 -1.2099407629386538 0.2214667955627006 1.3475267378419553 -1.0776320109720627 0.3626378013636356 1.5511670092863774 -0.9184980932338258 0.28619946884455444 1.409833278691886 -0.9098175038778226 0.06553551089958491 1.4102937427911437 -1.1266703977887418 -0.18591329457317213 1.4368572644774078 -1.2099165685411968 -0.28357087292282424 1.5744323461434138 -1.0457865558927246 0.33206702553793804 1.2147344120351018 -1.102841970198101 0.35321890051331734 0.9203964881071885 -1.0995392935323847 0.33690380243938395 0.6823684822252999 -1.000405036893103
36 0.6 -0.19522754128433933 0.9648551695844205 -1.1060449892437803 -0.48383621521899944 0.6723789618271737 -1.0076014422739505 -0.6398245649903973 0.32037994236778444 -1.0903642783807723 -0.6853684789514557 0.25008648189462657 -0.9667126894263527 -0.7178949698817534 0.2618365241364205 -1.0080950324947353 -0.6468110642082296 0.28495271238896236 -1.1342560384868108 -0.0005031663568064825 0.8627468120071711 -1.103839465381951 -0.0618306114297024 0.5084707962556143 -0.9182354253341191 -0.014827745319863512 0.14126423034571475 -1.1564661990763576 -0.0075993269887475465 0.0746151421318783 -1.0025947007786653 0.021648629943546813 0.07811949452463299 -1.0361987519150442 -0.006584947536084948 0.10987613227520655 -1.210445961844811 0.22406575448315016 1.3430317194992394 -1.071906787082102 0.36997778722354085 1.542228777167002 -0.9167864599768262 0.296076205022472 1.4023347629478236 -0.9077649073073296 0.06779155678991335 1.4086657423213331 -1.12528085652448 -0.18548843319623473 1.4405793078095845 -1.2087609000991473 -0.27254135874101104 1.5862568956109273 -1.036483464258156 0.33417766925772535 1.2108307603912565 -1.0939116186665336 0.35740542847704626 0.9144125891059656 -1.0992140586631483 0.3396911630328012 0.6749149039985857 -0.9986763129586866
37 0.6166666666666667 -0.19892585694318954 0.9644530382906034 -1.1031088701469307 -0.49233220334583033 0.6787616402668905 -0.9994991666075729 -0.6617994074030435 0.3332726479478962 -1.0755830161133033 -0.7123367509163409 0.26823112969820795 -0.9487901382553838 -0.7410459271311602 0.274759914634708 -0.9954480893328711 -0.6705458407964959 0.2960861491722606 -1.1187409682018927 -0.005419210119161703 0.8621567184263227 -1.1015332024730442 -0.06360361843514135 0.5084314298235245 -0.9170437251903438 -0.01561107622752151 0.14225903113865773 -1.1561149996606566 -0.007994062274798246 0.0744953714601741 -1.0019052804224418 0.020891259690377483 0.07779765601315677 -1.0370351290693565 -0.007710165023476361 0.1117469505041467 -1.210490695816562 0.22678312493744138 1.3385373855764158 -1.0665266454495645 0.3768387476007059 1.533362292180641 -0.9173250225454002 0.3041091806161461 1.3963401149967654 -0.9053532285026131 0.07010819974616714 1.4071201606829917 -1.1207489365893741 -0.18417429622100073 1.4451889139925915 -1.2029353636890983 -0.2605565280928141 1.5977909500695175 -1.025492610477884 0.33507163462249934 1.207154001613013 -1.0879183866540714 0.36138993338421377 0.9090327578061044 -1.0992674049997662 0.34324562705313943 0.6675011010711571 -0.9974506019789363
38 0.6333333333333333 -0.20111917818619143 0.9648547421223312 -1.098073192327251 -0.5000607436194606 0.6858192792879587 -0.9886400901457205 -0.6839230401467209 0.3470494736866831 -1.0595207200233414 -0.7385255068565643 0.2862449645709297 -0.9303753622565304 -0.7631201965104959 0.28774886816485135 -0.9818429333187442 -0.6938600229248932 0.3082971233628505 -1.1027118018383386 -0.01163370162126773 0.8619590882005296 -1.1025532679714818 -0.06586492844355699 0.5086687205493596 -0.9144287628204908 -0.016363130438540076 0.14331628870328747 -1.1555218637527425 -0.008571155343965204 0.07491029511106324 -1.0005657725717363 0.020372513167673308 0.07796314398265643 -1.0369080040411593 -0.008901278834382624 0.11379018410994945 -1.2097903693991547 0.22958333074919346 1.3341915654115784 -1.0607308710433236 0.3833489598897378 1.5248616822042398 -0.9199532347153089 0.3104957928997198 1.3914937996436325 -0.9020013694791726 0.07211880129099611 1.405356534291781 -1.1140151313537683 -0.18207236350055894 1.4506543673663916 -1.1929333257286183 -0.24754589724652865 1.6086624588085665 -1.0127248240664524 0.33381280965655313 1.2032670809685266 -1.0880698010089447 0.36499503116565807 0.904182513436031 -1.0993397704041783 0.3479445619955723 0.6606510489006426 -0.9962424053277072
39 0.65 -0.20150552623664478 0.9667323307785293 -1.0898697381111613 -0.5066285136322691 0.6934199816310116 -0.9759027465419704 -0.7058168905056074 0.3613831511093947 -1.0421695862707354 -0.7625035243128575 0.3034248049155575 -0.9108323479789306 -0.7829157776361624 0.30055363181707984 -0.9673128569939862 -0.7160038517241141 0.321954714393131 -1.0861074710217538 -0.018648513454163157 0.8619355576425439 -1.1054850031603345 -0.06763950389516885 0.5089464648402305 -0.9098645516089406 -0.016932536105683994 0.14415918306108508 -1.1543914207350265 -0.009091156062943672 0.07586214926487313 -0.998843726279773 0.02020877245570565 0.07868568141642947 -1.0358479937067229 -0.010076144155817398 0.11555862402347647 -1.2080834742400979 0.23236462584609346 1.330154387920141 -1.0535369434099633 0.389730160691158 1.5171546262425863 -0.9234953919507105 0.31570592253536545 1.3872241358099813 -0.8973974043530033 0.07365500768409067 1.403459799034593 -1.1056744929608986 -0.17958733004559457 1.4565938318187532 -1.18010542488522 -0.23376095793520513 1.6185835885649364 -0.9983708282393211 0.3301572732751423 1.1988697249211164 -1.0953854198261972 0.3680275804888163 0.899881000038599 -1.099238087415205 0.35383578442191355 0.6547532401195125 -0.9948713187105063
40 0.6666666666666666 -0.20121115035750659 0.9697776654358897 -1.0804006412322429 -0.5120268266223105 0.7014151294522535 -0.9623301655884029 -0.7269187204500313 0.375946584395091 -1.0240960520202835 -0.7833094476747645 0.3202595298076533 -0.8892450746994256 -0.7999984623665606 0.3131203930810952 -0.9524530110185196 -0.7365182205815967 0.33714657410806087 -1.0691035443737154 -0.025918337457981493 0.8619747181488099 -1.1089678402504852 -0.06861918206398239 0.509268429202067 -0.90437766671007 -0.017303552842409992 0.14466445754583732 -1.15292522066733 -0.009411411133121342 0.07703881458386917 -0.997101645805561 0.020254942718922017 0.07965753606756415 -1.0344363471831797 -0.011210742613959252 0.11661044517344839 -1.205615211587587 0.23510648485031393 1.3266094446779562 -1.0440896591851512 0.39616116082888764 1.5107138883361737 -0.9259895909693117 0.3199582934640874 1.3829525526004054 -0.8914572740216736 0.07498712697019258 1.4017445737751553 -1.0957559544243338 -0.1770744846483911 1.4625081576798942 -1.165721755314301 -0.21965562010933914 1.6273581196844007 -0.982615592569864 0.32494254988536575 1.1941480177141612 -1.1072300523163559 0.3703656552698784 0.8961994597699534 -1.0988248059997914 0.36043939269016345 0.649882655771482 -0.9936192047997711
41 0.6833333333333333 -0.20183155623176646 0.973177138419816 -1.073139568769478 -0.5166726348492584 0.7096606450987852 -0.9487511509489674 -0.746617695410997 0.39036299554599824 -1.0061451713112228 -0.8007412131177057 0.3373255046272122 -0.8658755661469546 -0.8147867388743656 0.3258249474665917 -0.9378675757908395 -0.7554646037542648 0.35357439943159485 -1.0520683636308332 -0.03281875115681816 0.8621177213491056 -1.1118268516446763 -0.06897485044167515 0.5095632153859152 -0.8995537528694287 -0.01740549195751382 0.14473220283369878 -1.1516306033733446 -0.00939866487536629 0.0780438378077293 -0.9958029548544151 0.020454615886796635 0.08040789693374766 -1.0333339116143734 -0.01211768611209994 0.11669960869777118 -1.2031590726463979 0.2379527761782405 1.3237582200481972 -1.0319829990668385 0.40256315515285596 1.5058466438897697 -0.9253945723631943 0.3231773007817511 1.3783532184186091 -0.884098269721579 0.07668807340677193 1.4003906667780468 -1.0846398678785494 -0.1746677228702662 1.4680559497602748 -1.1507585300559509 -0.20554465608068592 1.6348635445394273 -0.9655026529224555 0.3195785143193503 1.1895849125027453 -1.1188701466010733 0.3721627266057913 0.8930904738308519 -1.0980302826486987 0.3671389619129867 0.6458515604534428 -0.9928596380252186
42 0.7 -0.20436134039324627 0.976397746986924 -1.0709454139172334 -0.5211100196890694 0.7179394857542865 -0.9355638684979835 -0.7642413837513629 0.40421665889331454 -0.9892373696678954 -0.8153601724325722 0.35446111940072544 -0.8424688539902795 -0.8278833499051296 0.3391167759820271 -0.9236231744907933 -0.772989690696248 0.3703865040768338 -1.0354967510373512 -0.03885338041543126 0.8625350782732798 -1.1133028927714326 -0.0689271448836207 0.5096526962695749 -0.8963101869418416 -0.017069259052343938 0.14425287635281633 -1.1508104480008083 -0.00894288883679054 0.0786569489477124 -0.9953836346713245 0.020967359280330652 0.08060240770805707 -1.032846820244387 -0.012474756523478615 0.11589822127687918 -1.2014967341354879 0.24101139448775888 1.3216487036323397 -1.01768291040783 0.40865162225444857 1.5025023811824931 -0.9201901930631372 0.3252692639140999 1.37353036757747 -0.875259566587685 0.07901466694344539 1.3993186660426185 -1.073701517115843 -0.1723372846015889 1.4731578706406216 -1.1358083615637022 -0.1914617108527515 1.6410868279698299 -0.9472074699948655 0.31512742769416974 1.1854986777412424 -1.126424343404852 0.3737958563343408 0.8904214065424747 -1.0968490508398874 0.3736259992979153 0.642461004427262 -0.9926638454200863
43 0.7166666666666667 -0.20914973074023926 0.9793450353936557 -1.0749755009238036 -0.5255816237580654 0.7258907530081041 -0.9230255115419177 -0.7791628197675359 0.4170452327627511 -0.9743615117596777 -0.8277753555767441 0.37117864913832593 -0.8205306773354935 -0.8395088064650058 0.35296505744891904 -0.9091308514083811 -0.7889186248351046 0.38643240736507006 -1.0199090492027412 -0.043961259274660075 0.8634263287532598 -1.1133830827681686 -0.0687357814094014 0.5095244550196313 -0.8947270778027897 -0.01631181231416872 0.1432827137963726 -1.150408280551517 -0.00809694884179807 0.0787911599538563 -0.996040038631855 0.021843419886918583 0.08020648712374638 -1.0329399143866056 -0.012174911883313419 0.11465196720735545 -1.2009243762216328 0.24404970401322054 1.3200262557646667 -1.0028088472596988 0.41422117434369754 1.5002000249259426 -0.9100061568671407 0.3264495256961024 1.3689041614391317 -0.8652522704420859 0.08162112895681109 1.3983892339860533 -1.0644030537013576 -0.17006256587716115 1.4779225835187288 -1.1208300173383063 -0.17735734915728 1.6461092739004495 -0.9284355078855604 0.31199816104808453 1.1819979674037642 -1.128127207389605 0.3755900913953997 0.888142092278773 -1.0952758414701627 0.37988281088555 0.6397170124672616 -0.9928409783594229
44 0.7333333333333333 -0.2158774189705157 0.982173742770294 -1.0835803761951401 -0.5298105637007628 0.7331027981489799 -0.911465355989292 -0.7910199597585644 0.4282971205066919 -0.9621654508513693 -0.8381431641578565 0.387347705382712 -0.7997184412265754 -0.8494809364355063 0.3668900588896325 -0.8936088776261482 -0.8027046879339844 0.40093806105177776 -1.0058162294684858 -0.04840015580939926 0.8648679688365439 -1.1125290350448824 -0.06875120156669329 0.5094303285866709 -0.8944374501654411 -0.015432714122913464 0.1421240655438321 -1.1502242860070049 -0.007101520607402347 0.07845289230500077 -0.997625911832428 0.022871406286275167 0.07946544028864404 -1.0334006904399302 -0.011456671056112474 0.1136463467769078 -1.2011791221558987 0.24655071126860428 1.318543037913052 -0.989404336268641 0.4192593700744935 1.4981830901267035 -0.8959252492779078 0.3273195535401272 1.3648989649539223 -0.854934139135159 0.08412868845301186 1.3976986922078365 -1.0565777369798814 -0.1678940994484677 1.4825124661950715 -1.105106519314187 -0.16326764005268757 1.6500468773048746 -0.9101965850640188 0.3102901257689244 1.1792545806822428 -1.1237099991819948 0.37767465416404095 0.8862021710012138 -1.0933975009195593 0.38596168767365274 0.6377658435282593 -0.9931626174693183
45 0.75 -0.22320414286837056 0.9850528673106987 -1.0918604507867626 -0.5332076117420027 0.7393015127259209 -0.9011395180526707 -0.7998341022573782 0.4374778706613365 -0.9524177976541985 -0.846317624583116 0.4029618065630315 -0.7787926899629513 -0.8574371836887817 0.38015939811386057 -0.8768719244712659 -0.8136672736778638 0.4136875069627384 -0.993647190252588 -0.05248423052946657 0.8667756968858333 -1.111113352276505 -0.06932054484519505 0.5096597819392047 -0.8950746300476411 -0.014771221937927995 0.14119934925517375 -1.1501835196442656 -0.00626490697600402 0.07785100592256311 -0.9996848677465819 0.023749083319700964 0.07876499366496068 -1.0339382413891747 -0.01069159013111948 0.11347234096422151 -1.201750084096685 0.24811458692178484 1.3171269029049446 -0.9785568360096798 0.4237907824950396 1.495792301088625 -0.8798892457160176 0.3284928721395078 1.3616735025480529 -0.8452949096917106 0.0864791982310873 1.397529677794864 -1.0486614762879012 -0.16581692448875704 1.4869901532007983 -1.0877541208457997 -0.14925793500380632 1.6529993976969637 -0.8931101072405045 0.31009540830499044 1.177563174815711 -1.1136957709173698 0.3799573314578744 0.8844153012773113 -1.0914866211260292 0.39184823425585336 0.636667544250151 -0.9935609717196187
46 0.7666666666666667 -0.22911724304167544 0.9880319848053363 -1.0939959508856345 -0.5352217529295114 0.7444022888368962 -0.8920268875076551 -0.8058121386665477 0.44440848669195665 -0.9441743995441267 -0.8518064587249606 0.41704085095547844 -0.7579318479514767 -0.8626536671408895 0.3912116368749876 -0.8604462524064321 -0.8213270604579466 0.424424271310331 -0.9834208191670197 -0.056348902316775834 0.8690515656480037 -1.1091605314505029 -0.07064316769866855 0.5102955018030999 -0.8963660084864858 -0.014519499005061833 0.1408445826583724 -1.1503622507803604 -0.005801674896071102 0.07737703619509753 -1.0015821553365807 0.024253449732349046 0.07844222584596847 -1.0342980880619936 -0.010167488504240898 0.11427735958598773 -1.202183391341564 0.24875833471528774 1.3159942424631272 -0.9699592898926633 0.4277281593968316 1.4927885376527936 -0.8637858003576837 0.3301028629477447 1.3590860482703304 -0.8367397881133262 0.08869156007331948 1.398089127624561 -1.0392580469273047 -0.16381554276061386 1.4912649728455538 -1.0685043326473302 -0.13543241798780614 1.6550057728519536 -0.8772201724501181 0.31145998836088207 1.1771415336104363 -1.099299139456452 0.3821114237198049 0.8826932975547874 -1.08970383408334 0.3974027596364495 0.6363432588768819 -0.9941633195464997
47 0.7833333333333333 -0.23225041785757375 0.9910582949628628 -1.0872023717222208 -0.5355499068446052 0.748404210813871 -0.8837816235889885 -0.809019138077275 0.44927990708207965 -0.936366284473619 -0.8536767292741873 0.42711019126443883 -0.7397615512077058 -0.863930847196578 0.3975098748617574 -0.8475468673226805 -0.8256388065897357 0.43246244188520894 -0.9743482543050771 -0.059817006672248624 0.8716325167238991 -1.1064984026710836 -0.07263418344839334 0.5112604657204175 -0.897930534076739 -0.014723871497035034 0.1411485342136088 -1.1507504014571481 -0.0057216774313151725 0.07736128780275486 -1.0027718696024093 0.024319261564864685 0.07864263693830251 -1.0343431343472549 -0.009996823786194998 0.1156976936860772 -1.2021731475701145 0.24884556682217493 1.3153431568343394 -0.9626915869352609 0.43089614562613954 1.489375814479361 -0.84895006960349 0.3317742664140388 1.356829662802247 -0.8289350277579723 0.09074510710345539 1.3994465178991624 -1.02758862661432 -0.16217859573510823 1.4952047790377703 -1.0480383949650403 -0.12201933958166676 1.6560453565614388 -0.862188234772284 0.3139296564002079 1.1778881917644086 -1.0829368948361542 0.38371199329155253 0.8812524604943968 -1.0878180592371938 0.4024198877011014 0.6366473369376888 -0.99506136486106
48 0.8 -0.23268611207653003 0.9940122567551917 -1.0729523915210197 -0.5341769061419005 0.751328572122241 -0.8758706921185174 -0.809308127769399 0.45239599022603205 -0.9280513145727993 -0.8512669591980931 0.43076631578729496 -0.7274695077044501 -0.8605737598118413 0.39767703566913293 -0.8398460755449437 -0.826818483111951 0.43708591289274484 -0.9649716487200765 -0.0625322523975515 0.8743729576815032 -1.1029261343946986 -0.07485491892694648 0.5124743838377209 -0.8994413606495528 -0.015284403832736347 0.141984864874359 -1.1510273057443996 -0.005881958499422077 0.07786035793305275 -1.003058463157561 0.024078744783813333 0.07931943591809798 -1.0339725927706678 -0.010072854543858402 0.11714326964649152 -1.2015389838569122 0.24872661676618685 1.3151844866524287 -0.9560558155586292 0.43313889161069896 1.4860284773250076 -0.8360908621926689 0.33301024206287744 1.3545987516036693 -0.8213752986386774 0.09269091466243608 1.4016168482906375 -1.0131994619802596 -0.16135611424442203 1.4987222883152465 -1.0275574883247738 -0.10927058198451231 1.6560677961847654 -0.8473577972795517 0.3161874728304486 1.1793037015189518 -1.0685589253214185 0.3845266324588736 0.8804048198226639 -1.0854894772238926 0.4067837778116492 0.6373896194657726 -0.9960183385817245
49 0.8166666666666667 -0.23131838231725074 0.9967628674903963 -1.0545441223750769 -0.5313056401885011 0.753232016130243 -0.8678499779200531 -0.8064801852003903 0.4537913248863396 -0.9184574168667886 -0.8450342152902892 0.4278641894302368 -0.7219121025915937 -0.8532659720144308 0.39323279394370836 -0.8348911096212972 -0.8247885436007591 0.4380302504644508 -0.9539686139599859 -0.06414487193919204 0.877110690381066 -1.098234056171573 -0.07663729115475867 0.5138446867073142 -0.900946278147304 -0.01589646156532389 0.14320488253952707 -1.150605547844742 -0.006174779459474563 0.0787062043354938 -1.0025873214312566 0.023797419829379815 0.08037590137727965 -1.0329789026874678 -0.010095293893605934 0.11815135426730176 -1.2001741753405477 0.24847090255222218 1.3154228209543848 -0.9497649591123798 0.43437839810147255 1.4833175254133495 -0.8254244465307395 0.3334679006001322 1.3523176549550255 -0.8139433362203853 0.09458229872245225 1.4045539144556176 -0.9963395709025138 -0.1614497759051394 1.5017674180158647 -1.0080726383298224 -0.09738336116786582 1.6550233227604627 -0.8320801990382944 0.3169399336274991 1.1808056219268381 -1.0594251350152002 0.3847014217144034 0.8803481743229576 -1.0826085686508933 0.41053819266845 0.638429284165397 -0.9964149005879371
50 0.8333333333333334 -0.22909074928100004 0.9992111978461368 -1.0352238643187701 -0.5272573714157482 0.754173470939655 -0.8596314153059464 -0.8004306646093924 0.4531474987620182 -0.9073226070843838 -0.8361022072648233 0.42025010066229884 -0.7215800726661421 -0.8431884592714439 0.3867102980382079 -0.8287179806136903 -0.8190227677522283 0.4353089271580618 -0.9406693199289733 -0.06444024880595943 0.8798030501940867 -1.0922923927462613 -0.07742546738500647 0.5152316628021036 -0.9026963838744935 -0.0160873392450237 0.1447146015660949 -1.14898103252321 -0.0066408057692036535 0.07969625850765237 -1.0016725035294292 0.02369145650766816 0.08177775892696675 -1.031127087221272 -0.009701839532483051 0.11856974480004479 -1.1980402917576345 0.247917177452186 1.3159630663985704 -0.9439346544801158 0.43460745016992025 1.4817113951559044 -0.8167941534409505 0.33303563170836126 1.3502128667975575 -0.8069354877558846 0.09616182134604176 1.4080139961425557 -0.978672045213685 -0.1621739152190047 1.5043199404636525 -0.9900133110198358 -0.08666849123176364 1.6529029219856886 -0.816260809505261 0.3164084479710324 1.182196286775905 -1.0544710114037006 0.3846355792743198 0.8811851641327445 -1.0791906368570356 0.41381836207151407 0.6398317878235488 -0.9954286045236113
51 0.85 -0.22691024125771092 1.0012479521387838 -1.0180764298844702 -0.522342655833608 0.7541052051394305 -0.8515097089038146 -0.7911926417540034 0.45011606061421516 -0.895315056378197 -0.8249736090902148 0.40962078079865927 -0.724821989663703 -0.8307796326406254 0.3791875612483516 -0.8195547327990149 -0.80911208867196 0.4288346501264519 -0.925066512600118 -0.0635692341887201 0.882437943993466 -1.0853716252555792 -0.07707950710811852 0.5165178220887643 -0.9048265672304715 -0.015484470622602442 0.14636785184647155 -1.1461997529942392 -0.007354072139251375 0.08068579042505533 -1.000679867663018 0.02380566533350282 0.08348826361400129 -1.028484040641763 -0.00866600043063232 0.11854274594528177 -1.1953014468610177 0.2468437516463907 1.316706014019285 -0.9391822817027815 0.4338516726191519 1.4813712362057578 -0.8096393937926931 0.3318597800406158 1.348554328270441 -0.8005969016559908 0.09682788456944644 1.4115398524145664 -0.9627476633883242 -0.16326232248451683 1.5063489927667948 -0.9733276324674294 -0.07765717209319349 1.649739651310922 -0.8004211329893991 0.31612612440044874 1.183664303550355 -1.0489964465992618 0.3846764027990442 0.8829641720065536 -1.0752218207705069 0.4167680900017563 0.6418278733868903 -0.99230188072132
52 0.8666666666666667 -0.22543695874243527 1.0027437452072696 -1.0051335600579665 -0.5166833946231313 0.7527836922140825 -0.8438303432798042 -0.7788569332137396 0.44453358099085766 -0.8837869605196809 -0.8110098890694506 0.39654043570504904 -0.7306487590836039 -0.8158303792006937 0.37051116430159975 -0.8080553929691188 -0.7953405212984519 0.4187999467033515 -0.9084772558839866 -0.062358488826697374 0.8850268708728438 -1.0788442716537539 -0.07588246344050248 0.5176550784510953 -0.9073295904463131 -0.01416043367627915 0.1478630502220433 -1.1431118122514117 -0.008167630428781263 0.08157873540853355 -0.9998521640902589 0.024069148012569173 0.08531469223269761 -1.0256952069584666 -0.007067823797991986 0.11829172060133361 -1.192572439234963 0.24506285200486558 1.317461954502349 -0.9363791260419484 0.4321542427696638 1.482068989419778 -0.8030927608506901 0.3301627467800533 1.347425834917973 -0.7947594303052633 0.09607292020620063 1.4147434126377665 -0.9503684793827403 -0.1646946181336604 1.5077716781556412 -0.9579719676229806 -0.07090361216021739 1.645629116865219 -0.7853384433550751 0.31716397374679073 1.1853819214125858 -1.0398513228833448 0.3849241782618926 0.8856481725013573 -1.0708091151599044 0.41951198469133044 0.6445687193855084 -0.986683189497579
53 0.8833333333333333 -0.22481684875990826 1.0036655511139798 -0.9965022041626297 -0.510079868210356 0.7498644868989266 -0.8366501608506726 -0.7633645188450773 0.4363025168363177 -0.8737910771249454 -0.7928431771081172 0.3811777355904131 -0.7374628273576485 -0.7981538282914162 0.3605972723218596 -0.7955874581424975 -0.7785701757577467 0.40621786842465224 -0.8940651070186573 -0.062153052711336365 0.8877501315241432 -1.075194485909859 -0.07431499475571618 0.5186404199440655 -0.9100676970860831 -0.01264758012686639 0.14878630096863718 -1.1410604627330212 -0.00866504034599719 0.08230286709238033 -0.9991666312917993 0.024395418121771435 0.08686495160468558 -1.0238300443625707 -0.005257539855903705 0.11785760633051097 -1.1908959807653359 0.24243265220166924 1.3178909119673936 -0.9360342937608286 0.42960659046759225 1.4832557266761968 -0.7964958291183555 0.32792145288957203 1.34673543347794 -0.7888750787574521 0.09385657328111419 1.417550838245437 -0.9415659584956734 -0.16661437376176166 1.5085248311521642 -0.9441755973992855 -0.06666091370463015 1.6408057389131416 -0.7717744848876242 0.31917219531692387 1.1873377011806705 -1.028338877051605 0.3852567518970754 0.8890918426648559 -1.0662565015912358 0.4221476887630018 0.648040497611964 -0.9787956316997938
54 0.9 -0.22482865928400445 1.0041632772014044 -0.9911199598397674 -0.5020725654366238 0.7451395132836093 -0.8298736364914412 -0.7443556982952051 0.4253500738830299 -0.8654204509661516 -0.7691289034009736 0.36431090167233576 -0.7419791167962981 -0.7777052250222773 0.34981952022781015 -0.7828350356220157 -0.7593662858663273 0.3921607569292394 -0.8847985928204836 -0.06367235873164219 0.8908091201110666 -1.0758462652253107 -0.07281075875307995 0.5195250292166373 -0.9127558052826039 -0.011549199615785483 0.14886900036452574 -1.1409557953170815 -0.008529233060088277 0.08280244401875625 -0.9985120719744851 0.02469211207416158 0.08776240510362873 -1.0236368864811742 -0.0036308218297596427 0.1171476525352727 -1.191064536578761 0.23885948610249214 1.317615740407337 -0.9377792649862774 0.42628202440969143 1.4842884133420906 -0.7898253346756461 0.32482472918655203 1.3463491028640446 -0.782172068779041 0.09059723346533227 1.4200754259899233 -0.9348315906076385 -0.16911769886299866 1.5086511549370134 -0.9319889148671716 -0.06466599633673402 1.6355801024018466 -0.7601298400567262 0.3210839212646114 1.1895551276346772 -1.0177803653631396 0.38551653149084475 0.893160644809277 -1.0617139944807419 0.4247444464887796 0.6523025805458631 -0.9691935612173673
55 0.9166666666666666 -0.22511780558825914 1.0044807436167957 -0.9877841126272686 -0.4921359175012961 0.7386377487052336 -0.8236462147662493 -0.7213959368387285 0.4118059306879543 -0.8581418186584807 -0.7393288319277933 0.3472797906613935 -0.7403154661228406 -0.7543548071251475 0.338607006162696 -0.7694485005047818 -0.7372929468948427 0.376797470565948 -0.8806174814072774 -0.06621925891784607 0.8941708895392362 -1.0793759133764023 -0.07158701382200357 0.5203990193662912 -0.9151355815760847 -0.011191489427286325 0.14819802073096736 -1.1426695437062622 -0.007872555422815425 0.08304928301013453 -0.9979160686925066 0.024851109464662197 0.08791885018050027 -1.0249376807472856 -0.002498552250953978 0.11618855154768278 -1.193007256361212 0.23443678872073048 1.3165574691217015 -0.9400732698278035 0.42199836009394587 1.4847343542937272 -0.7833480381736763 0.32049799708517673 1.3462717425773247 -0.7739604665285064 0.08688183193786775 1.422306991863863 -0.9283199729355998 -0.17207428880788228 1.5082563738838404 -0.9209473504837914 -0.06425865308521887 1.6301263189075568 -0.750125871233223 0.32219021039623497 1.1922290424694555 -1.0099185322510185 0.38571750528143983 0.8978703964751433 -1.0569416321279252 0.42736036019221657 0.6575976397157564 -0.958459838876239
56 0.9333333333333332 -0.2253707859960046 1.0048128306037374 -0.9854570812771695 -0.4798774073594023 0.7305675769396115 -0.8184504867696385 -0.6943651659686964 0.39603397709405075 -0.8512861991003453 -0.7039456187395927 0.33080416042670985 -0.7302909775518076 -0.7279044757518565 0.32695892752463607 -0.7546815392103925 -0.7113334797222781 0.3599661998752536 -0.8787033850413108 -0.06857269693602254 0.8976272928452856 -1.083099309183026 -0.0706364005964759 0.5212872882421876 -0.9171435444037311 -0.01158265876620596 0.14707150102966923 -1.1454841027461358 -0.007067995723462101 0.08303012325575247 -0.9974876954923021 0.024793731851787074 0.08745790437803312 -1.0269570439793472 -0.002076908861376919 0.11512388179214562 -1.1960292015128728 0.22956728692303408 1.315182692488298 -0.940474473127122 0.41619908504238573 1.4845569369954774 -0.7768866745493955 0.31467130279586114 1.3466225347386505 -0.7639755621457396 0.08314156037232734 1.4241260116721053 -0.9209905994097058 -0.17513841591357554 1.507427987068401 -0.9105102569119368 -0.06485252027308594 1.6244294445384189 -0.7409951275899423 0.3223754208493595 1.1954626604333685 -1.0044151969039004 0.3860980897291353 0.9032822041687135 -1.051553718910537 0.4300159941151861 0.6640700107669846 -0.9472112116393971
57 0.95 -0.2254740392836998 1.0052238010551964 -0.9833309159846033 -0.46531379800935196 0.7212550644513168 -0.8148001675498802 -0.6634336742504289 0.3784556798519708 -0.8441458712411418 -0.6643058175640462 0.3144052307566115 -0.7127645743243383 -0.6981553411377318 0.3143357523964106 -0.7383255783384707 -0.6807765792077346 0.34199693917760987 -0.8758830100061065 -0.07003572054896105 0.900947996715093 -1.0853940495244268 -0.06990896962880165 0.5221780156836235 -0.9188084799475951 -0.012523864194921902 0.14577943947655178 -1.148710829898702 -0.006455268753717394 0.08272755347496709 -0.9972470416143292 0.02448542305784049 0.08645322025900305 -1.0290274098496828 -0.002430255172747392 0.11396544265271753 -1.1992747554174006 0.22461117709317432 1.314214439642572 -0.9370261101139487 0.4083457154265591 1.4841337456885362 -0.7694455599398785 0.30722307181455755 1.3474267917522358 -0.7522951160212796 0.07957788064631059 1.4257371805242827 -0.9124472397978729 -0.17799794545191383 1.5061603253930382 -0.900534396361152 -0.06628959031387377 1.6185072866956796 -0.7318425583051014 0.32175550857928986 1.1990166495592223 -1.0002769133856537 0.38690201028675836 0.9093387666703947 -1.0451703509115098 0.4325538702323999 0.6714671727703105 -0.9365113603246396
58 0.9666666666666668 -0.2255058226444638 1.0056473933657215 -0.9809047401728306 -0.44897045779316225 0.711005770661664 -0.812773579499949 -0.6287848629194538 0.3595492468519201 -0.8360975558683686 -0.6219831246767378 0.2972021015448253 -0.6914110308574798 -0.6647504904232607 0.3000106074609431 -0.7211783647362979 -0.6455324821066 0.323539250312481 -0.8702363463362834 -0.07040396184173425 0.9039482910907312 -1.0860459902643071 -0.06940590330804654 0.523137840221255 -0.9201239529108234 -0.01373313154237767 0.1445353944386936 -1.1517155221886006 -0.00629062166640492 0.08213481074321226 -0.99703051160865 0.02388677867347138 0.08493194790489204 -1.0308368574976958 -0.003456537332776902 0.11251007811459333 -1.2019281396150412 0.21944431622667074 1.3140849534057737 -0.9296464061583856 0.3987335031177956 1.4840970707211807 -0.7591531616845484 0.29820353615453704 1.348663396649932 -0.739061393982217 0.07625830712078675 1.4278083065581748 -0.9023258569376522 -0.1806955964507407 1.5042602859111653 -0.8912920273375587 -0.06876136596615155 1.6125906857366805 -0.7217369460483497 0.32045780647496086 1.2025446981274668 -0.996616291807316 0.3880464531603771 0.9159307001631632 -1.0374355461113947 0.4345511776196628 0.6791300226402247 -0.9281234048766479
59 0.9833333333333332 -0.2255673727682525 1.0059691636916035 -0.9778692956696474 -0.4314222824158323 0.6999546760805372 -0.8117215836389848 -0.590609819344861 0.34008699992257696 -0.8267054234774065 -0.5777805513982621 0.27879553746887004 -0.6706658850613598 -0.6272487526515927 0.2834728393456914 -0.7045849630384682 -0.60599038256573 0.3051999011235716 -0.8613258898786149 -0.06972673594997994 0.9065148721990739 -1.0855129943046355 -0.06897605815304136 0.5241883423283702 -0.9211129755789268 -0.014909653107239823 0.14343519307300295 -1.1537162669341092 -0.006694575994778876 0.08126400941278476 -0.9965571535697154 0.02297867205871394 0.08302701626747712 -1.032297004513475 -0.004986439351409301 0.11053335514845565 -1.203421520467092 0.21373078509700494 1.3148827450163125 -0.9198610673960543 0.3890219068111186 1.4850506598485196 -0.7442297972151762 0.2880780577687684 1.3504177038574234 -0.7248085480797541 0.07308421290547248 1.4309209898689916 -0.8907411580349033 -0.18365490474273155 1.5014311823111997 -0.8832182739885817 -0.07252453981891942 1.6070025385120354 -0.7097795119411527 0.31869329753142256 1.2059705883961112 -0.9926758221071824 0.38909181807008975 0.9228512155269564 -1.0284224389699426 0.43553844512517376 0.686199184010129 -0.9236886326787079
60 1.0 -0.22563758788644334 1.0060552217719547 -0.9740766484147778 -0.4126419387982095 0.6881799011840212 -0.8103326057164727 -0.5492902564017783 0.32120669816436404 -0.8157157682890948 -0.5316264854395286 0.259588030543322 -0.6531171191322076 -0.5855197655067095 0.26465978727452744 -0.6895067418036707 -0.5628627136638127 0.28754166958846006 -0.8494415291489159 -0.06827568838359624 0.9085753181813198 -1.0842365599077577 -0.0681441538778417 0.5250873612180762 -0.9219889627717971 -0.01570454720428987 0.14251912169486916 -1.153765508381122 -0.007502597511890777 0.08013178858440366 -0.9956445191665497 0.0218324469737399 0.08096579921211375 -1.0334729800366809 -0.006839094690083713 0.10801633284605174 -1.203567946692511 0.2074422723110561 1.316698306199608 -0.9094454506572998 0.3816192703716712 1.487406580692213 -0.7255496479474977 0.27798715021329024 1.3527234530433416 -0.7110124605807324 0.06971718197294298 1.4350098532531574 -0.8788462013374465 -0.18741557990872945 1.497537283614007 -0.8765540712301998 -0.07773616429042654 1.6019445698442796 -0.6955882232500142 0.316865125691963 1.2095153701499375 -0.9876965542542008 0.3895646629991593 0.9295742161283875 -1.0188401259435054 0.4353465570672381 0.6918554837841686 -0.9235404555519069
61 1.0166666666666666 -0.2255675678181345 1.0056981789999446 -0.9697110881639076 -0.39202897395505804 0.6759318714522602 -0.8071564680705852 -0.5055225494383898 0.3040258925447943 -0.803163746098342 -0.48341163329081505 0.24062414405542892 -0.6390272128922616 -0.5399236689571878 0.24423603073732153 -0.6762332143748417 -0.5171793544431337 0.2711246591916783 -0.83490643640682 -0.06643094292956474 0.9101329669156588 -1.0824332960188583 -0.06635860413778343 0.5253822061955051 -0.9233277619344762 -0.01577676281094964 0.14194141341096067 -1.151043364595759 -0.008282272014447596 0.07878429158238343 -0.9943602790221517 0.02050603427281613 0.0789853580372738 -1.0346613848357005 -0.00880971141356504 0.10520377213944382 -1.2024689492641307 0.20082340708752788 1.319701717294416 -0.89942852229812 0.3779278128557143 1.4912968622197207 -0.7072065708837731 0.26930030328812804 1.3553579671856684 -0.6995413314882292 0.06566120964544361 1.4394245170724695 -0.8681417917129693 -0.19247803629546711 1.4927459220429646 -0.8711479275952904 -0.08448664927803173 1.5974554343761471 -0.679919624556174 0.31546657454983795 1.2135114442963555 -0.980826307613946 0.38922534601661446 0.9355118440302091 -1.0094279926603877 0.4341715520886737 0.6956892344756859 -0.9263175617301621
62 1.0333333333333334 -0.22519275966388275 1.0046232142724247 -0.9651241424141279 -0.3693794271454125 0.6636178667916732 -0.8016181872173898 -0.46044084865663737 0.2890483101128001 -0.7894096080107844 -0.43349934167113063 0.22300668851004332 -0.6277623517600874 -0.49128333868673857 0.22358969840757803 -0.6647269181945863 -0.4703165749343886 0.2562336711840365 -0.818403165490754 -0.06456098385710592 0.9113518882607984 -1.0801983528374715 -0.06348355465590323 0.5247207316811395 -0.92594899218168 -0.015034892651382418 0.14198308133527066 -1.145378599674489 -0.008576977323091484 0.07733519217637426 -0.9930174370032953 0.018861146064435102 0.07730172613252023 -1.0364303179007148 -0.010736183768021275 0.10256958040972276 -1.2003105258985216 0.19411072041928612 1.3239400057003756 -0.8900124857155185 0.3770311482307733 1.496416412579617 -0.6930947083877294 0.2627806560577027 1.357989602415767 -0.6914299354323141 0.06037133112522293 1.443359145541126 -0.8595762525823756 -0.1992144027746469 1.4874579430123467 -0.8665263266405903 -0.09280599698526044 1.5934305097842385 -0.6644256460721687 0.3148158862509027 1.218282084423601 -0.9712493790905743 0.38805836286569173 0.9405407832085029 -1.000485324905724 0.43241269715223457 0.6980944024927773 -0.9293611426274978
63 1.05 -0.2244581496069589 1.0025638459427992 -0.9604953007980573 -0.3455098826965333 0.651622693822677 -0.7946209387004544 -0.41557649610253117 0.2759022968772118 -0.7750917732328133 -0.3829388053681378 0.20725549235550902 -0.6188342740172796 -0.44080016251118687 0.2040777466132486 -0.6547327147465889 -0.42380476753676394 0.24260990506269883 -0.8014401815437179 -0.06295656848376473 0.9124515562555517 -1.0774580068496384 -0.0600096393404226 0.52310096019759 -0.9303640766680954 -0.013851061673026533 0.14280528873232456 -1.1377946434035242 -0.008180715221532369 0.07586899474554037 -0.9920504051920799 0.016585811187491965 0.07602679019116827 -1.0395173599495078 -0.012632428936210967 0.10076891843179472 -1.1970859690737234 0.18750251693544354 1.3291998584238183 -0.8811457759726375 0.37629550984572563 1.5021689063221326 -0.6845354605259052 0.2582984316629613 1.3604952818428016 -0.686455541820491 0.05333328162899195 1.446163430554595 -0.8534891681315654 -0.2077097551266928 1.4821144060631841 -0.8621178094625324 -0.1025558441846598 1.5895210041366397 -0.6506339120947927 0.3148307842184275 1.224047977601445 -0.9586058342900481 0.3861752637113836 0.9450214440489109 -0.9920453883205065 0.4305564945679112 0.700116424964976 -0.9298901533663357
64 1.0666666666666669 -0.22346437533770785 0.9993509093863511 -0.9558679266306378 -0.32153068965909415 0.6400773508852483 -0.7880069528375934 -0.37243550487585514 0.2635404833117242 -0.7612823952935066 -0.3332124951702135 0.19278871463928202 -0.6121986849260445 -0.3898366360621267 0.18620070806526695 -0.6458000238187196 -0.37902271683452177 0.2297129911238832 -0.7857373651669525 -0.061700234182645385 0.9134672195195802 -1.073874611107887 -0.056694753618660144 0.5208659753107219 -0.9362500090665974 -0.013017653804392562 0.14421265306526207 -1.1306360568276967 -0.007280870732210073 0.07425965541072309 -0.991787976711184 0.013470504780787354 0.07508553204228233 -1.0443852296657896 -0.014699181906686546 0.10044252514923395 -1.1924196207482889 0.1811940560574574 1.335003235793138 -0.8728418424917137 0.37305284864846855 1.508233553210848 -0.6814207913806533 0.25507185631807855 1.36307872329578 -0.6835213681959991 0.044227596089521225 1.447479912142706 -0.8496969053218357 -0.21774418952220623 1.4770020887840685 -0.857555571776855 -0.1135227480681335 1.585003837965415 -0.6394773135043564 0.3150207330307605 1.2308330571794637 -0.9432131403596254 0.38379052173918615 0.949462433064317 -0.9840250638532326 0.4290417678397037 0.7028034110752166 -0.9264464550740618
65 1.0833333333333333 -0.22238966245936634 0.9950407614558648 -0.9513103098058321 -0.29805623290332145 0.628602481127258 -0.7837975208400811 -0.33201528360371163 0.2507985254618364 -0.7494909246389053 -0.2857253116249113 0.17810902994832928 -0.6081571939240636 -0.3399927562991049 0.1697425556435947 -0.6374816445723751 -0.3371989633619071 0.2172625511050255 -0.7720137458611231 -0.060570197888179494 0.9142402197511901 -1.0690453868468441 -0.05387007778585209 0.518645108257703 -0.9420222462657801 -0.013353397660796103 0.14586204781989984 -1.126481756823239 -0.0063734594285201705 0.07224142961127086 -0.9922705926883797 0.009782927473533164 0.07430533039814419 -1.0505819558307925 -0.017164091006495297 0.1019657105836618 -1.185848571354544 0.17524408730505991 1.3408129421990593 -0.8649593492179734 0.3655716282946372 1.514895287233105 -0.6833464628558896 0.25208304878627963 1.3661288364088846 -0.681191311699588 0.03324798094472818 1.4474254731944936 -0.8471541994802464 -0.22887389195842123 1.4721961494866653 -0.8529195127793394 -0.12566015509960118 1.5789677860550493 -0.6313805648524644 0.314708658354157 1.238558852400165 -0.9256922785138552 0.3811909228303392 0.9543692327660251 -0.9760788867316054 0.42808835526861644 0.7068041514452296 -0.9193437182183719
66 1.1 -0.2213060771107843 0.9899901211470571 -0.9468456251377917 -0.27545608943454725 0.6164264679508332 -0.783688925963846 -0.2946614021647848 0.23717584300848446 -0.740987436730806 -0.2418683938599484 0.16226991598368415 -0.6062786090505694 -0.2934845895441244 0.15468686469624288 -0.6292477844285153 -0.299438895881702 0.20546720442516642 -0.7596218499781549 -0.05909809822228982 0.9146384185972294 -1.0628236753287743 -0.05115169694878717 0.517268316551765 -0.9449974850263021 -0.015178700354586521 0.14772176676282248 -1.1265159574083103 -0.005984151501637193 0.06977877625852551 -0.9931317096250502 0.006244943801342345 0.07358876059600084 -1.0567183621394598 -0.02014855162320359 0.10538629617615963 -1.1775515191755073 0.16948628472224977 1.3463751220310163 -0.8571068934384359 0.3531930401338658 1.5227041673324555 -0.6890032812887893 0.24851397474655637 1.369949596913438 -0.678165246064402 0.021320098535083293 1.4466268278961338 -0.8441631095115902 -0.24051341237756696 1.4676224250673524 -0.8486987935183107 -0.13901565916805103 1.5709211940917458 -0.6260826836019037 0.3131635948812449 1.2471797031433565 -0.9070076787502999 0.3786414742805687 0.9602663013919804 -0.9675949246702943 0.42768207961191856 0.7124530468515127 -0.9099897333599715
67 1.1166666666666667 -0.22002529760835252 0.9847167639136538 -0.9423122110600026 -0.25435101055818465 0.6029690633974425 -0.7882596814118865 -0.2602540831177286 0.22310838897160845 -0.7359060191092257 -0.20306288437335412 0.14582735353895843 -0.604859965185296 -0.25275316972686224 0.14145594779735468 -0.6204737193483563 -0.2659315360906398 0.1945517290172845 -0.7475987709399882 -0.0566886688540307 0.914623459691408 -1.0552819445630797 -0.048019494643262425 0.5173212432017495 -0.9433381628997607 -0.018132507590121687 0.1499423531531101 -1.130225850490031 -0.006483096423897493 0.06729479830990281 -0.9935631558073706 0.0034174482142994116 0.07295306719696901 -1.0612234182379745 -0.02354139850344028 0.11039042406409434 -1.168578638391023 0.16360800075620294 1.3517950643234162 -0.8488253606990158 0.3367368542594714 1.5317585712699333 -0.6947268200946796 0.24396178181236133 1.3745694820058192 -0.673587801806772 0.00964714115304277 1.4456782282548366 -0.8398226489915276 -0.25209243007981935 1.463122596930544 -0.8454315365436357 -0.15346578038913675 1.561348624609669 -0.6224049848972573 0.3096483348376442 1.256547899946287 -0.8889980762824276 0.37622343890526594 0.9675173842231413 -0.958493503094862 0.42772279469791114 0.7199224326521897 -0.8999534012031778
68 1.1333333333333333 -0.21817897595527305 0.97965140416115 -0.9372634566719309 -0.23555844586425048 0.5883401551334938 -0.7963569622433485 -0.22843773563224848 0.2093785790113797 -0.7332006990558078 -0.17027725002051028 0.12987559935288676 -0.6024807235647652 -0.21915542359676227 0.1300556508105856 -0.6110428869862276 -0.23531472659625277 0.18413956567093645 -0.7358260784788242 -0.052644702083408136 0.9141044575294316 -1.046326098934296 -0.04434958997943987 0.518676828358706 -0.9377611112937037 -0.021380757390837415 0.1521527410685681 -1.1361269429884808 -0.008037108012197898 0.06548122266649173 -0.9927510547635161 0.001386442748956414 0.07242144423813521 -1.0631321624576575 -0.026753494556162778 0.11613971148488351 -1.159858192209509 0.15721875684195868 1.3572829854850388 -0.839738817472766 0.31895958117338863 1.5412854148153219 -0.6941890859224188 0.23832324032887287 1.3797867456974913 -0.6671539777526172 -0.0009006135129147729 1.4448298194227018 -0.8342863454587328 -0.2631382954619953 1.4584702123845796 -0.8432652299401379 -0.16860591750714365 1.5516283122435623 -0.61821292700284 0.30366659999722506 1.2662587442965803 -0.8739415630817432 0.3736984803329255 0.9761145932598342 -0.950122552043102 0.4281960887666008 0.7292874017940802 -0.890351977908314
69 1.15 -0.2154515269217704 0.9749819052338435 -0.930918866855829 -0.21950911582569377 0.5735008685666836 -0.8054366308347073 -0.1988171950522386 0.19656502483751306 -0.7316520666024973 -0.1436230553200026 0.11506581285450476 -0.5993394552849781 -0.19225832132324236 0.11969480288759188 -0.6018813776064919 -0.2057931553628951 0.17359251611361962 -0.7251571361443433 -0.04622000159086028 0.9128677274107051 -1.035510361736051 -0.040099137154398105 0.5206341962826079 -0.930290638151183 -0.02401622730650919 0.1533719562910957 -1.1424694472257568 -0.010324655833406271 0.06480830844136312 -0.9905648844887154 0.00019319517216314277 0.07196788315431399 -1.0624556485017271 -0.02893045658451173 0.12140364676732635 -1.1516011736859486 0.14993003164808508 1.362938553652102 -0.8297338489413847 0.3033903679207385 1.5502130004203851 -0.6823633574915798 0.2315191649316829 1.3853934947330337 -0.6590333394053198 -0.00962578282070992 1.4445680431243568 -0.8267159933248933 -0.2732965991812157 1.4533492899433444 -0.8417274032294406 -0.18374101994308645 1.5430494804523942 -0.6112043249730167 0.2951350695114636 1.2757165909551569 -0.8637325882199924 0.3706493535617118 0.985812130547849 -0.9446223057822136 0.42921447950527497 0.7406111157165406 -0.8816903025511135
70 1.1666666666666667 -0.2116386843621593 0.9706432392269381 -0.9224064282912041 -0.20559567798378706 0.5601097750363291 -0.8124940190634267 -0.1713037934127983 0.18504092290247748 -0.730752127924326 -0.12222027544662477 0.10171025105452995 -0.5966560711620544 -0.17052539501504071 0.1094874696398349 -0.5946268744341154 -0.17666589018632042 0.16267357718781073 -0.7171883233911007 -0.0370496107451142 0.9107468233597167 -1.0225149216424252 -0.035057445099882296 0.5223983201972145 -0.9224069510613643 -0.025546080026625444 0.1530219831397886 -1.1478969844101905 -0.012340866139811592 0.06517079579295154 -0.9876834863345201 0.00013110704397292813 0.07157512696126707 -1.0600443897735996 -0.029789626844562853 0.125359993881989 -1.143997152324119 0.14161842990775012 1.3687401188143116 -0.8191101757001772 0.2918439113171454 1.5582848757968555 -0.6609487198481372 0.22344305648030566 1.3913902607214848 -0.6496594508440654 -0.016065925141979978 1.4455826330307378 -0.8151235866410798 -0.2824299306630228 1.4473366881901806 -0.839880750246456 -0.19814230406408895 1.535657901611282 -0.6006504532158884 0.2842694907209946 1.2843109155086183 -0.8597518450570764 0.36685976617298016 0.9964325518007637 -0.9431986566226349 0.43088826603052804 0.7539517403632473 -0.8739160247837262
71 1.1833333333333331 -0.20660093206045238 0.9664104414854299 -0.9112914500720958 -0.19228253704765916 0.5498530798551717 -0.8149013460193868 -0.14630243276837404 0.17498624188082396 -0.7306575720840751 -0.10457667993850085 0.08992503211460819 -0.5955370345025472 -0.1523825232545069 0.09905896154812165 -0.5906944187342335 -0.14849860122309713 0.15138941844749954 -0.7139251876086888 -0.025839606726283573 0.9078895085623626 -1.008155416828312 -0.029212104731759763 0.5234072467326634 -0.9150692613757021 -0.0261053572910184 0.15164101633070629 -1.1516546602340134 -0.012963076520943726 0.06609470753283847 -0.9850723632950122 0.001434950792427282 0.0712533320759487 -1.056981373187626 -0.029924418364322577 0.12825174895401298 -1.1373606995969106 0.132639632793842 1.37462712823323 -0.8084797632350537 0.28333362562965 1.5661253956766727 -0.6369812004154007 0.21416617101016885 1.3979957451285536 -0.6394890345870295 -0.020919541332357187 1.447668702095042 -0.7992827500156466 -0.2906510212024843 1.4399444521286076 -0.8367230383189841 -0.2116999201542511 1.5282124890624993 -0.5881441358343015 0.2715276059700053 1.2917120875323027 -0.8626169346617819 0.36252459993326464 1.0081076282944517 -0.9453538693502245 0.4333080710130858 0.7693421475071688 -0.8665373275430112
72 1.2 -0.20036495628119871 0.9619901543434481 -0.8979004718125041 -0.17815241347165794 0.5436623036009993 -0.8109455700412349 -0.1243157471516484 0.1662749616914357 -0.7317910568273459 -0.08966291343207686 0.07951087776430836 -0.5966099938582482 -0.1367457258232224 0.08851921488007555 -0.590682405645225 -0.1224859676476875 0.1396528325847908 -0.7169327486776406 -0.014310567961499798 0.904734242859049 -0.9943740490868305 -0.022979106121140555 0.5234240536745611 -0.909246829161605 -0.02619123607677394 0.1502823759211452 -1.1535429801851633 -0.011738425457132346 0.06722184630071912 -0.983313699165605 0.00392120591855693 0.07104414883509534 -1.053924783150789 -0.030151552988731355 0.1309255522165994 -1.1318256476178161 0.1235768918250472 1.3805686082879762 -0.7985387000043445 0.27528059791441567 1.5743228562111184 -0.6160493144839806 0.203967802442286 1.4054906212279277 -0.6288793063305761 -0.026125008723515544 1.4495208204583971 -0.7817398236956284 -0.29837406513270287 1.4307746344602033 -0.8315037628477373 -0.22531889776630915 1.5190417985155158 -0.5765512142908449 0.25787532166658256 1.2981987445215812 -0.8709617231148992 0.3581544817829069 1.021172878023943 -0.9497470291178078 0.4367400822318861 0.7867768761904385 -0.858984306295625
73 1.2166666666666666 -0.19320154683303944 0.9571443665216666 -0.8831230000494095 -0.16290972473022167 0.541410412121436 -0.8003312882683571 -0.10545491489422983 0.15860026618603143 -0.7345651933376829 -0.07747451066786694 0.07004099145936413 -0.6002150949294507 -0.12305346777216933 0.07820463339644693 -0.5944143942165957 -0.09977076856124023 0.12754505282780673 -0.7262950958544245 -0.0037707580239685996 0.901541486745792 -0.9819971436012048 -0.016924886659398095 0.5224236435860042 -0.9056642739797528 -0.026254821615567553 0.14971620215011652 -1.1539490965476893 -0.009026291309812461 0.06845430605671363 -0.9823579278332971 0.0070227733484647704 0.07105665907954234 -1.0509890156309765 -0.030863378942707003 0.13399385769212946 -1.1277779343331582 0.1147411673546107 1.3865452717729247 -0.7897256696544459 0.26523404204706547 1.5830522726642737 -0.5993088214432565 0.19314402657863886 1.414083098342188 -0.6181928913506672 -0.03350720600291124 1.4498729743150123 -0.7654678222468714 -0.30644162557978694 1.4198082854107463 -0.8237684431876047 -0.240447876991288 1.5067758357509522 -0.5681762688369889 0.24502935689437164 1.3046156004889597 -0.8801372277235138 0.3544094733887052 1.0357157470481886 -0.955324198933642 0.4416354474494253 0.8059744841083536 -0.851252372726187
74 1.2333333333333334 -0.1854404315709194 0.9518539062477946 -0.8679181581371427 -0.1474857402712483 0.5417769845761972 -0.7846898368244691 -0.0894907313949512 0.15169227651205427 -0.7390744631497219 -0.06838000330372694 0.061195734491834075 -0.6063788471593902 -0.11101274556780412 0.0683935883380021 -0.6010912205283068 -0.08091326122179379 0.1156866536484866 -0.7401510324220587 0.005888269090781705 0.8981297631105304 -0.9692949847299892 -0.01141843363399336 0.52041925039291 -0.9042118496454574 -0.02651518527422113 0.15025909118388545 -1.1535162460804027 -0.005613655128010789 0.06970587853516827 -0.981900398879308 0.010034567469126785 0.07136097997517292 -1.0482013562716208 -0.031977494102494855 0.13760736812969782 -1.1259371407487786 0.10599422109086787 1.392491517737787 -0.781800235626314 0.2518019313142519 1.5922228978815904 -0.5854982504757034 0.18179584176079652 1.4238026044943146 -0.6078765306491001 -0.04369427079543434 1.4483936803135888 -0.7521279682781585 -0.31574617427952634 1.4075453199492127 -0.8133100178511933 -0.25807486550516934 1.4910345809567807 -0.5632712539676926 0.234867075167284 1.3118031582957332 -0.8835547371814536 0.35196724546384367 1.0513794147910533 -0.9611143692915798 0.4483200585011028 0.8262128526931499 -0.8443646360583127
75 1.25 -0.17723420892701494 0.9462598725022733 -0.8529940795383664 -0.13332601895031 0.5426074207008144 -0.7670642305688624 -0.07624362023220577 0.14532864095856535 -0.744812775241022 -0.06241951354063943 0.05298825005832444 -0.6144143034515724 -0.10040890643252544 0.059180952365644066 -0.6093089009959357 -0.06582648984649175 0.10502418953772541 -0.7555175619151288 0.015295059560005923 0.8943354398799384 -0.9541200123493251 -0.0065763331994137 0.5173571530437331 -0.9039297303692999 -0.026950702689466574 0.15183780778498923 -1.1526857391989311 -0.0022948367596586704 0.07076142444136455 -0.9818103149921614 0.01237300994960437 0.07184573464663041 -1.0458930695674555 -0.033187006556200556 0.14161334500560618 -1.1267121280243533 0.09693784261146844 1.3983056146531265 -0.7738959739615562 0.23488171118843565 1.6014753123180556 -0.5733451189508594 0.16971887055440815 1.4344186000480654 -0.5982302268145713 -0.056209451293900585 1.4455239063373337 -0.7425157352112022 -0.3263490041253526 1.3946123518459135 -0.8005685309159513 -0.278096515211822 1.4730767457556955 -0.5604450154537589 0.22819867038458108 1.3200724394924062 -0.8768405941981975 0.3513832423496428 1.0676653151117246 -0.9651503668265455 0.45677274751406144 0.8469201339250634 -0.8398070276185383
76 1.2666666666666666 -0.16864114116729328 0.9404457482171362 -0.8388116848761057 -0.12155940862559443 0.5422328516373184 -0.7501771807980413 -0.06578662580264935 0.13936556348896548 -0.750657172386466 -0.059104874574614774 0.04576083146982211 -0.6226399019158659 -0.0912273020354857 0.05071725802741542 -0.6172226057803589 -0.05419086730521874 0.09631173020357356 -0.7695670440021737 0.024553239546753983 0.8905048954192338 -0.936310958006165 -0.0022915656023489773 0.51311480570114 -0.9036971707538906 -0.027267624640434796 0.15423305650256902 -1.1516153162697222 0.00038341427695144615 0.07147531533613681 -0.982155479095638 0.013792697818060513 0.07240130560335893 -1.0445016175106474 -0.03417613597801925 0.14584699087933617 -1.1300418728669455 0.08715641001102674 1.4038499783752854 -0.7651237662824951 0.2153255353796212 1.6102684473068536 -0.5625388179078257 0.15658763411010998 1.4454188754252133 -0.589218406980521 -0.07017581588527484 1.4417661368789578 -0.7370520260211979 -0.3374100679199069 1.3813262393817667 -0.7864958174014957 -0.29963585218923733 1.4553168940728414 -0.5585956227791844 0.22416151240529963 1.3292647939642241 -0.8608131525656819 0.3529471186064924 1.0843966032545205 -0.9646626853104439 0.46676642833610577 0.868529958908936 -0.8381204229835156
77 1.2833333333333334 -0.1599351603738165 0.9344797147424689 -0.8256260733400113 -0.11260781549271716 0.5404086995149728 -0.7351785077609649 -0.05828000246451206 0.13393266327394765 -0.7552852648244134 -0.057349097770740126 0.04010969262355077 -0.6288283657552595 -0.08378167875260625 0.043496987355110296 -0.6231500911007167 -0.045870400973181916 0.08989499996988948 -0.7802574260178552 0.03343302959284378 0.8873617492615623 -0.9171725440410066 0.0017960049560428182 0.5076671440508043 -0.9028476434708479 -0.02697038157628683 0.1574806835887701 -1.1502336160699038 0.0022078629534260335 0.07194551862517902 -0.9829994062737547 0.014356638530686711 0.07327567707612961 -1.0439497574956602 -0.034729572941401596 0.15039637764169878 -1.1357628535810687 0.07639246964480821 1.4088709538252304 -0.7550460141220703 0.19409803981616172 1.6181675492382113 -0.5533953961318018 0.14222717497636933 1.456012674611415 -0.5805972336546448 -0.08489624071374047 1.4373354001367094 -0.7352332112712565 -0.3480764287333613 1.367870530301027 -0.7714654955786278 -0.32183987307869627 1.4394213543594296 -0.5575415218901048 0.22067090468694844 1.3390482028759916 -0.8407910304558347 0.35658780314754124 1.1019505686603037 -0.9577891684155828 0.4781620558897176 0.8923549702609289 -0.8382091203197656
78 1.3 -0.1516713139227111 0.9286372709588299 -0.8135318034813961 -0.10624655493788855 0.5379265640387488 -0.7217974837447406 -0.05366460555572076 0.12945413176654078 -0.7578695298085405 -0.05597323330485692 0.0366194509885404 -0.6314904387452476 -0.07849977886034515 0.03811646281013769 -0.6263343859998092 -0.040847905530252276 0.08573531069573351 -0.7868429883273239 0.041981762687997845 0.8855333636223044 -0.8976704929912626 0.006223689496410056 0.5013856777711945 -0.900932436945829 -0.025617114125873277 0.16199147249828033 -1.1480733573619355 0.003249001264652437 0.07243075400278849 -0.9842137709975625 0.01423384622538119 0.07504752853153489 -1.0432512532790927 -0.03462362853614816 0.15549164490626025 -1.1436249647629708 0.06471022245365815 1.4129985436229162 -0.7437866049178958 0.17155728252752284 1.6250414036699745 -0.5457047489610104 0.12654652645732317 1.4653392482700174 -0.5718932499703611 -0.0998842337194877 1.4325076008631978 -0.7349529722987413 -0.35777568546190897 1.3544989858824996 -0.7558323656635906 -0.344122233326 1.4249399553032436 -0.5566969909528796 0.2154771358727751 1.3490654338879622 -0.8232284900266896 0.3617891618309089 1.1211410173412875 -0.9448586569578445 0.4909792645711385 0.9197017251177232 -0.8380071761324223
79 1.3166666666666669 -0.14430843666335558 0.9233514610864679 -0.8026167900019106 -0.10183913143932212 0.5357201161711102 -0.709288304424539 -0.05150107459742764 0.12627653574439385 -0.7584674901861571 -0.05464172511002072 0.03533877601720239 -0.6308762550940392 -0.07542759376858212 0.03456155537837509 -0.6271668042802339 -0.03872076233402929 0.08349518888182866 -0.7900259266016569 0.050523692548639955 0.885252466967699 -0.8781334138425955 0.011541451913186777 0.4952143463023149 -0.8969196868895829 -0.02296369958222707 0.1682968732201193 -1.1441426045762195 0.0037218887649104284 0.07317281779970161 -0.9854364204699299 0.013657024634957752 0.07821942533669045 -1.040829989689707 -0.03341218354353362 0.16123809677956172 -1.1528558497120305 0.05256097609895596 1.4159292890366442 -0.7319514924540167 0.14745959142766904 1.6309689452281695 -0.538139997728982 0.1094027429954694 1.4729426949444795 -0.5622294123899901 -0.11458250153123303 1.4279190174742815 -0.732721423148663 -0.3659642748298765 1.3412915841938837 -0.7412125629766779 -0.3659146668335394 1.410129786898373 -0.5544111591883645 0.20723091982436206 1.359056515659903 -0.8121611547486762 0.3675024344454445 1.142891834084288 -0.9282908618101783 0.5051981444384682 0.9512955870882688 -0.8357542393447799
80 1.3333333333333333 -0.137763079351751 0.9189394221857871 -0.7929299120963147 -0.09848863364759802 0.5342596056235666 -0.6972491080725557 -0.05103780351638131 0.12434028195245708 -0.7578285023215269 -0.05376747320310488 0.03560280195865446 -0.6282796189401508 -0.07409844179903634 0.03213524385028793 -0.626760406254643 -0.03842811633372682 0.08270966542311334 -0.7911700799595763 0.05903719217869852 0.8864363028496028 -0.8595822666820451 0.018138526638035384 0.4903395985670497 -0.8891113087930499 -0.0188758470188594 0.17674329717053786 -1.1371919404331723 0.0038850908835595306 0.07431805255553162 -0.9860852133072052 0.013028158613970133 0.08296824482853439 -1.0353361695840306 -0.030475845169227102 0.1677681014994421 -1.161670194089501 0.040607202328457756 1.417604186450739 -0.7203421439749007 0.12156277585879717 1.6359301138449276 -0.5291108806717689 0.09094770974753577 1.478958899159954 -0.550770741325135 -0.12831768096863388 1.4242443449992706 -0.7252142873592642 -0.37237561827646853 1.3280491774313912 -0.7291926269474258 -0.3867675685891613 1.3936738958682429 -0.549200182760123 0.19591831697362416 1.368953280583615 -0.8077793810524458 0.372357166713598 1.1677668430904644 -0.9113664193821464 0.5206636633716744 0.9871037722653584 -0.8308616951553733
81 1.35 -0.13140985404787817 0.9154998055238377 -0.7842470581232877 -0.09536120708557531 0.533140611845902 -0.6862892069449721 -0.0514245772458821 0.12341763239621072 -0.7568404707901831 -0.053502476659837525 0.03650062084902741 -0.6244992634857606 -0.07403600183849972 0.030367789247706913 -0.6263511842663495 -0.03865084315380212 0.08300405874171997 -0.7914573776668686 0.06726359135835616 0.8886943315921977 -0.8432677492295025 0.02610979667129116 0.4875064406567113 -0.8759539405373029 -0.013283849547924996 0.18727775632634508 -1.1261451585412035 0.00409327796728676 0.07597010812998475 -0.9852205241744362 0.012969146270786495 0.08910068370727764 -1.0263780575407033 -0.025341132113850515 0.17558592267446607 -1.1670534660646554 0.0294368700125886 1.4182159203801774 -0.7095175009070797 0.09425458350486514 1.639781916031032 -0.5178160646068917 0.07198384697205927 1.4837348847200453 -0.5375436532403217 -0.14058163289407488 1.4217020750670935 -0.7113678993863676 -0.3773624866337226 1.314515277578929 -0.7196595751281901 -0.4062793278780719 1.375295315437723 -0.540232597597987 0.1825467832220998 1.3787594883169052 -0.8074000599452823 0.3752993300571 1.1956597608810127 -0.89606619564511 0.5371182030776496 1.0264438640761107 -0.8234792890573466
82 1.3666666666666667 -0.1245011184231342 0.9129775510135718 -0.7759414067724597 -0.09240254402890587 0.5309629344252432 -0.6786105778840826 -0.05194947796107627 0.12350531852544251 -0.756006775270773 -0.05354413273541797 0.037369537183646724 -0.6197449001263838 -0.07502193566491062 0.029397825817623704 -0.6267774686972943 -0.03846246721066225 0.08424471091110937 -0.7916094218280147 0.0757656594015914 0.8910999945175487 -0.8278505144951971 0.035182579133514365 0.4867516123928629 -0.856741395966134 -0.006331227089882984 0.19931959465757937 -1.1104130765752507 0.0048862772889535595 0.07830351191411146 -0.9814622554034426 0.01427874785305184 0.09610418854675142 -1.0146354567418447 -0.017975603539928445 0.18527059616124011 -1.1654847227368599 0.01926643905943514 1.4181670799373678 -0.6993375771044743 0.0666388722101888 1.6425400178257858 -0.5042854196251251 0.053493852240014475 1.4874639203072932 -0.5233248725307418 -0.15135250238143486 1.419862604352827 -0.693134420883867 -0.38177716573510895 1.3005523062638698 -0.7115224462527328 -0.42363239287634985 1.3553159159651684 -0.5263582013275327 0.16850317728688197 1.3883035469489615 -0.8073051500761734 0.37632942639495565 1.225915337720361 -0.8808703460409409 0.5539452453302218 1.068513797506749 -0.813330280758928
83 1.3833333333333333 -0.11657590035566313 0.9112054007760811 -0.7670774518198828 -0.09033826732219327 0.526434379243534 -0.6765478710281212 -0.05224229083416898 0.12476817730779229 -0.7553624921661419 -0.05370125794111388 0.03793671634355326 -0.6145696311452821 -0.07690991928168447 0.02938758080620148 -0.6282159061004927 -0.03764675582558832 0.08650104586215679 -0.7919875775877029 0.08574352366863801 0.8925732547083499 -0.8099484491345454 0.044700031271946127 0.4877537845788573 -0.8319275801248386 0.0015236954403126733 0.21179521474703647 -1.090091825333789 0.006921630669111134 0.08167768817403245 -0.9731917028399933 0.017818070244700696 0.10343158207149351 -1.0012000694143903 -0.008853627594292623 0.19664041075201452 -1.1546631858582763 0.009692053843479419 1.4180157524738333 -0.6887618179933892 0.040016599535883844 1.6443475792881495 -0.48903596290713186 0.03589325581992112 1.4901882912994469 -0.5086995706979327 -0.16113022963071114 1.4178249440871589 -0.6740653586442064 -0.38646933558812235 1.2861175984115703 -0.7043386340167818 -0.43826588623548635 1.3342000798186555 -0.5071742922257411 0.1549716031462898 1.3972464430128437 -0.8042647472883893 0.3764711344349748 1.2575135011961631 -0.8612965291454248 0.5699655040914794 1.1128655252093782 -0.7997009387182297
84 1.4 -0.10767027699771284 0.909956262978074 -0.7568765072758641 -0.08949073592958615 0.5198743674145697 -0.6796785631764424 -0.05234553921038142 0.12725465633545885 -0.7547191905203967 -0.05399878943206084 0.03821167276355194 -0.6098813858828079 -0.07958095353577713 0.030224449069036794 -0.6304145212811241 -0.03657600050000424 0.08988411515147209 -0.792799078124037 0.09735784645256568 0.8927941058379208 -0.7888025557754422 0.05389815122159344 0.49022735909105764 -0.8030239939604329 0.009673289699342332 0.2233149550845228 -1.0657756789992539 0.010765296882079393 0.08648445840930312 -0.958979642081593 0.024330522845762412 0.11052472447510304 -0.9870464580096164 0.0012649296842932786 0.20837832653792016 -1.134527835715689 -0.00011476555363609808 1.418256007545048 -0.6764040589330012 0.015277562094786375 1.6452074209627963 -0.47283840224695217 0.018989052093626613 1.491889881479842 -0.49368841882581427 -0.1706144866896622 1.414634016064934 -0.6573267662245589 -0.39177105091151476 1.2711724321682674 -0.6987475009286972 -0.4511832912793868 1.312392224147772 -0.4850606982503542 0.14269392863696773 1.4053453813212855 -0.7964639686196378 0.37636099661011113 1.2892256829989313 -0.834271381793486 0.5838808791424949 1.1592353177689763 -0.7824815573264791
85 1.4166666666666667 -0.09833162158248171 0.9090456841912024 -0.745389282831385 -0.0893286235174819 0.5129679557052523 -0.6849203061868679 -0.05248729908740337 0.1307344844650885 -0.7538231224658115 -0.05443441872368632 0.03828332819137828 -0.6063513543305116 -0.0827944176342291 0.0315949579443692 -0.6330941726569436 -0.03575533841114736 0.09437273489405527 -0.794147556984779 0.1092472152179253 0.8923360115940383 -0.7676889307439042 0.0623657552615733 0.49394605423613736 -0.7720350078175353 0.01759930464373256 0.23237674436848302 -1.0381313673027535 0.016635233036733 0.09260013810683437 -0.9381376027091376 0.03410706302714317 0.11666819368521315 -0.9725771778586305 0.011668834179324317 0.21852567310363402 -1.1063040379753633 -0.010683189902813748 1.418995180488906 -0.6616622469106354 -0.0074019457533460835 1.6449416984273701 -0.45637733766602556 0.0024571781667225706 1.4925530297903664 -0.4781272302537981 -0.1802358884423191 1.409621151269757 -0.6449512997947828 -0.3973354832757493 1.255775814279963 -0.6952464088240142 -0.46443608801947855 1.2902535079471902 -0.46404350906201774 0.132186247240199 1.4125641522193764 -0.7834580594273175 0.37520819903207336 1.3198394516785155 -0.8015754070406431 0.5947416480176184 1.2070368090547654 -0.7622748804213023
86 1.4333333333333331 -0.08942981007157284 0.9083749297565302 -0.7337130546059537 -0.08938621099963752 0.5074221451811781 -0.6893097572674782 -0.05271862365770001 0.13470759239026733 -0.7523576220643338 -0.05487852732921175 0.03826607458751384 -0.6041489695808017 -0.08595720660767373 0.03303122269694863 -0.636032429450973 -0.03531553348592739 0.09963931863911822 -0.7958611624945287 0.11970603780210987 0.8919951146924332 -0.7505849903668872 0.07005047601753911 0.4985458389320579 -0.7409857602554404 0.02487092968508923 0.23757947254445655 -1.0081524338861436 0.024213596057413023 0.09908008660837633 -0.9109333522901618 0.046546642827705265 0.12139949661483722 -0.9564564711179191 0.021847718128026147 0.22523699983458242 -1.0713282327348828 -0.021690096012633713 1.419801867655571 -0.6453195762496559 -0.02846499271322117 1.6433433118257919 -0.44000284982111265 -0.013795327190601645 1.4921493986413663 -0.4620225219774177 -0.1897654118439363 1.4025510043648264 -0.6378864374724201 -0.40225451634668036 1.2402141118314236 -0.6928900716596136 -0.4790447141681762 1.268037800862242 -0.4473774384505032 0.12402472753313029 1.4189701317049046 -0.7653015230326101 0.3719308906278287 1.3482465242952677 -0.7680094448798582 0.601790494274198 1.2552524579481639 -0.7397047222644224
87 1.45 -0.08181091069895723 0.9078447245635999 -0.7233777676139986 -0.08967688766730333 0.504162265651791 -0.691412543208 -0.05285609152462544 0.13857216664464211 -0.7498441278391017 -0.05513442759416475 0.03838827284326979 -0.6028903012883399 -0.0884529587003196 0.034204971720670364 -0.6389756924522703 -0.03496196757832077 0.1049464240607837 -0.7973213834696482 0.12751190725813322 0.8923943468795349 -0.73976886656691 0.07688105240280399 0.5034909437122376 -0.7118101102292244 0.031070568342478008 0.23807237585052496 -0.9772922007488526 0.032762953213799045 0.10464072821180848 -0.8783494271225345 0.06014959726906569 0.12462933964404035 -0.9355714632556406 0.03139709950301186 0.22717926954993528 -1.0316220965584524 -0.032230430934772 1.4199918782820073 -0.6289731021511947 -0.04846238329391069 1.640332480623749 -0.423900807518507 -0.029538672310536272 1.4904857890406977 -0.44568899920373356 -0.19838640622649575 1.3937115186360955 -0.6357577181663983 -0.4055402746550526 1.2248119129716075 -0.689783964199385 -0.49405098359323635 1.2459115319360232 -0.4367041315963271 0.11875575939789418 1.4246027274998008 -0.7419173785656071 0.366571215998621 1.3736275481122162 -0.7378665073599721 0.6042890553509206 1.3027390801130503 -0.715278819986481
88 1.4666666666666666 -0.07591964366243696 0.907302683596034 -0.715423776382399 -0.0901896297875107 0.503067729320476 -0.6909072197464472 -0.0527042730697284 0.14182750441284991 -0.7457354355528386 -0.055150731028143066 0.038945086680124405 -0.6018955820946676 -0.09012777659979308 0.03512410468092007 -0.6416947684395445 -0.03439136548827687 0.10928527312155885 -0.7977720012335344 0.13196308200139478 0.8939907042719696 -0.7359837498958698 0.08264924273379289 0.5082780949852116 -0.6860877477732827 0.03614559800489468 0.23423295802721222 -0.9462343225888001 0.04147196877208183 0.10843496846337479 -0.8418007595246614 0.07317433850022555 0.12617230504803792 -0.9069986146329695 0.039926216939355906 0.22396690793541452 -0.9907971601206422 -0.04159312632979306 1.4191543681740988 -0.6139886301311892 -0.0675053611921467 1.6360343056091897 -0.4084698458302355 -0.044241855738518715 1.4872233459609707 -0.4299196999538983 -0.20529554208580242 1.3839225678814628 -0.6366963430014665 -0.40679880283271336 1.2097221068695427 -0.6846612614396402 -0.5075693438863846 1.2239515861157544 -0.43198849299012093 0.11654236005578171 1.4293479079590008 -0.7134727616893912 0.35978501257450524 1.3957422212687929 -0.7145876917431219 0.6016282899670025 1.3484212015169494 -0.6897593981245234
89 1.4833333333333334 -0.07165417854548936 0.9066583702266026 -0.7100678941375694 -0.09071256169157228 0.5032353090029139 -0.6879999022779831 -0.05218282039974188 0.14417605958126714 -0.7399326033523147 -0.05515679573741232 0.04007844943260442 -0.6007595811162916 -0.09128517626983794 0.035952964285495104 -0.6441469440234827 -0.03355351277694828 0.11181679046080617 -0.797017205670304 0.13295272034757005 0.8970367550254792 -0.7388691858669885 0.08723084518050835 0.5126072129140007 -0.6642941019897939 0.040862821108480336 0.22779686329210036 -0.9142288176164042 0.04963991488691433 0.11038630447519404 -0.8026097805574639 0.0843588493464976 0.1259550490181872 -0.8696852750376097 0.04722306227507265 0.21662735041677303 -0.952944454273066 -0.04966658861590981 1.417286422251125 -0.6009219782373546 -0.08522387442260773 1.6307603606149372 -0.39429127200270175 -0.057236373510903264 1.4821690614020195 -0.41591782696662133 -0.2102171790761922 1.374281707602151 -0.6381910160688429 -0.40627120431547314 1.1951181675321836 -0.6776502972630445 -0.5181109902786899 1.2021251785823146 -0.43186454554195625 0.11672689750199738 1.4329241297444177 -0.681833399636924 0.35217766069764445 1.4147495233725047 -0.7004893870331417 0.5934944726108279 1.391227048688944 -0.6643388729945034
90 1.5 -0.06856171033016778 0.9060046693731176 -0.7069287821217536 -0.09108279565715666 0.5037096248306852 -0.6831383309890826 -0.05129570308100275 0.1455386466181211 -0.7331527507811009 -0.055495406292467124 0.04164118980390388 -0.5997011290802057 -0.09245125773390417 0.03694639357911618 -0.6464737925581581 -0.032505245519886546 0.1122971188693212 -0.7956136938758149 0.13126529854472263 0.9013419432711143 -0.7464129343475597 0.09071398904067572 0.5163842753512574 -0.6455316074891942 0.04638635026082173 0.2209575632986885 -0.8802187477951118 0.05670547973714078 0.11100537193757588 -0.761388790779447 0.0931513425108389 0.12461456236858975 -0.8245676347056652 0.053523682861101325 0.20703828283478132 -0.9198930878586009 -0.05672321107307683 1.4145651888602564 -0.5895420196124448 -0.10107339847894005 1.6249529518026244 -0.3816757447864325 -0.06807867669075529 1.4755536537937246 -0.40448791779387255 -0.21347092093183717 1.365706117797415 -0.6385341901562849 -0.4043334866290265 1.1813925242355545 -0.6698484628897542 -0.5250467423536962 1.1804061207216754 -0.43431809268904586 0.11756223582559146 1.4350960573492841 -0.6516555964769937 0.34514226256028374 1.4307610425204975 -0.6938962027128841 0.580714408028423 1.429931483206584 -0.6395734618892651
91 1.5166666666666666 -0.06620004665336716 0.9055590744484194 -0.7051769155443167 -0.09124617969936519 0.5040247645415243 -0.6768392123965004 -0.05008038234135461 0.1460444214580215 -0.7266632831545089 -0.05639070238019715 0.043301071678890926 -0.5993848385834054 -0.09410875704989001 0.03842882130755353 -0.6487461690258802 -0.03124430659331821 0.11111042900471307 -0.7943234918307198 0.12861119575160648 0.9060400804470579 -0.7542647047266652 0.09317277470488664 0.5197108726523385 -0.6286566205072238 0.05320432981088085 0.21510962253707586 -0.8438208285779492 0.06227848687685427 0.11100013464732578 -0.718191814739491 0.09947289336257481 0.12328033642650253 -0.7736246730535844 0.0593808213023158 0.19676366087961877 -0.8897252912801625 -0.06302368270290559 1.4112758619751895 -0.5792475809319653 -0.11452707780586535 1.619130837091088 -0.37052016522103226 -0.07681940124170204 1.4681278774178534 -0.3952780663624194 -0.21568955248565327 1.3586499024502325 -0.6373296236810658 -0.4013424612361446 1.168975513337068 -0.6625990212793134 -0.5285305706144718 1.1590248411300896 -0.43721205536477253 0.11686758078472469 1.4358914432229801 -0.6284691424323514 0.3408942195877805 1.4438819171680606 -0.6893183849182698 0.5659515455839264 1.4632000693034681 -0.6141526416205059
92 1.5333333333333334 -0.06442149087602467 0.9054401130926851 -0.7037631391527627 -0.09119964092380647 0.5042468747018677 -0.6696062286820582 -0.04866498857306252 0.14594008010664478 -0.7217068966064499 -0.0579390918036693 0.044714760463297004 -0.6003481921856911 -0.09628014804375315 0.04037696699906206 -0.6508148719815052 -0.029754065391404808 0.10893922075020557 -0.7934747772960011 0.12678136293905493 0.910009493401691 -0.757490715134977 0.09445955480255747 0.5228495190367598 -0.613291410534206 0.06067978981730295 0.21018469171799425 -0.8052872617513577 0.06613223336593232 0.11099587042657517 -0.673212570741334 0.10343449302502788 0.12285094660012262 -0.7190098073118723 0.06508832655545477 0.18655210465520866 -0.8584140294812758 -0.06864812952015971 1.4078682222516605 -0.5695682391543655 -0.12522066802038007 1.6138445610447774 -0.3605827185566427 -0.08396105526716643 1.4609734086443695 -0.38718908964406934 -0.21741222294775167 1.3531713412930875 -0.634934991576286 -0.3977924515726266 1.1581731889320834 -0.6570274300660386 -0.5292018859239409 1.13858161947235 -0.4390345535100249 0.11346509807045817 1.435654642482991 -0.6145859544653086 0.34076033439211745 1.4544749635452827 -0.6820646583875971 0.5520326570399265 1.4901725434274475 -0.5864703244171987
93 1.55 -0.06333750758516118 0.9054799481818042 -0.7019548587700568 -0.09094165124672755 0.5047718902048914 -0.6617968172421578 -0.04736296048992544 0.14543236660147274 -0.7190599468193478 -0.06018046466810446 0.04562984072977513 -0.6025234766332733 -0.09841711712027744 0.04221913089219746 -0.6524877877128815 -0.02812809306148879 0.10641638611242406 -0.7928217431846024 0.12632880129942334 0.9128271432362872 -0.7544681223526182 0.09437731312633234 0.5260315279102001 -0.5993317333739009 0.06763537644725245 0.20500550637098777 -0.7652801902093266 0.06821991098975044 0.1114580540016331 -0.6271168723857813 0.10533995287516487 0.12365210027361069 -0.6630187622550426 0.0704338543563653 0.17643958537117335 -0.8228846279029981 -0.07357171840433575 1.4049100361628086 -0.5603880174759905 -0.13318311340149122 1.6096226451564 -0.3516589978465025 -0.09019512773030457 1.4551245830976576 -0.3792907862958531 -0.2188771010108728 1.3491823512194627 -0.631801876605418 -0.39422696375851163 1.1492254174137622 -0.6536694822951906 -0.52783018450951 1.119882345848969 -0.43962621943896524 0.10787435829106568 1.4350671903880852 -0.6075357248851558 0.3441020994600763 1.463011992199382 -0.6710048244550847 0.5397385486621783 1.5110164017557677 -0.5569754127144273
94 1.5666666666666669 -0.06302098691644041 0.90531374534069 -0.6995403906033928 -0.09023661455431496 0.506094534111465 -0.6533123518718273 -0.0465275663499447 0.1446712013324787 -0.718815729651042 -0.06299855210540546 0.046038552698563905 -0.6052787441838721 -0.09993480861349749 0.04345142392895457 -0.6537091885011251 -0.026623952996433796 0.10402029529935047 -0.7919891157848045 0.12631314457452864 0.9150093228326874 -0.7479157778602431 0.09295780544056219 0.5293073408748289 -0.5862684325352978 0.07318516147726573 0.19842036189719844 -0.7248660885997971 0.0686509718336703 0.11265451655243786 -0.5809220320765832 0.10578010297200616 0.1252749640008143 -0.608454059357737 0.07507029573307256 0.16613813986032352 -0.7829967193449298 -0.0777577572035504 1.402942168040869 -0.5518408949432285 -0.1389045013318677 1.6068360856633923 -0.3435920281856171 -0.09607946277158003 1.4512811795416785 -0.3710695112658997 -0.22007097628403943 1.3466721416029725 -0.6280654040358976 -0.3910019948461616 1.1422622483768423 -0.6523724260509748 -0.5251334746563248 1.1036869758120254 -0.43978405113804975 0.10162339227659972 1.435001926716682 -0.6025348445096439 0.3486994075728285 1.4697643489126693 -0.6575947506854085 0.5282125328915458 1.526502847231772 -0.5275396021772342
95 1.5833333333333333 -0.06330227642311238 0.904715730092682 -0.6964769357554307 -0.08868108188196885 0.508464275365832 -0.6438367951895287 -0.046300995334456634 0.14383942445792422 -0.7203546366952893 -0.0658831799745577 0.046259087362319415 -0.6076730384914822 -0.1006683027342112 0.044126333626720284 -0.6545645334341801 -0.025554975061287614 0.10208763882296118 -0.7908705890918856 0.12566621397700975 0.9172093690886551 -0.7410245437735982 0.0905877723328651 0.5326244889812589 -0.5733538833971674 0.0770280796337351 0.19036367771025797 -0.685514169569901 0.06750826941410396 0.11468843425590367 -0.535822358398466 0.10543132303322866 0.12655356497117842 -0.5583918238618074 0.07876389885060903 0.15557681109379345 -0.7413972921187769 -0.08120102456127361 1.4022827513458411 -0.5440401796196218 -0.1431336571835121 1.605550163930619 -0.33628169261486657 -0.10173271972402406 1.4496266502976245 -0.3623924364889494 -0.22085494658375024 1.3457371254802513 -0.6234062631085192 -0.38820833135468225 1.1372211067313491 -0.652640131074762 -0.5218157030647361 1.0905858513319593 -0.44020186927406024 0.0961980895607454 1.436128577069237 -0.595622430272619 0.35203691728116443 1.474722640741952 -0.6438968345948001 0.5165565268629609 1.5372715048319705 -0.49972080256339146
96 1.6 -0.06383275862137824 0.9038629911340802 -0.6925904840359142 -0.08634490620665422 0.5117486109842143 -0.6335216034918485 -0.04661899409992355 0.14315382422462256 -0.722639223732523 -0.06795878433468358 0.04663651420676299 -0.6087461203993142 -0.1007829767564039 0.04452749296823041 -0.6551968411814876 -0.025111725453840664 0.10075412105830944 -0.7895108562283863 0.1243774989026902 0.9195505083866027 -0.7341124694558934 0.08795008273026124 0.5359105968426978 -0.5599420489825209 0.0792855723574991 0.1819526538879208 -0.6487326460401861 0.0645671918691294 0.11763559258106909 -0.49285214927994586 0.10460175111462078 0.1264753911398886 -0.5148369126033225 0.08130380486457839 0.14535453949367774 -0.7013380062303269 -0.08400132277870491 1.402877760495474 -0.5368241337815007 -0.14660636268829336 1.6055493531909781 -0.329653187223956 -0.10677508367278071 1.4498079058373712 -0.35371130781108995 -0.22108157448963628 1.3464718266492695 -0.6170886599835647 -0.3857504297597752 1.1339768602199496 -0.6538826555718865 -0.5185646117098962 1.0809256189527991 -0.44117745044582124 0.09254684066908268 1.4387118384964146 -0.5846487319753438 0.35295669371968696 1.477812825674062 -0.6311805573143328 0.5045134266254275 1.5439039811195712 -0.47426755614600224
97 1.6166666666666667 -0.06421536993088274 0.9032941857078225 -0.6874872083686706 -0.08385347120584502 0.515926976842219 -0.6224136838515731 -0.047315012444799194 0.14280702549381158 -0.7247458673396758 -0.06861472894570696 0.04715139717849792 -0.608168451783342 -0.10054209346318556 0.04475477846090456 -0.6556357614198786 -0.025266371185842136 0.09995790194422943 -0.7878972832993709 0.12297122435677962 0.9218334781973552 -0.7259042638412994 0.08580872502646747 0.5390215331965442 -0.5455537349096022 0.0803159089379771 0.17467731861278127 -0.6154910975235751 0.05927916489437539 0.12140391628605676 -0.452572522753659 0.10308268243240097 0.12499385631190832 -0.47785094347631274 0.08261186989377269 0.13673967361947503 -0.6646557072718419 -0.08644804854023529 1.4043550955448607 -0.529725371213386 -0.14986966299311785 1.6065399266985738 -0.3235619448495438 -0.1108048843837286 1.451244825016311 -0.3458078370590117 -0.2206333496687105 1.3489317464136845 -0.6079792700339729 -0.3835072654848854 1.1324357999396881 -0.6554161254752868 -0.5159002303893762 1.0746650051223803 -0.4429032347476697 0.09102520959194012 1.442758812708512 -0.5686713155088241 0.3525858291133594 1.479217295237115 -0.6193099616126946 0.49236167197609754 1.5472682069579637 -0.45112326286766796
98 1.6333333333333333 -0.06391775700717628 0.9036801488300842 -0.6804747953696928 -0.08172156405818747 0.5213409888363955 -0.6096770856314917 -0.04810987158758547 0.14290306538771555 -0.7261479347188025 -0.06799283964542542 0.04748824461612153 -0.6065513093915873 -0.1001874740993206 0.044749676709937035 -0.6557473635029345 -0.025778376959257176 0.09956679811888548 -0.7859757197985872 0.12162867993244364 0.9239601096597183 -0.7158733812080621 0.08482491960899011 0.5417501736460569 -0.52968617936845 0.08055175529681126 0.16957285691924964 -0.5859598849066696 0.051549220226245654 0.12536246745605154 -0.41544270959926954 0.10052094572380359 0.12238544736220025 -0.4464117391756387 0.08296205529233422 0.1309147326079469 -0.6317243435716354 -0.08900003414152502 1.4062791507036743 -0.5222244668492454 -0.15321494993205645 1.608341961114398 -0.31778325736771584 -0.11394160625662886 1.4535194391574002 -0.33910570325776895 -0.2193535754883157 1.353108288281088 -0.5947351206118157 -0.38145735014262205 1.1323782622342462 -0.6566251686419637 -0.5140580585411559 1.071297205346322 -0.44536707420283 0.09149526513498113 1.4481075386592386 -0.5475479733475429 0.35391629548520764 1.4794567688849267 -0.6068130751598202 0.4804474852674029 1.5483900300397406 -0.4294606324594285
99 1.65 -0.062323267588710894 0.9054977213569857 -0.6709213708882287 -0.08008930512832173 0.5280594081129378 -0.5947812289807312 -0.048711824826888954 0.14339980860739607 -0.726687045778965 -0.06660507638749347 0.047451860579170654 -0.6047257156663481 -0.09987971217546454 0.04449484337027599 -0.6554198403351268 -0.026354493092026192 0.09943640672795927 -0.7836950748208751 0.12029987334384264 0.9259547674541687 -0.7044291803655375 0.08536946367725315 0.5439722089650302 -0.5117522911933252 0.08034666678411691 0.16680005186262528 -0.5594895341905494 0.0422963994497371 0.12863743798546357 -0.3817756282235913 0.09683350671166716 0.11866915473208228 -0.41912069420712966 0.08283780399212899 0.12803282247660736 -0.6019644115908445 -0.09204131408194641 1.4083600455806224 -0.514046958454232 -0.15670820480812991 1.61085641990978 -0.3121253798271863 -0.11671381632689996 1.4564357334251277 -0.3334473806567172 -0.21710802475636298 1.358766388525264 -0.5766884129962374 -0.3796277616582455 1.1333402910950845 -0.6572476358791521 -0.5129732212250622 1.0699351436977333 -0.44821409578244403 0.09349178081758733 1.4543486930677272 -0.522139567667142 0.35966970374727464 1.479202360225059 -0.5920926273701852 0.46884022773510203 1.5482286866201567 -0.40815103065238206
100 1.6666666666666667 -0.05950169699073196 0.9084819630317224 -0.6593333703570372 -0.07882425338516143 0.5355394473537521 -0.5784761228125479 -0.04906600956426731 0.14412429849371577 -0.7265847091215303 -0.0648758853521124 0.047157409031506455 -0.6030205469340661 -0.09966360365296423 0.044093019719379296 -0.6547674169675431 -0.02686344608476151 0.09940900558196329 -0.7811204939148675 0.11897898368501428 0.9278830090719169 -0.6922886807198072 0.08710147067008517 0.5458238848029204 -0.4919530168709188 0.07997779019939259 0.16551838111722672 -0.5345661495689006 0.032611395455848256 0.13108201368454941 -0.35041700398994324 0.09240591169340465 0.1141195910381359 -0.3938440303518896 0.08261106816859318 0.12694872370701402 -0.5738708918004989 -0.09556486497911489 1.4104586885784394 -0.5053011004811597 -0.16033467549173158 1.6138180958053348 -0.3064576613657052 -0.11952281483010814 1.4597360241854094 -0.32831972777984647 -0.21413655979805368 1.3652829254215963 -0.5551825624871013 -0.3779451002675329 1.134727357742069 -0.657424555085554 -0.5123348635109215 1.0694635112169724 -0.4511191666745487 0.0963093781881728 1.4609647080351396 -0.4942744357043922 0.36938536656970244 1.4789454938055204 -0.575243551090717 0.45734376982803343 1.5476587851904196 -0.38649962199088894

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,378 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="90" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="176">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
-0.850679 -0.525458 -0.015466
-0.795084 0.254980 0.550296
-0.925442 0.270628 0.265173
-0.957385 -0.195340 -0.212735
-0.786748 -0.539937 0.299158
-0.103721 -0.993953 0.036035
-0.204106 -0.927770 -0.312385
-0.374321 -0.766884 -0.521319
-0.821271 0.539541 0.185499
-0.254865 -0.469416 0.845395
-0.615790 0.441827 0.652374
0.135474 0.086726 0.986978
-0.939578 0.334432 -0.073133
-0.872961 -0.112735 -0.474583
0.367093 -0.573977 0.731979
-0.019325 -0.955343 -0.294867
0.308760 -0.893900 0.324976
-0.495147 -0.758038 -0.424509
-0.676226 -0.286344 -0.678768
-0.364806 -0.517208 -0.774217
-0.708473 0.685778 -0.166655
-0.658253 0.483144 0.577300
-0.951291 0.262146 -0.162253
-0.755394 0.650652 0.077664
-0.131130 0.272086 0.953296
0.488331 -0.306142 0.817196
0.247957 -0.193108 0.949329
-0.774129 0.401012 -0.489810
-0.039770 -0.921917 0.385339
-0.222336 -0.734528 -0.641120
-0.339310 -0.920901 -0.191862
-0.626070 0.215179 -0.749489
-0.310900 -0.254044 -0.915862
-0.420070 -0.086330 -0.903376
-0.017282 -0.190023 -0.981628
-0.843011 0.483333 -0.236055
-0.730245 0.426863 -0.533413
-0.789158 0.482735 -0.379731
-0.976620 0.172534 0.128238
-0.440370 0.552290 0.707849
-0.932443 -0.246849 -0.263848
-0.385800 0.502020 0.774037
0.025627 -0.069445 0.997256
0.491809 -0.395722 0.775583
0.397779 -0.406705 0.822413
0.620143 -0.368548 0.692527
0.650682 -0.559415 0.513485
0.143615 -0.952240 0.269468
0.628274 -0.776538 -0.047544
0.650046 -0.371545 -0.662868
-0.098080 -0.250140 -0.963229
-0.048434 -0.095860 -0.994216
-0.687957 0.261092 -0.677160
0.770810 0.004089 -0.637052
0.444365 -0.154277 -0.882462
-0.905221 -0.116897 -0.408546
-0.866787 -0.130919 -0.481187
-0.987206 0.077368 -0.139421
-0.840747 0.485030 0.240604
-0.931736 0.178444 -0.316268
-0.048727 0.692554 0.719719
-0.285891 0.898515 0.333071
-0.112598 0.179653 0.977265
0.402918 0.296681 0.865816
0.638689 -0.275261 0.718546
0.817194 -0.254137 0.517310
0.763002 -0.474080 0.439404
0.964964 -0.247507 0.087090
0.988855 -0.109437 0.100941
0.946904 -0.311703 -0.078833
0.178592 -0.025083 -0.983603
0.532393 -0.218947 -0.817692
-0.361718 0.303742 -0.881420
-0.549232 0.341252 -0.762818
-0.822303 0.218524 -0.525419
-0.839916 -0.035947 -0.541524
-0.755592 0.055711 -0.652670
-0.374929 0.922588 -0.090881
-0.368155 0.613703 -0.698448
0.430273 0.813913 0.390398
0.146747 0.984281 0.098271
0.918267 0.271851 0.287894
0.928388 -0.290593 0.231628
0.969575 0.003742 -0.244765
0.816323 -0.208968 -0.538469
0.127301 0.392256 -0.911005
0.576341 0.248793 -0.778417
-0.494310 0.288851 -0.819892
0.092853 0.844924 -0.526765
0.667814 0.656730 -0.350328
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
-0.013803 -0.026908 0.003993
-0.011822 -0.023896 0.008425
-0.013661 -0.025863 0.004057
-0.013905 -0.026050 0.002741
-0.012682 -0.027714 0.006819
-0.010398 -0.028567 0.006015
-0.011745 -0.027669 0.002485
-0.011697 -0.026265 -0.000328
-0.012024 -0.022477 0.003478
-0.011910 -0.027010 0.009027
-0.010435 -0.020082 0.007488
-0.009268 -0.022702 0.008323
-0.013424 -0.022140 0.000880
-0.012616 -0.024168 -0.000911
-0.009081 -0.027998 0.007584
-0.005247 -0.027214 0.002928
-0.004244 -0.027459 0.004371
-0.003405 -0.024908 -0.003243
-0.011494 -0.024014 -0.003175
-0.003557 -0.022498 -0.005508
-0.011637 -0.019667 -0.000295
-0.007323 -0.014970 0.006505
-0.006878 -0.014404 0.004275
-0.008640 -0.017907 0.001675
-0.004688 -0.014503 0.006745
-0.001620 -0.024554 0.003862
-0.002948 -0.016417 0.006924
-0.011125 -0.021380 -0.002219
-0.002214 -0.027800 0.002398
0.000716 -0.029113 -0.006303
0.000702 -0.029953 -0.004556
-0.010003 -0.021571 -0.004733
-0.002754 -0.020649 -0.006465
-0.005615 -0.019156 -0.006846
0.000138 -0.027014 -0.007157
-0.006393 -0.015370 -0.000483
-0.006390 -0.015810 -0.001282
-0.003838 -0.016383 -0.004267
-0.007103 -0.013523 0.004834
-0.004837 -0.012741 0.005838
-0.006147 -0.012992 -0.000610
-0.002895 -0.009789 0.005437
0.000477 -0.013368 0.006868
0.001478 -0.025646 0.001873
0.003186 -0.014688 0.005971
0.003067 -0.016721 0.004963
0.001377 -0.028923 -0.000399
0.000486 -0.029865 -0.001249
0.002655 -0.029199 -0.003518
0.002639 -0.028099 -0.005935
-0.001701 -0.018797 -0.007322
-0.000225 -0.021341 -0.007428
-0.004373 -0.017152 -0.007763
0.002701 -0.020423 -0.006324
0.001681 -0.021416 -0.006890
-0.004951 -0.014096 -0.002447
-0.003800 -0.015528 -0.004281
-0.003356 -0.014774 -0.005632
-0.007375 -0.012289 0.003101
-0.006894 -0.011255 -0.001543
0.002452 -0.008688 0.006459
-0.000168 -0.007025 0.002638
0.002393 -0.010394 0.007203
0.004049 -0.009966 0.007045
0.005027 -0.012240 0.006566
0.004406 -0.019733 0.002237
0.004847 -0.014447 0.004353
0.005129 -0.016008 0.001241
0.005578 -0.019518 -0.000184
0.004435 -0.026331 -0.003310
0.001265 -0.015036 -0.008488
0.002095 -0.019074 -0.007308
-0.001663 -0.013427 -0.007558
-0.002683 -0.014074 -0.007181
-0.003250 -0.013934 -0.006653
-0.005424 -0.012075 -0.004458
-0.003336 -0.013121 -0.006533
0.000162 -0.006194 -0.000696
-0.001251 -0.009225 -0.005493
0.004049 -0.007243 0.003664
0.003330 -0.005896 0.000086
0.006673 -0.010579 0.003715
0.006642 -0.011715 0.003326
0.006810 -0.011927 -0.003525
0.005528 -0.014984 -0.005418
0.000932 -0.013540 -0.008327
0.004651 -0.011557 -0.005686
-0.002479 -0.013306 -0.007087
0.004036 -0.006438 -0.002998
0.005030 -0.006711 -0.002757
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
0 2 3
4 1 0
5 0 6
0 5 4
0 7 6
0 3 7
1 8 2
1 4 9
8 1 10
11 1 9
10 1 11
12 2 8
2 12 3
3 12 13
13 7 3
5 9 4
9 5 14
15 5 6
5 15 16
16 14 5
7 15 6
17 15 7
13 18 7
18 19 7
7 19 17
12 8 20
21 8 10
22 8 21
8 22 23
20 8 23
11 9 14
21 10 11
24 21 11
11 14 25
26 24 11
25 26 11
12 20 27
13 12 27
18 13 27
16 25 14
28 16 15
15 17 28
16 28 25
17 19 29
17 29 30
17 30 28
18 27 31
18 31 19
32 19 33
31 33 19
34 19 32
19 34 29
20 23 35
20 35 36
37 27 20
37 20 36
21 38 22
39 38 21
24 39 21
22 35 23
35 22 40
40 22 38
39 24 41
42 41 24
24 26 42
25 43 26
25 28 43
42 26 44
26 45 44
43 45 26
31 27 37
46 43 28
47 46 28
28 30 47
29 48 30
29 49 48
49 29 34
30 48 47
37 33 31
33 50 32
51 32 50
32 51 34
33 37 52
52 50 33
49 34 53
34 54 53
34 51 54
55 35 40
36 35 55
37 36 56
56 36 55
52 37 57
56 57 37
58 40 38
38 39 58
39 41 58
58 59 40
59 55 40
60 61 41
41 61 58
41 62 60
62 41 42
42 63 62
42 64 63
44 64 42
43 46 65
43 65 45
45 66 44
64 44 66
45 65 67
66 45 67
65 46 68
68 46 69
46 48 69
47 48 46
49 69 48
53 69 49
70 50 52
71 50 70
51 50 71
51 71 54
72 52 73
74 52 57
74 73 52
72 70 52
53 67 68
67 53 71
53 68 69
54 71 53
55 59 75
55 75 56
56 76 57
56 75 76
76 74 57
58 61 77
58 77 59
59 77 78
75 59 78
60 79 61
79 60 63
63 60 62
80 77 61
79 80 61
81 63 64
63 81 79
82 64 66
81 64 82
68 67 65
66 67 82
67 83 82
84 67 71
67 84 83
70 72 85
85 86 70
86 84 70
70 84 71
87 72 73
78 85 72
78 72 87
74 87 73
76 87 74
75 78 76
76 78 87
88 77 80
88 78 77
85 78 88
89 80 79
79 81 89
80 89 88
81 83 89
83 81 82
89 83 86
86 83 84
89 86 85
85 88 89
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444 447 450 453 456 459 462 465 468 471 474 477 480 483 486 489 492 495 498 501 504 507 510 513 516 519 522 525 528
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,378 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="90" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="176">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
-0.925442 0.270628 -0.265173
-0.795084 0.254980 -0.550296
-0.850679 -0.525458 0.015466
-0.957385 -0.195340 0.212735
-0.821271 0.539541 -0.185499
-0.939578 0.334432 0.073133
-0.254865 -0.469416 -0.845395
-0.786748 -0.539937 -0.299158
-0.615790 0.441827 -0.652374
0.135474 0.086726 -0.986978
-0.204106 -0.927770 0.312385
-0.103721 -0.993953 -0.036035
-0.374321 -0.766884 0.521319
-0.872961 -0.112735 0.474583
-0.708473 0.685778 0.166655
-0.658253 0.483144 -0.577300
-0.951291 0.262146 0.162253
-0.755394 0.650652 -0.077664
-0.774129 0.401012 0.489810
0.367093 -0.573977 -0.731979
-0.131130 0.272086 -0.953296
0.488331 -0.306142 -0.817196
0.247957 -0.193108 -0.949329
-0.019325 -0.955343 0.294867
0.308760 -0.893900 -0.324976
-0.495147 -0.758038 0.424509
-0.676226 -0.286344 0.678768
-0.364806 -0.517208 0.774217
-0.843011 0.483333 0.236055
-0.730245 0.426863 0.533413
-0.789158 0.482735 0.379731
-0.976620 0.172534 -0.128238
-0.440370 0.552290 -0.707849
-0.932443 -0.246849 0.263848
-0.626070 0.215179 0.749489
-0.385800 0.502020 -0.774037
0.025627 -0.069445 -0.997256
-0.039770 -0.921917 -0.385339
0.491809 -0.395722 -0.775583
0.397779 -0.406705 -0.822413
0.620143 -0.368548 -0.692527
-0.222336 -0.734528 0.641120
-0.339310 -0.920901 0.191862
-0.420070 -0.086330 0.903376
-0.310900 -0.254044 0.915862
-0.017282 -0.190023 0.981628
-0.905221 -0.116897 0.408546
-0.866787 -0.130919 0.481187
-0.687957 0.261092 0.677160
-0.987206 0.077368 0.139421
-0.840747 0.485030 -0.240604
-0.931736 0.178444 0.316268
-0.285891 0.898515 -0.333071
-0.048727 0.692554 -0.719719
-0.112598 0.179653 -0.977265
0.402918 0.296681 -0.865816
0.638689 -0.275261 -0.718546
0.650682 -0.559415 -0.513485
0.143615 -0.952240 -0.269468
0.817194 -0.254137 -0.517310
0.763002 -0.474080 -0.439404
0.964964 -0.247507 -0.087090
0.628274 -0.776538 0.047544
0.650046 -0.371545 0.662868
-0.098080 -0.250140 0.963229
-0.048434 -0.095860 0.994216
0.770810 0.004089 0.637052
0.444365 -0.154277 0.882462
-0.839916 -0.035947 0.541524
-0.755592 0.055711 0.652670
-0.549232 0.341252 0.762818
-0.361718 0.303742 0.881420
-0.822303 0.218524 0.525419
0.178592 -0.025083 0.983603
-0.374929 0.922588 0.090881
-0.368155 0.613703 0.698448
0.430273 0.813913 -0.390398
0.146747 0.984281 -0.098271
0.918267 0.271851 -0.287894
0.928388 -0.290593 -0.231628
0.988855 -0.109437 -0.100941
0.946904 -0.311703 0.078833
0.969575 0.003742 0.244765
0.532393 -0.218947 0.817692
0.816323 -0.208968 0.538469
-0.494310 0.288851 0.819892
0.127301 0.392256 0.911005
0.576341 0.248793 0.778417
0.092853 0.844924 0.526765
0.667814 0.656730 0.350328
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
-0.013661 -0.025863 -0.004057
-0.011822 -0.023896 -0.008425
-0.013803 -0.026908 -0.003993
-0.013905 -0.026050 -0.002741
-0.012024 -0.022477 -0.003478
-0.013424 -0.022140 -0.000880
-0.011910 -0.027010 -0.009027
-0.012682 -0.027714 -0.006819
-0.010435 -0.020082 -0.007488
-0.009268 -0.022702 -0.008323
-0.011745 -0.027669 -0.002485
-0.010398 -0.028567 -0.006015
-0.011697 -0.026265 0.000328
-0.012616 -0.024168 0.000911
-0.011637 -0.019667 0.000295
-0.007323 -0.014970 -0.006505
-0.006878 -0.014404 -0.004275
-0.008640 -0.017907 -0.001675
-0.011125 -0.021380 0.002219
-0.009081 -0.027998 -0.007584
-0.004688 -0.014503 -0.006745
-0.001620 -0.024554 -0.003862
-0.002948 -0.016417 -0.006924
-0.005247 -0.027214 -0.002928
-0.004244 -0.027459 -0.004371
-0.003405 -0.024908 0.003243
-0.011494 -0.024014 0.003175
-0.003557 -0.022498 0.005508
-0.006393 -0.015370 0.000483
-0.006390 -0.015810 0.001282
-0.003838 -0.016383 0.004267
-0.007103 -0.013523 -0.004834
-0.004837 -0.012741 -0.005838
-0.006147 -0.012992 0.000610
-0.010003 -0.021571 0.004733
-0.002895 -0.009789 -0.005437
0.000477 -0.013368 -0.006868
-0.002214 -0.027800 -0.002398
0.001478 -0.025646 -0.001873
0.003186 -0.014688 -0.005971
0.003067 -0.016721 -0.004963
0.000716 -0.029113 0.006303
0.000702 -0.029953 0.004556
-0.005615 -0.019156 0.006846
-0.002754 -0.020649 0.006465
0.000138 -0.027014 0.007157
-0.004951 -0.014096 0.002447
-0.003800 -0.015528 0.004281
-0.004373 -0.017152 0.007763
-0.003356 -0.014774 0.005632
-0.007375 -0.012289 -0.003101
-0.006894 -0.011255 0.001543
-0.000168 -0.007025 -0.002638
0.002452 -0.008688 -0.006459
0.002393 -0.010394 -0.007203
0.004049 -0.009966 -0.007045
0.005027 -0.012240 -0.006566
0.001377 -0.028923 0.000399
0.000486 -0.029865 0.001249
0.004406 -0.019733 -0.002237
0.004847 -0.014447 -0.004353
0.005129 -0.016008 -0.001241
0.002655 -0.029199 0.003518
0.002639 -0.028099 0.005935
-0.001701 -0.018797 0.007322
-0.000225 -0.021341 0.007428
0.002701 -0.020423 0.006324
0.001681 -0.021416 0.006890
-0.005424 -0.012075 0.004458
-0.003336 -0.013121 0.006533
-0.002683 -0.014074 0.007181
-0.001663 -0.013427 0.007558
-0.003250 -0.013934 0.006653
0.001265 -0.015036 0.008488
0.000162 -0.006194 0.000696
-0.001251 -0.009225 0.005493
0.004049 -0.007243 -0.003664
0.003330 -0.005896 -0.000086
0.006673 -0.010579 -0.003715
0.006642 -0.011715 -0.003326
0.005578 -0.019518 0.000184
0.004435 -0.026331 0.003310
0.006810 -0.011927 0.003525
0.002095 -0.019074 0.007308
0.005528 -0.014984 0.005418
-0.002479 -0.013306 0.007087
0.000932 -0.013540 0.008327
0.004651 -0.011557 0.005686
0.004036 -0.006438 0.002998
0.005030 -0.006711 0.002757
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
3 0 2
0 4 1
4 0 5
3 5 0
6 7 1
2 1 7
8 1 4
6 1 9
9 1 8
10 2 11
7 11 2
10 12 2
12 3 2
13 5 3
3 12 13
14 4 5
8 4 15
15 4 16
17 16 4
17 4 14
18 14 5
18 5 13
7 6 11
19 11 6
19 6 9
9 8 15
9 15 20
21 19 9
9 20 22
9 22 21
10 11 23
10 23 12
24 23 11
11 19 24
12 23 25
12 26 13
12 27 26
25 27 12
18 13 26
28 17 14
29 28 14
14 18 30
29 14 30
16 31 15
15 31 32
15 32 20
17 28 16
33 16 28
31 16 33
34 18 26
30 18 34
19 21 24
35 20 32
20 35 36
36 22 20
21 37 24
22 38 21
38 37 21
39 22 36
39 40 22
22 40 38
23 24 37
37 25 23
41 27 25
42 41 25
37 42 25
27 34 26
43 27 44
27 43 34
44 27 45
41 45 27
33 28 46
46 28 29
47 29 30
46 29 47
34 43 30
48 30 43
49 30 48
30 49 47
31 33 50
50 32 31
50 35 32
33 51 50
33 46 51
35 52 53
50 52 35
53 54 35
36 35 54
54 55 36
55 56 36
36 56 39
37 38 57
37 57 58
58 42 37
59 57 38
40 59 38
39 60 40
60 39 56
61 59 40
61 40 60
42 62 41
62 63 41
45 41 63
58 62 42
43 64 48
44 64 43
64 44 65
45 65 44
66 45 63
66 67 45
67 65 45
68 51 46
47 68 46
49 69 47
69 68 47
70 48 71
49 48 72
48 70 72
48 73 71
48 64 73
49 72 69
74 52 50
51 74 50
75 74 51
75 51 68
52 76 53
52 74 77
52 77 76
55 53 76
54 53 55
56 55 78
76 78 55
60 56 79
79 56 78
80 57 59
81 57 80
81 62 57
57 62 58
59 61 80
79 61 60
79 82 61
80 61 66
83 66 61
83 61 84
82 84 61
62 81 63
63 81 66
73 64 83
83 64 65
67 83 65
81 80 66
66 83 67
69 75 68
72 85 69
85 75 69
70 71 85
70 85 72
86 71 73
71 86 75
85 71 75
73 87 86
73 84 87
83 84 73
77 74 88
74 75 88
88 75 86
76 77 89
89 78 76
88 89 77
89 82 78
79 78 82
87 82 89
84 82 87
86 87 89
89 88 86
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444 447 450 453 456 459 462 465 468 471 474 477 480 483 486 489 492 495 498 501 504 507 510 513 516 519 522 525 528
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,522 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="142" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="216">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
-0.682012 0.731341 -0.000002
0.999921 0.012550 -0.000000
-0.538379 0.649305 0.537169
-0.525183 0.850123 -0.038389
-0.553571 0.647705 -0.523487
0.879861 -0.472545 0.050459
0.914355 0.090392 0.394695
0.800160 -0.599787 0.000000
0.914354 0.090393 -0.394697
0.876395 -0.477971 -0.058960
0.137071 0.984914 0.105627
-0.802760 0.431551 0.411510
-0.936045 0.164865 -0.310868
-0.611976 0.413103 -0.674412
-0.208412 0.390452 -0.896723
-0.164872 0.433503 -0.885941
-0.353986 0.934335 -0.041366
-0.145933 0.490810 0.858958
-0.181189 0.454212 0.872274
-0.458103 0.308095 0.833798
-0.898801 0.065080 0.433498
0.063441 0.923035 -0.379448
-0.845804 0.382110 -0.372301
0.852290 -0.316670 0.416321
-0.144329 -0.826459 -0.544182
-0.831372 -0.063245 -0.552106
0.260347 -0.965515 -0.000007
0.005978 -0.833654 0.552254
0.653036 -0.432593 -0.621617
-0.869930 -0.091017 0.484704
-0.172415 0.818844 0.547511
0.170351 0.936122 0.307661
-0.636376 0.697210 -0.330037
-0.147083 -0.684594 -0.713931
0.246649 -0.525430 -0.814302
-0.241785 -0.348356 -0.905643
-0.572268 0.256892 -0.778791
-0.987236 -0.153947 0.040823
-0.527205 0.216918 0.821585
-0.241771 -0.348349 0.905649
0.309169 -0.527312 0.791427
0.117619 -0.702313 0.702084
-0.703023 0.599824 0.382060
0.040224 0.825369 -0.563160
-0.109611 0.428639 -0.896802
-0.512447 0.356628 0.781162
-0.453010 -0.754295 -0.475206
0.670876 -0.713968 -0.200437
-0.668406 -0.200092 -0.716378
0.346870 -0.937913 -0.000005
-0.750762 0.430246 -0.501244
-0.925113 0.332163 -0.183943
-0.324201 0.202433 -0.924075
-0.453373 -0.754201 0.475009
0.586567 -0.803814 -0.099103
-0.727335 -0.243955 0.641459
-0.750418 0.430215 0.501784
-0.925113 0.332163 0.183943
-0.721981 0.577895 0.380499
-0.610646 0.738819 0.285056
-0.564497 0.818426 0.107339
-0.175817 0.902660 -0.392802
0.168079 0.951856 0.256358
-0.661597 0.699234 -0.270853
0.220106 0.971606 0.086806
0.533412 -0.845855 0.000011
-0.249452 -0.968387 0.000013
-0.886551 -0.458005 0.065261
-0.886551 -0.458005 -0.065261
-0.736449 0.598237 0.315839
-0.011381 0.997941 0.063120
-0.031497 0.984715 -0.171304
-0.630803 0.773456 0.062079
-0.293091 0.854560 0.428747
-0.812134 0.542920 -0.213722
-0.791403 0.468454 -0.392724
-0.733866 -0.660207 0.159895
0.661504 -0.634989 -0.398999
0.428284 -0.588252 -0.685953
0.209089 -0.383649 -0.899497
0.285236 -0.394549 -0.873483
-0.009363 0.775361 -0.631449
-0.281879 0.428318 -0.858538
0.622164 0.607225 -0.494155
0.523201 0.595183 -0.609932
-0.247794 -0.514204 -0.821092
-0.079301 -0.975169 -0.206777
0.109875 0.750203 -0.652015
0.038690 0.541153 -0.840034
-0.117224 -0.981220 -0.153184
0.412531 -0.704978 -0.576910
-0.570648 0.371845 -0.732183
-0.729229 -0.678698 -0.087143
0.415642 -0.609146 0.675413
0.657988 -0.652266 0.376299
0.210627 -0.380779 0.900357
0.353044 -0.419846 0.836116
-0.045326 0.755166 0.653965
-0.410375 0.645738 0.643906
0.455288 0.794785 0.401285
0.534260 0.812275 -0.234041
-0.247927 -0.513887 0.821251
0.047840 -0.983962 0.171846
0.281206 0.895111 0.345977
0.132858 0.589586 0.796704
0.553206 -0.763061 -0.334216
0.202248 -0.945196 0.256319
-0.570399 0.371863 0.732368
0.146184 0.869150 0.472449
-0.094860 0.934311 0.343604
0.131526 0.990645 0.036366
-0.461909 0.754989 0.465437
-0.908364 -0.414398 0.056114
-0.364983 0.551997 -0.749725
-0.344931 0.479814 0.806723
-0.182824 0.964429 0.190922
-0.081829 0.821390 -0.564467
-0.033465 0.982068 -0.185532
-0.497589 0.766581 -0.405905
0.954310 -0.296438 0.037650
0.818347 -0.566169 0.098795
0.698002 0.715827 -0.019633
0.538141 0.663375 -0.519940
0.590854 0.657489 -0.467547
0.534517 0.469273 -0.702905
0.307194 0.589770 -0.746862
0.426472 0.761366 -0.488307
0.411455 0.239824 -0.879312
0.264012 0.420032 -0.868258
0.957876 -0.276257 0.078454
0.695775 0.516811 0.498802
0.545791 0.647445 0.531909
0.629375 0.651750 0.423212
0.519205 0.337111 0.785355
0.656126 0.613267 0.439776
0.450070 0.848193 -0.279297
0.465660 0.294967 0.834359
0.649050 0.705490 0.284637
0.470146 0.796935 -0.379285
-0.565328 0.755544 0.330995
0.275873 0.583262 0.764003
0.501738 0.800442 0.327950
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
-0.009008 0.097740 0.000128
-0.003098 0.106414 0.000128
-0.002501 0.106676 -0.003561
-0.009939 0.097487 0.000128
-0.002501 0.106676 0.003817
-0.004522 0.090511 -0.001808
-0.003179 0.105718 -0.001265
-0.004523 0.090509 0.000128
-0.003179 0.105718 0.001522
-0.004522 0.090511 0.002064
0.002113 0.110556 -0.010386
-0.003443 0.106470 -0.004225
-0.004757 0.100578 -0.010064
-0.010909 0.092771 -0.004490
-0.016433 0.091014 -0.003197
-0.022020 0.090403 -0.003005
-0.022315 0.092426 0.000128
-0.022020 0.090403 0.003261
-0.016433 0.091014 0.003453
-0.010909 0.092771 0.004746
-0.004757 0.100578 0.010320
0.002113 0.110556 0.010642
-0.003443 0.106470 0.004482
0.000445 0.096415 -0.008382
-0.010386 0.088215 -0.005690
-0.005515 0.092887 -0.010451
-0.010390 0.088208 0.000128
-0.010386 0.088215 0.005946
0.000445 0.096415 0.008638
-0.005515 0.092887 0.010707
0.007247 0.105851 -0.010453
0.005798 0.107156 -0.011699
0.000876 0.106103 -0.019497
-0.012942 0.087820 -0.004900
-0.018829 0.084166 -0.004765
-0.022442 0.081851 -0.004639
-0.027475 0.086452 -0.003677
-0.027300 0.090804 0.000128
-0.027475 0.086452 0.003933
-0.022442 0.081851 0.004896
-0.018829 0.084166 0.005021
-0.012942 0.087820 0.005156
0.000876 0.106103 0.019753
0.005798 0.107156 0.011955
0.007247 0.105851 0.010709
0.011620 0.100649 -0.009312
0.009059 0.094876 -0.008371
0.009440 0.106221 -0.018251
-0.003239 0.094165 -0.019665
-0.012945 0.087814 0.000128
-0.001300 0.100487 -0.020956
-0.004274 0.093756 -0.014824
0.011620 0.100649 0.009569
0.009059 0.094876 0.008627
0.009440 0.106221 0.018508
-0.003239 0.094165 0.019921
-0.001300 0.100487 0.021212
-0.004274 0.093756 0.015080
0.011847 0.110862 -0.008428
0.011683 0.112269 -0.009360
0.010204 0.107232 -0.011199
0.011533 0.107802 -0.014183
0.007356 0.110068 -0.016077
0.003538 0.101760 -0.020771
0.008679 0.111845 -0.021827
-0.018831 0.084161 0.000128
-0.022445 0.081846 0.000128
-0.027134 0.083269 -0.003587
-0.027134 0.083269 0.003843
0.003538 0.101760 0.021015
0.008679 0.111845 0.022072
0.007356 0.110068 0.016333
0.010204 0.107232 0.011455
0.011533 0.107802 0.014439
0.011683 0.112269 0.009617
0.011847 0.110862 0.008684
0.010496 0.093915 -0.003494
0.029364 0.094633 -0.007279
0.026170 0.095683 -0.012782
0.022477 0.095663 -0.014277
0.018544 0.100568 -0.015675
0.012099 0.105042 -0.015570
0.007048 0.109562 -0.023719
0.009865 0.100218 -0.020411
0.009090 0.107606 -0.025800
0.008453 0.099145 -0.027718
0.012110 0.097840 -0.024772
0.015210 0.105271 -0.016655
0.015753 0.104336 -0.020017
0.015266 0.097424 -0.022562
0.017506 0.102791 -0.019334
0.005327 0.102296 -0.024136
0.010496 0.093915 0.003750
0.026170 0.095683 0.013038
0.029364 0.094633 0.007535
0.022477 0.095663 0.014533
0.018544 0.100568 0.015931
0.012099 0.105042 0.015826
0.007048 0.109562 0.023964
0.009090 0.107606 0.026045
0.009865 0.100218 0.020656
0.008453 0.099145 0.027962
0.012110 0.097840 0.025016
0.016031 0.098667 0.019360
0.015210 0.105271 0.016911
0.017782 0.097150 0.018707
0.015266 0.097424 0.022806
0.005327 0.102296 0.024380
0.013654 0.115136 -0.009939
0.014426 0.110233 -0.004396
0.015152 0.114334 -0.012208
0.013473 0.109845 -0.002037
0.010545 0.093217 0.000128
0.014309 0.113410 -0.013387
0.014309 0.113410 0.013643
0.015152 0.114334 0.012464
0.013654 0.115136 0.010195
0.014426 0.110233 0.004652
0.013473 0.109845 0.002293
0.030648 0.094798 -0.001843
0.030614 0.094943 0.000128
0.028127 0.108602 -0.006414
0.024738 0.109446 -0.009989
0.022266 0.110609 -0.011366
0.018807 0.107466 -0.014712
0.017348 0.104116 -0.019839
0.012902 0.099904 -0.021025
0.010615 0.100553 -0.027170
0.014897 0.098650 -0.021810
0.030648 0.094798 0.002099
0.028127 0.108602 0.006670
0.024738 0.109446 0.010245
0.022266 0.110609 0.011622
0.018807 0.107466 0.014968
0.017625 0.098452 0.019190
0.012902 0.099904 0.021270
0.010615 0.100553 0.027415
0.014897 0.098650 0.022055
0.017407 0.113472 -0.011447
0.016281 0.109094 0.000128
0.021851 0.121234 0.000128
0.017407 0.113472 0.011703
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
2 3 0
4 1 0
0 3 4
5 6 1
7 5 1
1 6 2
1 8 9
1 9 7
4 8 1
10 2 6
10 11 2
2 12 13 3
12 2 11
3 14 15 16
13 14 3
16 17 18 3
3 18 19
3 19 20 4
8 4 21
4 22 21
22 4 20
23 6 5
23 5 24 25
24 5 7 26
10 6 23
26 7 9 27
28 8 21
9 8 28
29 27 9 28
30 31 10 23
10 32 12 11
10 31 32
13 12 24 33
12 25 24
12 32 25
14 13 33 34
14 34 35
15 14 35
16 15 36 37
35 36 15
37 38 17 16
39 18 17
17 38 39
39 40 18
40 41 19 18
41 27 20 19
22 20 42 21
27 29 20
29 42 20
28 21 43 44
42 43 21
30 23 45
45 23 46
47 46 23
47 23 25 48
49 33 24 26
25 32 50
25 50 51
25 51 48
26 27 41 49
52 28 44
53 28 52
28 53 54
55 29 28 54
56 42 29
57 56 29
55 57 29
58 59 30 45
59 60 30
60 31 30
61 62 31 60
62 32 31
32 63 50
32 62 64 63
65 34 33 49
66 35 34 65
66 37 35
67 35 37
67 36 35
36 67 37
39 37 66
37 68 38
37 39 68
39 38 68
65 40 39 66
49 41 40 65
56 69 42
69 70 71 42
43 42 71
72 43 71 73
44 43 72
52 44 74 75
44 72 74
58 45 46
58 46 76
77 76 46 78
78 46 79
79 46 80
46 47 80
81 47 62 61
47 64 62
47 82 64
47 83 84 82
47 48 85
47 85 86
83 47 87 88
47 81 87
89 90 47
90 80 47
47 86 89
51 50 48
50 91 48
91 85 48
63 91 50
53 52 75
92 53 75
93 53 92 94
95 53 93
96 53 95
96 54 53
73 71 54 97
71 70 54
70 98 54
98 99 100 54
101 55 54
102 101 54
103 104 54 100
104 97 54
54 105 106
54 96 105
106 102 54
55 56 57
55 107 56
55 101 107
56 107 69
108 58 109
110 59 58 108
109 58 111
111 58 76 112
110 113 60 59
113 61 60
81 61 113
82 63 64
91 63 82
70 69 98
98 69 107
74 72 114 115
72 73 114
114 73 97
116 75 74 115
117 75 116
118 75 117
112 92 75 118
76 77 119 120 112
77 121 119
78 122 121 77
79 122 78
80 123 122 79
80 124 123
80 90 125 124
87 81 113
82 84 91
126 84 83
126 83 88
84 127 91
126 127 84
91 127 85
86 85 127
89 86 127 128
125 88 87 124
124 87 113
128 126 88 125
90 89 128 125
112 120 129 94 92
94 130 131 93
93 131 95
129 130 94
95 131 132 96
132 133 96
133 134 105 96
114 97 104
107 99 98
100 99 135
107 136 99
99 136 135
103 100 135
101 136 107
136 101 102
137 136 102 106
133 104 103 134
134 103 135 137
114 104 133
134 137 106 105
123 138 108 109
138 110 108
123 109 122
122 109 121
109 139 140 121
109 111 139
124 113 110 138
139 111 112
112 118 139
141 115 114 133
116 115 141
117 116 141 132
131 117 132
130 117 131
130 140 139 117
139 118 117
121 140 120 119
129 120 140 130
123 124 138
127 126 128
141 133 132
137 135 136
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 40 43 47 50 54 57 61 64 67 70 73 77 81 84 88 91 94 98 102 106 109 113 116 119 123 126 129 133 136 140 143 146 149 153 157 161 164 167 171 174 177 180 183 187 191 194 197 200 204 207 210 213 217 220 223 226 230 233 236 240 243 246 250 254 258 261 264 267 270 273 276 279 282 286 290 293 297 300 304 307 311 314 317 320 324 327 330 333 337 340 343 347 350 353 357 360 363 366 369 372 375 378 381 384 387 391 394 397 400 404 407 410 414 417 420 424 427 430 433 436 439 442 445 448 451 455 458 462 466 469 472 475 478 481 484 488 491 494 498 501 504 508 513 516 520 523 527 530 534 537 540 543 546 549 552 555 558 562 566 569 573 577 582 586 589 592 596 599 603 606 609 612 615 618 621 624 627 631 635 639 642 646 650 653 656 659 663 666 670 673 676 680 683 687 690 693 697 700 704 708 711 714 717 720
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,522 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="142" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="216">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
-0.593483 0.804847 0.000000
0.995701 -0.092627 0.000000
-0.463933 0.708806 0.531375
-0.423310 0.905140 -0.039112
-0.479335 0.708644 -0.517747
0.823176 -0.565594 0.049838
0.922366 -0.006848 0.386255
0.728862 -0.684661 0.000000
0.922366 -0.006847 -0.386257
0.819148 -0.570620 -0.058222
0.248602 0.963049 0.103605
-0.754487 0.516162 0.405372
-0.915369 0.263243 -0.304637
-0.567162 0.481531 -0.668173
-0.165073 0.418527 -0.893077
-0.114821 0.456524 -0.882271
-0.243639 0.968947 -0.042220
-0.089424 0.511443 0.854652
-0.129793 0.478442 0.868474
-0.425664 0.359238 0.830517
-0.890205 0.159009 0.426908
0.172205 0.910879 -0.375028
-0.802636 0.470660 -0.366409
0.812478 -0.408375 0.416064
-0.244657 -0.807983 -0.536010
-0.839820 0.024833 -0.542296
0.146743 -0.989175 -0.000004
-0.094752 -0.832131 0.546425
0.604164 -0.501204 -0.619500
-0.879924 0.001776 0.475112
-0.082514 0.837356 0.540395
0.275065 0.912633 0.302390
-0.543797 0.772559 -0.327777
-0.232420 -0.664776 -0.709968
0.181682 -0.548792 -0.815977
-0.282186 -0.319250 -0.904683
-0.542389 0.320081 -0.776764
-0.997981 -0.048643 0.040839
-0.502227 0.276072 0.819483
-0.282183 -0.319248 0.904684
0.245467 -0.557601 0.792986
0.032599 -0.712742 0.700668
-0.660502 0.713472 0.233871
0.136958 0.819682 -0.556205
-0.060218 0.445990 -0.893010
-0.473755 0.415482 0.776486
-0.540285 -0.701557 -0.464662
0.589649 -0.797084 -0.130277
-0.625619 -0.151403 -0.765296
0.236505 -0.971630 -0.000006
-0.671820 0.492236 -0.553499
-0.884700 0.430054 -0.179886
-0.304044 0.240538 -0.921791
-0.540633 -0.701418 0.464466
0.664829 -0.729534 -0.160572
-0.692333 -0.192660 0.695383
-0.758679 0.317640 0.568781
-0.884700 0.430054 0.179886
-0.656352 0.656017 0.372616
-0.523846 0.805229 0.277834
-0.467405 0.877943 0.103673
-0.074137 0.919208 -0.386731
0.261407 0.910765 0.319646
-0.578192 0.766275 -0.280209
0.292150 0.929550 0.224913
0.433371 -0.901216 0.000006
-0.355015 -0.934861 0.000011
-0.928721 -0.366067 0.058932
-0.928721 -0.366067 -0.058932
-0.519755 0.553460 0.650798
0.414100 0.880953 0.229004
0.143378 0.954770 -0.260495
-0.538895 0.840124 0.061513
-0.195266 0.885211 0.422225
-0.747448 0.628993 -0.213747
-0.738070 0.552520 -0.387264
-0.803905 -0.574029 0.155654
0.590415 -0.704797 -0.393283
0.366008 -0.632728 -0.682417
0.168625 -0.406793 -0.897822
0.242888 -0.429739 -0.869672
0.075570 0.776354 -0.625751
-0.233543 0.512135 -0.826544
0.718254 0.460122 -0.521919
0.595380 0.569075 -0.567164
-0.280540 -0.462880 -0.840856
-0.188438 -0.958308 -0.214796
0.195108 0.720901 -0.665007
0.048990 0.416698 -0.907724
-0.360394 -0.924526 -0.123966
0.234626 -0.776753 -0.584470
-0.493870 0.418619 -0.762135
-0.800535 -0.593236 -0.084934
0.350924 -0.652288 0.671843
0.584563 -0.721535 0.371044
0.170520 -0.404070 0.898694
0.242566 -0.427882 0.870677
0.038531 0.760703 0.647956
0.159890 0.471712 0.867135
0.624484 0.604711 0.494312
0.771979 0.619863 0.140777
-0.280786 -0.462077 0.841215
-0.063429 -0.981418 0.181097
0.104975 0.528466 0.842439
0.054606 0.872427 0.485684
-0.068927 -0.849373 0.523273
-0.429563 -0.900865 -0.062589
-0.359516 0.219556 0.906942
0.244470 0.851046 0.464709
0.155700 0.947447 0.279468
0.245891 0.968612 0.036435
-0.377192 0.803969 0.459739
-0.949359 -0.309455 0.054368
-0.301454 0.595936 -0.744302
-0.290877 0.522614 0.801415
-0.073378 0.980179 0.184024
0.009547 0.830609 -0.556775
0.161548 0.944529 -0.285951
-0.410707 0.818727 -0.401256
0.874941 -0.458164 -0.156727
0.688916 -0.721365 -0.070903
0.821372 0.542656 -0.175708
0.614006 0.599793 -0.513075
0.664115 0.588335 -0.461316
0.590707 0.413467 -0.692900
0.288747 0.519328 -0.804315
0.502611 0.649435 -0.570627
0.430468 0.192053 -0.881937
0.211699 0.335721 -0.917864
0.889100 -0.452907 0.066160
0.825947 0.525042 0.205289
0.620044 0.583011 0.525018
0.700901 0.578481 0.417249
0.509660 0.432684 0.743660
0.125111 0.417309 0.900111
0.740083 0.356528 0.570233
0.490120 0.239680 0.838055
0.331179 0.290594 0.897706
0.558858 0.740667 -0.372948
-0.079492 0.995529 0.051027
0.759010 0.650487 0.027758
0.590079 0.740336 0.322038
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
-0.008257 0.082988 0.000132
-0.001465 0.090917 0.000132
-0.000844 0.091108 -0.003659
-0.009209 0.082845 0.000132
-0.000844 0.091108 0.003922
-0.004559 0.075287 -0.001858
-0.001619 0.090236 -0.001300
-0.004560 0.075285 0.000132
-0.001619 0.090236 0.001564
-0.004559 0.075287 0.002121
0.004154 0.094426 -0.010672
-0.001802 0.091013 -0.004342
-0.003730 0.085314 -0.010342
-0.010671 0.078273 -0.004614
-0.016349 0.077171 -0.003285
-0.021970 0.077213 -0.003088
-0.022050 0.079256 0.000132
-0.021970 0.077213 0.003351
-0.016349 0.077171 0.003548
-0.010671 0.078273 0.004877
-0.003730 0.085314 0.010605
0.004154 0.094426 0.010936
-0.001802 0.091013 0.004605
0.001003 0.080574 -0.008613
-0.010632 0.073687 -0.005847
-0.005296 0.077762 -0.010739
-0.010636 0.073681 0.000132
-0.010632 0.073687 0.006110
0.001003 0.080574 0.008877
-0.005296 0.077762 0.011002
0.008762 0.089156 -0.010742
0.007459 0.090621 -0.012022
0.002454 0.090147 -0.020035
-0.013215 0.073592 -0.005035
-0.019454 0.070647 -0.004896
-0.023291 0.068767 -0.004768
-0.027810 0.073922 -0.003779
-0.027178 0.078226 0.000132
-0.027810 0.073922 0.004042
-0.023291 0.068767 0.005031
-0.019454 0.070647 0.005160
-0.013215 0.073592 0.005298
0.002454 0.090147 0.020298
0.007459 0.090621 0.012285
0.008762 0.089156 0.011005
0.012562 0.083481 -0.009569
0.009407 0.078043 -0.008602
0.010982 0.089269 -0.018755
-0.002897 0.078767 -0.020208
-0.013218 0.073587 0.000132
-0.000302 0.084821 -0.021535
-0.003970 0.078480 -0.015233
0.012562 0.083481 0.009833
0.009407 0.078043 0.008865
0.010982 0.089269 0.019019
-0.002897 0.078767 0.020471
-0.000302 0.084821 0.021798
-0.003970 0.078480 0.015496
0.013865 0.093599 -0.008660
0.013850 0.095015 -0.009619
0.011849 0.090184 -0.011509
0.013230 0.090595 -0.014574
0.009315 0.093333 -0.016521
0.005220 0.086116 -0.020203
0.011412 0.095558 -0.021231
-0.019457 0.070642 0.000132
-0.023294 0.068763 0.000132
-0.027808 0.070721 -0.003686
-0.027808 0.070721 0.003949
0.004969 0.091251 0.022614
0.011412 0.095558 0.021469
0.009315 0.093333 0.016784
0.011849 0.090184 0.011772
0.013230 0.090595 0.014837
0.013850 0.095015 0.009882
0.013865 0.093599 0.008923
0.010734 0.076922 -0.003590
0.029571 0.075442 -0.007480
0.026506 0.076856 -0.013135
0.022832 0.077266 -0.014671
0.019439 0.082595 -0.016108
0.013501 0.087789 -0.016000
0.009546 0.093474 -0.023071
0.011345 0.083859 -0.019853
0.011366 0.091295 -0.025096
0.009826 0.082953 -0.026960
0.013321 0.081237 -0.024095
0.016619 0.087654 -0.017115
0.017061 0.086663 -0.020569
0.016415 0.080462 -0.021946
0.018641 0.084924 -0.019867
0.007056 0.086444 -0.023477
0.010734 0.076922 0.003853
0.026506 0.076856 0.013398
0.029571 0.075442 0.007743
0.022832 0.077266 0.014934
0.019439 0.082595 0.016371
0.013501 0.087789 0.016263
0.009546 0.093474 0.023309
0.011366 0.091295 0.025333
0.011095 0.088952 0.022227
0.009826 0.082953 0.027198
0.013321 0.081237 0.024333
0.017061 0.086663 0.020833
0.016619 0.087654 0.017378
0.018641 0.084924 0.020130
0.016415 0.080462 0.022183
0.007056 0.086444 0.023714
0.016113 0.097634 -0.010213
0.016363 0.092674 -0.004517
0.017518 0.096664 -0.012545
0.015375 0.092399 -0.002093
0.010710 0.076224 0.000132
0.016582 0.095843 -0.013756
0.016582 0.095843 0.014019
0.017518 0.096664 0.012808
0.016113 0.097634 0.010476
0.016363 0.092674 0.004780
0.015375 0.092399 0.002356
0.030866 0.075457 -0.001894
0.030848 0.075605 0.000132
0.029815 0.089461 -0.006591
0.026534 0.090693 -0.010265
0.024199 0.092136 -0.011679
0.020428 0.089416 -0.015118
0.018623 0.086259 -0.020387
0.014331 0.083199 -0.020451
0.012126 0.084106 -0.026428
0.016179 0.081723 -0.021215
0.030866 0.075457 0.002157
0.029815 0.089461 0.006854
0.026534 0.090693 0.010528
0.024199 0.092136 0.011943
0.020428 0.089416 0.015381
0.018623 0.086259 0.020650
0.014331 0.083199 0.020689
0.012126 0.084106 0.026666
0.016179 0.081723 0.021453
0.019669 0.095545 -0.011763
0.018087 0.091327 0.000132
0.030717 0.089337 0.000132
0.019669 0.095545 0.012026
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
2 3 0
4 1 0
0 3 4
5 6 1
7 5 1
1 6 2
1 8 9
1 9 7
4 8 1
10 2 6
10 11 2
2 12 13 3
12 2 11
3 14 15 16
13 14 3
16 17 18 3
3 18 19
3 19 20 4
8 4 21
4 22 21
22 4 20
23 6 5
23 5 24 25
24 5 7 26
10 6 23
26 7 9 27
28 8 21
9 8 28
29 27 9 28
30 31 10 23
10 32 12 11
10 31 32
13 12 24 33
12 25 24
12 32 25
14 13 33 34
14 34 35
15 14 35
16 15 36 37
35 36 15
37 38 17 16
39 18 17
17 38 39
39 40 18
40 41 19 18
41 27 20 19
22 20 42 21
27 29 20
29 42 20
28 21 43 44
42 43 21
30 23 45
45 23 46
47 46 23
47 23 25 48
49 33 24 26
25 32 50
25 50 51
25 51 48
26 27 41 49
52 28 44
53 28 52
28 53 54
55 29 28 54
56 42 29
57 56 29
55 57 29
58 59 30 45
59 60 30
60 31 30
61 62 31 60
62 32 31
32 63 50
32 62 64 63
65 34 33 49
66 35 34 65
66 37 35
67 35 37
67 36 35
36 67 37
39 37 66
37 68 38
37 39 68
39 38 68
65 40 39 66
49 41 40 65
56 69 42
69 70 71 42
43 42 71
72 43 71 73
44 43 72
52 44 74 75
44 72 74
58 45 46
58 46 76
77 76 46 78
78 46 79
79 46 80
46 47 80
81 47 62 61
47 64 62
47 82 64
47 83 84 82
47 48 85
47 85 86
83 47 87 88
47 81 87
89 90 47
90 80 47
47 86 89
51 50 48
50 91 48
91 85 48
63 91 50
53 52 75
92 53 75
93 53 92 94
95 53 93
96 53 95
96 54 53
73 71 54 97
71 70 54
70 98 54
98 99 100 54
101 55 54
102 101 54
103 104 54 100
104 97 54
54 105 106
54 96 105
106 102 54
55 56 57
55 107 56
55 101 107
56 107 69
108 58 109
110 59 58 108
109 58 111
111 58 76 112
110 113 60 59
113 61 60
81 61 113
82 63 64
91 63 82
70 69 98
98 69 107
74 72 114 115
72 73 114
114 73 97
116 75 74 115
117 75 116
118 75 117
112 92 75 118
76 77 119 120 112
77 121 119
78 122 121 77
79 122 78
80 123 122 79
80 124 123
80 90 125 124
87 81 113
82 84 91
126 84 83
126 83 88
84 127 91
126 127 84
91 127 85
86 85 127
89 86 127 128
125 88 87 124
124 87 113
128 126 88 125
90 89 128 125
112 120 129 94 92
94 130 131 93
93 131 95
129 130 94
95 131 132 96
132 133 96
133 134 105 96
114 97 104
107 99 98
100 99 135
107 136 99
99 136 135
103 100 135
101 136 107
136 101 102
137 136 102 106
133 104 103 134
134 103 135 137
114 104 133
134 137 106 105
123 138 108 109
138 110 108
123 109 122
122 109 121
109 139 140 121
109 111 139
124 113 110 138
139 111 112
112 118 139
141 115 114 133
116 115 141
117 116 141 132
131 117 132
130 117 131
130 140 139 117
139 118 117
121 140 120 119
129 120 140 130
123 124 138
127 126 128
141 133 132
137 135 136
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 40 43 47 50 54 57 61 64 67 70 73 77 81 84 88 91 94 98 102 106 109 113 116 119 123 126 129 133 136 140 143 146 149 153 157 161 164 167 171 174 177 180 183 187 191 194 197 200 204 207 210 213 217 220 223 226 230 233 236 240 243 246 250 254 258 261 264 267 270 273 276 279 282 286 290 293 297 300 304 307 311 314 317 320 324 327 330 333 337 340 343 347 350 353 357 360 363 366 369 372 375 378 381 384 387 391 394 397 400 404 407 410 414 417 420 424 427 430 433 436 439 442 445 448 451 455 458 462 466 469 472 475 478 481 484 488 491 494 498 501 504 508 513 516 520 523 527 530 534 537 540 543 546 549 552 555 558 562 566 569 573 577 582 586 589 592 596 599 603 606 609 612 615 618 621 624 627 631 635 639 642 646 650 653 656 659 663 666 670 673 676 680 683 687 690 693 697 700 704 708 711 714 717 720
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,522 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="142" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="216">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
-0.469202 0.883091 0.000000
0.975185 -0.221390 -0.000010
-0.364800 0.774137 0.517333
-0.286954 0.957086 -0.040537
-0.380316 0.775535 -0.503890
0.739541 -0.671361 0.048508
0.921031 -0.128934 0.367531
0.628199 -0.778053 -0.000015
0.921031 -0.128931 -0.367529
0.734933 -0.675776 -0.056566
0.382507 0.918697 0.098406
-0.686923 0.612199 0.391599
-0.877989 0.380914 -0.289895
-0.505481 0.565132 -0.652009
-0.108614 0.455939 -0.883359
-0.048634 0.485582 -0.872837
-0.102416 0.993772 -0.043923
-0.016039 0.536521 0.843735
-0.063438 0.508673 0.858620
-0.382345 0.422069 0.821992
-0.869679 0.272202 0.411781
0.307899 0.878659 -0.364908
-0.740512 0.571636 -0.353375
0.749913 -0.514820 0.415442
-0.371725 -0.770167 -0.518328
-0.843211 0.136741 -0.519901
0.003871 -0.999992 -0.000002
-0.223266 -0.815714 0.533632
0.537198 -0.578530 -0.613776
-0.883032 0.119843 0.453754
0.027866 0.852074 0.522679
0.399130 0.869939 0.289657
-0.484054 0.830795 -0.274720
-0.342034 -0.624354 -0.702278
0.094505 -0.563670 -0.820576
-0.330649 -0.274261 -0.903024
-0.498332 0.397288 -0.770602
-0.995969 0.079890 0.040781
-0.464884 0.350216 0.813162
-0.330637 -0.274270 0.903026
0.160884 -0.581994 0.797119
-0.077163 -0.712165 0.697759
-0.551537 0.802467 0.227716
0.258161 0.801346 -0.539627
0.004434 0.468214 -0.883604
-0.419862 0.489700 0.764140
-0.642968 -0.625101 -0.442540
0.480919 -0.876277 -0.029239
-0.658613 -0.157755 -0.735760
0.095748 -0.995406 -0.000003
-0.681247 0.510327 -0.524852
-0.820660 0.545463 -0.170256
-0.277248 0.291090 -0.915642
-0.643279 -0.624911 0.442356
0.461643 -0.871721 -0.164282
-0.721206 -0.190863 0.665907
-0.735897 0.448202 0.507513
-0.820662 0.545461 0.170255
-0.565175 0.745719 0.352819
-0.404919 0.876339 0.260904
-0.336653 0.936745 0.095782
0.052109 0.926828 -0.371852
0.380151 0.863017 0.332696
-0.472417 0.776532 -0.416917
0.472494 0.877530 0.081792
0.301276 -0.953537 0.000003
-0.479099 -0.877761 0.000008
-0.966281 -0.253593 0.044623
-0.966280 -0.253598 -0.044617
-0.409992 0.700325 0.584338
0.598981 0.768713 0.224283
0.273627 0.921750 -0.274781
-0.413798 0.908435 0.059306
-0.070634 0.910892 0.406555
-0.654122 0.725601 -0.213605
-0.662227 0.649845 -0.373037
-0.877201 -0.457072 0.146977
0.497059 -0.780823 -0.378481
0.291537 -0.680469 -0.672286
0.120704 -0.433662 -0.892954
0.188352 -0.475881 -0.859105
0.176698 0.771110 -0.611692
0.160636 0.619286 -0.768558
0.740120 0.670972 -0.044940
0.745895 0.445838 -0.494843
-0.026068 -0.592669 -0.805024
-0.044333 -0.913893 -0.403527
0.312392 0.779067 -0.543568
0.407033 0.712881 -0.571073
0.220249 -0.892401 -0.393841
0.380456 -0.802647 -0.459359
-0.302436 0.387553 -0.870824
-0.875036 -0.477361 -0.080242
0.273361 -0.698263 0.661591
0.487985 -0.796319 0.357416
0.123034 -0.431126 0.893864
0.188411 -0.473993 0.860135
0.139881 0.761353 0.633068
0.352149 0.544782 0.761054
0.771271 0.508164 0.383289
0.824445 0.565918 -0.005160
-0.024745 -0.590495 0.806662
0.014486 -0.928562 0.370894
0.250287 0.637799 0.728401
0.178446 0.862607 0.473356
0.057742 -0.803242 0.592847
-0.231896 -0.836621 0.496276
-0.236226 0.292461 0.926641
0.362790 0.817972 0.446437
0.287621 0.920624 0.264056
0.384180 0.922558 0.035950
-0.269166 0.854410 0.444448
-0.984211 -0.169531 0.050869
-0.215209 0.648298 -0.730339
-0.217568 0.576661 0.787481
0.062343 0.983607 0.169204
0.121827 0.834463 -0.537429
0.293847 0.916681 -0.270830
-0.299034 0.871604 -0.388439
0.808102 -0.570007 -0.148538
0.584385 -0.808697 -0.067110
0.888914 0.426264 -0.167723
0.701008 0.509558 -0.498938
0.746051 0.492615 -0.448039
0.658366 0.339967 -0.671548
0.680929 0.433096 -0.590562
0.707809 0.573745 -0.412096
0.476631 0.172095 -0.862094
0.598598 0.333195 -0.728465
0.821668 -0.566485 0.062898
0.891949 0.407422 0.196045
0.705156 0.491782 0.510788
0.779607 0.478051 0.404573
0.582855 0.372303 0.722268
0.370240 0.496828 0.784910
0.725381 0.423797 0.542419
0.500951 0.250776 0.828347
0.454666 0.448534 0.769478
0.659710 0.660030 -0.359364
0.053471 0.997431 0.047679
0.840264 0.541564 0.025769
0.689518 0.654825 0.309465
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
-0.009926 0.070241 0.000140
-0.002164 0.077119 0.000140
-0.001523 0.077218 -0.003896
-0.010889 0.070235 0.000140
-0.001523 0.077218 0.004177
-0.007261 0.062087 -0.001978
-0.002405 0.076466 -0.001385
-0.007262 0.062085 0.000140
-0.002405 0.076466 0.001665
-0.007260 0.062087 0.002258
0.003862 0.079788 -0.011364
-0.002485 0.077262 -0.004624
-0.005137 0.071895 -0.011012
-0.012932 0.065918 -0.004913
-0.018704 0.065640 -0.003498
-0.024271 0.066486 -0.003289
-0.024084 0.068521 0.000140
-0.024271 0.066486 0.003569
-0.018704 0.065640 0.003778
-0.012932 0.065918 0.005193
-0.005137 0.071895 0.011293
0.003862 0.079788 0.011645
-0.002485 0.077262 0.004904
-0.001061 0.066525 -0.009172
-0.013489 0.061373 -0.006226
-0.007670 0.064643 -0.011435
-0.013494 0.061367 0.000140
-0.013489 0.061373 0.006506
-0.001061 0.066525 0.009452
-0.007670 0.064643 0.011716
0.007746 0.073911 -0.011438
0.006644 0.075548 -0.012801
0.001621 0.075795 -0.021334
-0.016062 0.061648 -0.005362
-0.022629 0.059626 -0.005214
-0.026677 0.058314 -0.005077
-0.030488 0.064064 -0.004023
-0.029302 0.068234 0.000140
-0.030488 0.064064 0.004304
-0.026677 0.058314 0.005357
-0.022629 0.059626 0.005494
-0.016062 0.061648 0.005642
0.001621 0.075795 0.021614
0.006644 0.075548 0.013081
0.007746 0.073911 0.011718
0.010776 0.067748 -0.010190
0.006941 0.062817 -0.009160
0.009961 0.073705 -0.019971
-0.005162 0.065294 -0.021518
-0.016066 0.061643 0.000140
-0.001803 0.070917 -0.022931
-0.006262 0.065164 -0.016221
0.010776 0.067748 0.010470
0.006941 0.062817 0.009440
0.009961 0.073705 0.020251
-0.005162 0.065294 0.021798
-0.001803 0.070917 0.023211
-0.006262 0.065164 0.016501
0.013381 0.077579 -0.009222
0.013550 0.078983 -0.010242
0.010939 0.074487 -0.012255
0.012362 0.074696 -0.015519
0.008837 0.077967 -0.017592
0.004378 0.074078 -0.023228
0.011895 0.079819 -0.022017
-0.022633 0.059621 0.000140
-0.026681 0.058310 0.000140
-0.030901 0.060894 -0.003925
-0.030901 0.060894 0.004205
0.004258 0.076528 0.024080
0.011895 0.079819 0.022264
0.008837 0.077967 0.017872
0.010939 0.074487 0.012535
0.012362 0.074696 0.015799
0.013550 0.078983 0.010523
0.013381 0.077579 0.009502
0.008112 0.061516 -0.003823
0.026593 0.057355 -0.007964
0.023738 0.059194 -0.013986
0.020149 0.060126 -0.015622
0.017478 0.065887 -0.017152
0.012266 0.071879 -0.017037
0.009770 0.078020 -0.023925
0.010151 0.070953 -0.022826
0.011286 0.075608 -0.026025
0.008658 0.067573 -0.027959
0.011823 0.066864 -0.026899
0.015339 0.071299 -0.018225
0.015649 0.070255 -0.021903
0.014787 0.065655 -0.024499
0.016989 0.068307 -0.021155
0.006300 0.072929 -0.026208
0.008112 0.061516 0.004103
0.023738 0.059194 0.014267
0.026593 0.057355 0.008245
0.020149 0.060126 0.015902
0.017478 0.065887 0.017432
0.012266 0.071879 0.017317
0.009770 0.078020 0.024172
0.011286 0.075608 0.026271
0.010033 0.073375 0.023668
0.008658 0.067573 0.028205
0.011823 0.066864 0.027164
0.015649 0.070255 0.022183
0.015339 0.071299 0.018505
0.016989 0.068307 0.021436
0.014787 0.065655 0.024764
0.006300 0.072929 0.026474
0.016134 0.081252 -0.010875
0.015738 0.076305 -0.004810
0.017400 0.080090 -0.013358
0.014722 0.076175 -0.002229
0.007997 0.060829 0.000140
0.016366 0.079412 -0.014648
0.016366 0.079412 0.014928
0.017400 0.080090 0.013639
0.016134 0.081252 0.011156
0.015738 0.076305 0.005090
0.014722 0.076175 0.002509
0.027878 0.057185 -0.002017
0.027879 0.057334 0.000140
0.028656 0.071200 -0.007018
0.025563 0.072889 -0.010930
0.023436 0.074652 -0.012437
0.019344 0.072499 -0.016098
0.017145 0.069631 -0.021709
0.013024 0.069869 -0.023513
0.011090 0.068389 -0.027407
0.014720 0.066942 -0.023683
0.027878 0.057185 0.002297
0.028656 0.071200 0.007298
0.025563 0.072889 0.011210
0.023436 0.074652 0.012717
0.019344 0.072499 0.016378
0.017145 0.069631 0.021989
0.013082 0.068672 0.023096
0.011090 0.068389 0.027653
0.014720 0.066942 0.023949
0.019388 0.078675 -0.012525
0.017272 0.074726 0.000140
0.029534 0.070948 0.000140
0.019388 0.078675 0.012805
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
2 3 0
4 1 0
0 3 4
5 6 1
7 5 1
1 6 2
1 8 9
1 9 7
4 8 1
10 2 6
10 11 2
2 12 13 3
12 2 11
3 14 15 16
13 14 3
16 17 18 3
3 18 19
3 19 20 4
8 4 21
4 22 21
22 4 20
23 6 5
23 5 24 25
24 5 7 26
10 6 23
26 7 9 27
28 8 21
9 8 28
29 27 9 28
30 31 10 23
10 32 12 11
10 31 32
13 12 24 33
12 25 24
12 32 25
14 13 33 34
14 34 35
15 14 35
16 15 36 37
35 36 15
37 38 17 16
39 18 17
17 38 39
39 40 18
40 41 19 18
41 27 20 19
22 20 42 21
27 29 20
29 42 20
28 21 43 44
42 43 21
30 23 45
45 23 46
47 46 23
47 23 25 48
49 33 24 26
25 32 50
25 50 51
25 51 48
26 27 41 49
52 28 44
53 28 52
28 53 54
55 29 28 54
56 42 29
57 56 29
55 57 29
58 59 30 45
59 60 30
60 31 30
61 62 31 60
62 32 31
32 63 50
32 62 64 63
65 34 33 49
66 35 34 65
66 37 35
67 35 37
67 36 35
36 67 37
39 37 66
37 68 38
37 39 68
39 38 68
65 40 39 66
49 41 40 65
56 69 42
69 70 71 42
43 42 71
72 43 71 73
44 43 72
52 44 74 75
44 72 74
58 45 46
58 46 76
77 76 46 78
78 46 79
79 46 80
46 47 80
81 47 62 61
47 64 62
47 82 64
47 83 84 82
47 48 85
47 85 86
83 47 87 88
47 81 87
89 90 47
90 80 47
47 86 89
51 50 48
50 91 48
91 85 48
63 91 50
53 52 75
92 53 75
93 53 92 94
95 53 93
96 53 95
96 54 53
73 71 54 97
71 70 54
70 98 54
98 99 100 54
101 55 54
102 101 54
103 104 54 100
104 97 54
54 105 106
54 96 105
106 102 54
55 56 57
55 107 56
55 101 107
56 107 69
108 58 109
110 59 58 108
109 58 111
111 58 76 112
110 113 60 59
113 61 60
81 61 113
82 63 64
91 63 82
70 69 98
98 69 107
74 72 114 115
72 73 114
114 73 97
116 75 74 115
117 75 116
118 75 117
112 92 75 118
76 77 119 120 112
77 121 119
78 122 121 77
79 122 78
80 123 122 79
80 124 123
80 90 125 124
87 81 113
82 84 91
126 84 83
126 83 88
84 127 91
126 127 84
91 127 85
86 85 127
89 86 127 128
125 88 87 124
124 87 113
128 126 88 125
90 89 128 125
112 120 129 94 92
94 130 131 93
93 131 95
129 130 94
95 131 132 96
132 133 96
133 134 105 96
114 97 104
107 99 98
100 99 135
107 136 99
99 136 135
103 100 135
101 136 107
136 101 102
137 136 102 106
133 104 103 134
134 103 135 137
114 104 133
134 137 106 105
123 138 108 109
138 110 108
123 109 122
122 109 121
109 139 140 121
109 111 139
124 113 110 138
139 111 112
112 118 139
141 115 114 133
116 115 141
117 116 141 132
131 117 132
130 117 131
130 140 139 117
139 118 117
121 140 120 119
129 120 140 130
123 124 138
127 126 128
141 133 132
137 135 136
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 40 43 47 50 54 57 61 64 67 70 73 77 81 84 88 91 94 98 102 106 109 113 116 119 123 126 129 133 136 140 143 146 149 153 157 161 164 167 171 174 177 180 183 187 191 194 197 200 204 207 210 213 217 220 223 226 230 233 236 240 243 246 250 254 258 261 264 267 270 273 276 279 282 286 290 293 297 300 304 307 311 314 317 320 324 327 330 333 337 340 343 347 350 353 357 360 363 366 369 372 375 378 381 384 387 391 394 397 400 404 407 410 414 417 420 424 427 430 433 436 439 442 445 448 451 455 458 462 466 469 472 475 478 481 484 488 491 494 498 501 504 508 513 516 520 523 527 530 534 537 540 543 546 549 552 555 558 562 566 569 573 577 582 586 589 592 596 599 603 606 609 612 615 618 621 624 627 631 635 639 642 646 650 653 656 659 663 666 670 673 676 680 683 687 690 693 697 700 704 708 711 714 717 720
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,522 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="142" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="216">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
-0.004211 0.999991 0.000000
0.990772 -0.135539 0.000000
0.046770 0.958850 0.280035
-0.000568 0.999479 -0.032280
0.042313 0.960888 -0.273687
0.597296 -0.801702 -0.022599
0.920678 -0.180844 0.345902
0.365782 -0.930701 0.000000
0.920678 -0.180845 -0.345901
0.546294 -0.834443 -0.072576
0.496617 0.866076 0.057312
-0.624761 0.687957 0.369309
-0.725617 0.486550 -0.486569
-0.200673 0.602089 -0.772800
0.003130 0.467017 -0.884243
0.057884 0.522262 -0.850818
0.096847 0.995176 -0.015668
0.079516 0.536048 0.840434
0.028580 0.500025 0.865539
-0.132983 0.414545 0.900260
-0.758935 0.299021 0.578449
0.454112 0.815528 -0.358742
-0.707770 0.634097 -0.311421
0.715518 -0.610690 0.339252
-0.445415 -0.619922 -0.645989
-0.798804 0.154380 -0.581445
-0.276730 -0.960948 0.000001
-0.383950 -0.772239 0.506191
0.413525 -0.638768 -0.648824
-0.880551 0.122836 0.457757
0.018142 0.937459 0.347622
0.391231 0.892231 0.225526
-0.492385 0.856530 -0.154637
-0.225196 -0.593088 -0.773003
-0.004596 -0.595074 -0.803658
-0.367824 -0.245027 -0.897032
-0.378272 0.463581 -0.801251
-0.963109 0.264627 0.048932
-0.357356 0.402488 0.842793
-0.367825 -0.245027 0.897032
0.023214 -0.615341 0.787919
-0.067701 -0.764504 0.641054
-0.531119 0.825657 0.190270
0.229733 0.822681 -0.520018
0.004748 0.564037 -0.825736
-0.399793 0.528014 0.749245
-0.688971 -0.587606 -0.424308
0.469418 -0.868190 -0.160914
-0.703823 -0.146000 -0.695210
0.024328 -0.999704 -0.000000
-0.736026 0.547094 -0.398690
-0.805285 0.568301 -0.168967
-0.270772 0.320232 -0.907818
-0.689283 -0.587316 0.424203
0.479252 -0.872635 0.093946
-0.759603 -0.172414 0.627117
-0.735880 0.547103 0.398946
-0.805505 0.567946 0.169112
-0.527989 0.782478 0.330085
-0.352993 0.903641 0.242547
-0.306539 0.950513 0.050589
0.071813 0.939888 -0.333848
0.394999 0.823709 0.406792
-0.494213 0.822094 -0.282692
0.578652 0.815456 0.013900
0.071155 -0.997465 -0.000001
-0.676891 -0.736083 -0.000000
-0.996327 -0.085362 -0.006810
-0.996327 -0.085362 0.006810
-0.509590 0.807858 0.296115
0.538863 0.841416 0.040568
0.241122 0.908990 -0.339998
-0.404360 0.910058 0.091035
-0.099232 0.922318 0.373474
-0.613416 0.760461 -0.213119
-0.632390 0.687880 -0.356236
-0.902833 -0.407309 0.137812
0.463560 -0.809389 -0.360557
0.273555 -0.700922 -0.658693
0.109135 -0.450099 -0.886284
0.163673 -0.496840 -0.852268
0.208958 0.774806 -0.596667
0.330062 0.613857 -0.717104
0.728669 0.612349 0.306709
0.800111 0.375117 -0.468092
0.129289 -0.990353 -0.049847
-0.333780 -0.590900 0.734458
0.352966 0.838106 -0.415926
0.538216 0.841601 -0.045071
-0.565465 -0.711727 0.416766
0.302798 -0.817438 -0.490009
-0.299281 0.453803 -0.839341
-0.900417 -0.428467 -0.075267
0.253790 -0.718221 0.647881
0.452748 -0.823963 0.340741
0.111663 -0.447581 0.887244
0.165626 -0.495166 0.852865
0.188394 0.758846 0.623427
0.309255 0.777795 0.547172
0.780350 0.530455 0.331167
0.651368 0.672323 -0.351714
0.128626 -0.990570 0.047187
-0.384425 -0.568914 -0.727017
0.323166 0.941522 -0.095399
0.225624 0.853116 0.470412
0.245240 -0.779484 0.576422
-0.727893 -0.624994 -0.282053
-0.297625 0.453567 0.840058
0.410444 0.806088 0.426330
0.338440 0.907755 0.247867
0.440903 0.896871 0.035034
-0.229570 0.875152 0.425919
-0.993269 -0.105787 0.047176
-0.177548 0.677688 -0.713594
-0.181439 0.597878 0.780783
0.115301 0.981276 0.154281
0.164859 0.841129 -0.515095
0.345305 0.903215 -0.254887
-0.257094 0.891591 -0.372785
0.778650 -0.611819 -0.139217
0.540181 -0.839202 -0.062798
0.912338 0.377152 -0.159360
0.738843 0.469181 -0.483716
0.780166 0.451195 -0.433316
0.689019 0.309576 -0.655298
0.844248 0.441507 -0.303838
0.732479 0.680320 -0.025300
0.480387 0.557938 -0.676708
0.628276 0.758636 -0.172456
0.791235 -0.608651 0.059089
0.915203 0.357289 0.186406
0.742525 0.450847 0.495372
0.811353 0.434863 0.390642
0.609372 0.349362 0.711766
0.703259 0.680454 0.205936
0.662307 0.735176 -0.144449
0.387991 0.598943 0.700521
0.371015 0.928511 -0.014668
0.699186 0.626244 -0.344902
0.099467 0.994059 0.044202
0.868028 0.495937 0.023957
0.727604 0.618698 0.296319
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
-0.015695 0.058569 0.000150
-0.004604 0.059201 0.000150
-0.003959 0.059264 -0.004180
-0.016656 0.058617 0.000150
-0.003959 0.059264 0.004480
-0.010469 0.044483 -0.002122
-0.004879 0.058563 -0.001485
-0.010470 0.044482 0.000150
-0.004879 0.058563 0.001786
-0.010469 0.044483 0.002422
0.001549 0.060672 -0.012190
-0.004918 0.059362 -0.004960
-0.007843 0.054154 -0.011813
-0.020043 0.054433 -0.005270
-0.027442 0.056134 -0.003752
-0.032958 0.057294 -0.003527
-0.032668 0.059315 0.000150
-0.032958 0.057294 0.003828
-0.027442 0.056134 0.004053
-0.020043 0.054433 0.005571
-0.007843 0.054154 0.012113
0.001549 0.060672 0.012491
-0.004918 0.059362 0.005260
-0.004048 0.048563 -0.009838
-0.020835 0.049402 -0.006679
-0.010746 0.047058 -0.012267
-0.020840 0.049397 0.000150
-0.020835 0.049402 0.006979
-0.004048 0.048563 0.010139
-0.010746 0.047058 0.012567
0.005128 0.055436 -0.012269
0.004110 0.056281 -0.013732
-0.000892 0.057663 -0.022495
-0.026825 0.050112 -0.005751
-0.033487 0.048990 -0.005593
-0.037594 0.049090 -0.005446
-0.040287 0.056876 -0.004316
-0.038888 0.060971 0.000150
-0.040287 0.056876 0.004616
-0.037594 0.049090 0.005746
-0.033487 0.048990 0.005893
-0.026825 0.050112 0.006052
-0.000892 0.057663 0.022791
0.004110 0.056281 0.014032
0.005128 0.055436 0.012570
0.007837 0.049113 -0.010931
0.003754 0.044407 -0.009825
0.007330 0.055105 -0.021058
-0.008207 0.047566 -0.022689
-0.026829 0.050108 0.000150
-0.004563 0.052988 -0.024179
-0.009313 0.047499 -0.017400
0.007837 0.049113 0.011231
0.003754 0.044407 0.010126
0.007330 0.055105 0.021354
-0.008207 0.047566 0.022985
-0.004563 0.052988 0.024475
-0.009313 0.047499 0.017700
0.010945 0.058779 -0.009892
0.011187 0.060171 -0.010987
0.008347 0.055830 -0.013145
0.009779 0.055959 -0.016647
0.006426 0.059423 -0.018550
0.001779 0.058246 -0.024668
0.009792 0.062279 -0.023900
-0.033491 0.048986 0.000150
-0.037598 0.049086 0.000150
-0.041680 0.051906 -0.004210
-0.041680 0.051906 0.004511
0.001779 0.058246 0.024959
0.009792 0.062279 0.024167
0.006426 0.059423 0.018845
0.008347 0.055830 0.013446
0.009779 0.055959 0.016948
0.011187 0.060171 0.011288
0.010945 0.058779 0.010193
0.004856 0.043043 -0.004101
0.023101 0.037841 -0.008543
0.020344 0.039838 -0.015003
0.016807 0.040972 -0.016757
0.014435 0.046875 -0.018399
0.009538 0.053152 -0.018276
0.007576 0.060596 -0.025971
0.007384 0.054771 -0.024241
0.008965 0.058096 -0.028250
0.005921 0.050197 -0.030349
0.008847 0.051762 -0.029420
0.012578 0.052399 -0.019549
0.012833 0.051338 -0.023095
0.011746 0.050370 -0.026796
0.014072 0.049318 -0.022307
0.003641 0.057354 -0.028665
0.004856 0.043043 0.004401
0.020344 0.039838 0.015303
0.023101 0.037841 0.008844
0.016807 0.040972 0.017058
0.014435 0.046875 0.018699
0.009538 0.053152 0.018576
0.007576 0.060596 0.026239
0.008965 0.058096 0.028518
0.007384 0.054771 0.024532
0.005921 0.050197 0.030617
0.008847 0.051762 0.029711
0.012833 0.051338 0.023391
0.012578 0.052398 0.019512
0.014072 0.049318 0.022603
0.011746 0.050370 0.027086
0.003641 0.057354 0.028956
0.013884 0.062290 -0.011666
0.013234 0.057374 -0.005159
0.015089 0.061058 -0.014329
0.012213 0.057302 -0.002390
0.004705 0.042363 0.000150
0.014021 0.060440 -0.015713
0.014021 0.060440 0.016013
0.015089 0.061058 0.014630
0.013884 0.062290 0.011966
0.013234 0.057374 0.005460
0.012213 0.057302 0.002691
0.024376 0.037597 -0.002163
0.024384 0.037747 0.000150
0.025873 0.051545 -0.007528
0.022871 0.053406 -0.011725
0.020837 0.055287 -0.013341
0.016640 0.053370 -0.017268
0.014296 0.050630 -0.022891
0.010198 0.053516 -0.024971
0.008392 0.050879 -0.029750
0.011745 0.051675 -0.025903
0.024376 0.037597 0.002464
0.025873 0.051545 0.007829
0.022871 0.053406 0.012025
0.020837 0.055287 0.013641
0.016640 0.053370 0.017569
0.014296 0.050630 0.023186
0.010198 0.053516 0.025261
0.008392 0.050879 0.030018
0.011745 0.051675 0.026194
0.017001 0.059533 -0.013436
0.014684 0.055710 0.000150
0.026737 0.051243 0.000150
0.017001 0.059533 0.013736
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
2 3 0
4 1 0
0 3 4
5 6 1
7 5 1
1 6 2
1 8 9
1 9 7
4 8 1
10 2 6
10 11 2
2 12 13 3
12 2 11
3 14 15 16
13 14 3
16 17 18 3
3 18 19
3 19 20 4
8 4 21
4 22 21
22 4 20
23 6 5
23 5 24 25
24 5 7 26
10 6 23
26 7 9 27
28 8 21
9 8 28
29 27 9 28
30 31 10 23
10 32 12 11
10 31 32
13 12 24 33
12 25 24
12 32 25
14 13 33 34
14 34 35
15 14 35
16 15 36 37
35 36 15
37 38 17 16
39 18 17
17 38 39
39 40 18
40 41 19 18
41 27 20 19
22 20 42 21
27 29 20
29 42 20
28 21 43 44
42 43 21
30 23 45
45 23 46
47 46 23
47 23 25 48
49 33 24 26
25 32 50
25 50 51
25 51 48
26 27 41 49
52 28 44
53 28 52
28 53 54
55 29 28 54
56 42 29
57 56 29
55 57 29
58 59 30 45
59 60 30
60 31 30
61 62 31 60
62 32 31
32 63 50
32 62 64 63
65 34 33 49
66 35 34 65
66 37 35
67 35 37
67 36 35
36 67 37
39 37 66
37 68 38
37 39 68
39 38 68
65 40 39 66
49 41 40 65
56 69 42
69 70 71 42
43 42 71
72 43 71 73
44 43 72
52 44 74 75
44 72 74
58 45 46
58 46 76
77 76 46 78
78 46 79
79 46 80
46 47 80
81 47 62 61
47 64 62
47 82 64
47 83 84 82
47 48 85
47 85 86
83 47 87 88
47 81 87
89 90 47
90 80 47
47 86 89
51 50 48
50 91 48
91 85 48
63 91 50
53 52 75
92 53 75
93 53 92 94
95 53 93
96 53 95
96 54 53
73 71 54 97
71 70 54
70 98 54
98 99 100 54
101 55 54
102 101 54
103 104 54 100
104 97 54
54 105 106
54 96 105
106 102 54
55 56 57
55 107 56
55 101 107
56 107 69
108 58 109
110 59 58 108
109 58 111
111 58 76 112
110 113 60 59
113 61 60
81 61 113
82 63 64
91 63 82
70 69 98
98 69 107
74 72 114 115
72 73 114
114 73 97
116 75 74 115
117 75 116
118 75 117
112 92 75 118
76 77 119 120 112
77 121 119
78 122 121 77
79 122 78
80 123 122 79
80 124 123
80 90 125 124
87 81 113
82 84 91
126 84 83
126 83 88
84 127 91
126 127 84
91 127 85
86 85 127
89 86 127 128
125 88 87 124
124 87 113
128 126 88 125
90 89 128 125
112 120 129 94 92
94 130 131 93
93 131 95
129 130 94
95 131 132 96
132 133 96
133 134 105 96
114 97 104
107 99 98
100 99 135
107 136 99
99 136 135
103 100 135
101 136 107
136 101 102
137 136 102 106
133 104 103 134
134 103 135 137
114 104 133
134 137 106 105
123 138 108 109
138 110 108
123 109 122
122 109 121
109 139 140 121
109 111 139
124 113 110 138
139 111 112
112 118 139
141 115 114 133
116 115 141
117 116 141 132
131 117 132
130 117 131
130 140 139 117
139 118 117
121 140 120 119
129 120 140 130
123 124 138
127 126 128
141 133 132
137 135 136
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 40 43 47 50 54 57 61 64 67 70 73 77 81 84 88 91 94 98 102 106 109 113 116 119 123 126 129 133 136 140 143 146 149 153 157 161 164 167 171 174 177 180 183 187 191 194 197 200 204 207 210 213 217 220 223 226 230 233 236 240 243 246 250 254 258 261 264 267 270 273 276 279 282 286 290 293 297 300 304 307 311 314 317 320 324 327 330 333 337 340 343 347 350 353 357 360 363 366 369 372 375 378 381 384 387 391 394 397 400 404 407 410 414 417 420 424 427 430 433 436 439 442 445 448 451 455 458 462 466 469 472 475 478 481 484 488 491 494 498 501 504 508 513 516 520 523 527 530 534 537 540 543 546 549 552 555 558 562 566 569 573 577 582 586 589 592 596 599 603 606 609 612 615 618 621 624 627 631 635 639 642 646 650 653 656 659 663 666 670 673 676 680 683 687 690 693 697 700 704 708 711 714 717 720
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,522 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="142" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="216">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
0.020927 0.999781 0.000000
0.987336 -0.158646 0.000000
0.071143 0.957425 0.279778
0.024535 0.999178 -0.032283
0.066738 0.959576 -0.273423
0.578031 -0.815705 -0.022478
0.916176 -0.202356 0.345940
0.343372 -0.939199 0.000000
0.916176 -0.202357 -0.345938
0.526278 -0.847194 -0.072756
0.518410 0.852947 0.061085
-0.607122 0.702721 0.370926
-0.715267 0.504437 -0.483669
-0.185508 0.606711 -0.772974
0.014883 0.466824 -0.884225
0.071006 0.520771 -0.850738
0.121825 0.992428 -0.015689
0.092967 0.534015 0.840348
0.041148 0.499205 0.865507
-0.122518 0.417646 0.900312
-0.754440 0.316642 0.574941
0.473755 0.802431 -0.362851
-0.693691 0.648618 -0.313191
0.696785 -0.629468 0.343891
-0.460591 -0.608901 -0.645829
-0.793365 0.186606 -0.579439
-0.300567 -0.953761 -0.000006
-0.402973 -0.762588 0.506035
0.395486 -0.648772 -0.650143
-0.876257 0.157651 0.455324
0.041311 0.936713 0.347652
0.409760 0.886175 0.216312
-0.502097 0.858759 -0.102136
-0.239981 -0.587467 -0.772846
-0.019564 -0.594822 -0.803620
-0.373750 -0.236466 -0.896880
-0.366799 0.472338 -0.801470
-0.956742 0.286791 0.048948
-0.347399 0.410733 0.842978
-0.373748 -0.236465 0.896882
0.007725 -0.615749 0.787904
-0.086884 -0.762657 0.640942
-0.559419 0.815159 0.150221
0.253384 0.821143 -0.511391
0.018934 0.563850 -0.825660
-0.386676 0.537408 0.749449
-0.701438 -0.576493 -0.419094
0.337890 -0.881361 -0.330201
-0.726780 0.022155 -0.686513
-0.000822 -1.000000 -0.000003
-0.735921 0.565159 -0.372849
-0.777527 0.608259 -0.159602
-0.262753 0.326489 -0.907946
-0.701718 -0.576276 0.418924
0.326431 -0.900203 0.288233
-0.782640 0.005237 0.622452
-0.735920 0.565160 0.372849
-0.777533 0.608251 0.159604
-0.508917 0.794918 0.330317
-0.330629 0.912070 0.242515
-0.283666 0.957956 0.043054
0.095960 0.938722 -0.331047
0.409513 0.804306 0.430571
-0.677460 0.719545 -0.152655
0.461771 0.790464 0.402410
0.046030 -0.998940 0.000008
-0.694373 -0.719615 0.000006
-0.998032 -0.062334 -0.006850
-0.998032 -0.062334 0.006850
-0.704888 0.685977 0.180469
0.356129 0.869815 -0.341459
0.239398 0.903700 -0.354986
-0.379099 0.920266 0.096925
-0.066100 0.926175 0.371257
-0.594688 0.775199 -0.213103
-0.615640 0.702758 -0.356537
-0.912392 -0.385381 0.137921
0.443860 -0.820187 -0.360945
0.256198 -0.707051 -0.659122
0.097952 -0.452359 -0.886440
0.156997 -0.510115 -0.845657
0.230779 0.769674 -0.595267
-0.173811 0.546381 -0.819303
0.727712 0.623633 0.285512
0.669002 0.502115 -0.548011
-0.310405 -0.459890 -0.831955
-0.202447 -0.907962 -0.366906
0.371406 0.831545 -0.413026
0.557972 0.828806 -0.041808
0.013716 -0.931945 -0.362341
0.297003 -0.840183 -0.453743
-0.575274 0.476661 -0.664721
-0.910487 -0.406613 -0.075356
0.236022 -0.723880 0.648299
0.432669 -0.834524 0.341127
0.100541 -0.449900 0.887401
0.157313 -0.508239 0.846727
0.195401 0.763391 0.615673
-0.210526 0.735579 0.643897
0.641819 0.668578 0.375595
0.674022 0.662616 -0.326549
-0.310409 -0.459888 0.831955
-0.096375 -0.929942 0.354851
0.354187 0.933464 -0.056547
0.248810 0.852691 0.459359
0.247603 -0.805064 0.539041
0.154598 -0.901424 0.404394
-0.575276 0.476664 0.664717
0.429778 0.796031 0.426176
0.360660 0.899188 0.247761
0.462331 0.886014 0.035054
-0.208098 0.880353 0.426231
-0.995492 -0.082271 0.047201
-0.160802 0.681919 -0.713533
-0.171427 0.614010 0.770457
0.139134 0.978205 0.154130
0.185287 0.836888 -0.515061
0.367410 0.894485 -0.254769
-0.235261 0.897487 -0.373055
0.764136 -0.629809 -0.139415
0.519899 -0.851909 -0.062894
0.920978 0.355524 -0.159380
0.749803 0.451572 -0.483611
0.790607 0.432687 -0.433270
0.701001 0.297202 -0.648281
0.864978 0.420836 -0.273331
0.780988 0.614319 0.112559
0.502908 0.117031 -0.856381
0.862192 0.296110 -0.411028
0.776791 -0.626971 0.059185
0.923385 0.335594 0.186380
0.753044 0.433148 0.495285
0.821348 0.415687 0.390631
0.630773 0.337395 0.698778
0.729206 0.650688 0.211809
0.708286 0.662610 -0.243473
0.578708 0.163379 0.799002
0.858518 0.451888 0.242371
0.713947 0.609483 -0.344689
0.124071 0.991289 0.044182
0.879626 0.475067 0.023864
0.742104 0.601325 0.296125
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
-0.019495 0.041165 0.000150
-0.008393 0.041518 0.000150
-0.007746 0.041565 -0.004180
-0.020456 0.041238 0.000150
-0.007746 0.041565 0.004480
-0.014592 0.026954 -0.002122
-0.008682 0.040887 -0.001485
-0.014594 0.026952 0.000150
-0.008682 0.040887 0.001786
-0.014592 0.026954 0.002422
-0.002206 0.042833 -0.012190
-0.008703 0.041686 -0.004960
-0.011746 0.036555 -0.011813
-0.023938 0.037140 -0.005270
-0.031296 0.039028 -0.003752
-0.036785 0.040326 -0.003527
-0.036448 0.042339 0.000150
-0.036785 0.040326 0.003828
-0.031296 0.039028 0.004053
-0.023938 0.037140 0.005571
-0.011746 0.036555 0.012113
-0.002206 0.042833 0.012491
-0.008703 0.041686 0.005260
-0.008079 0.030870 -0.009838
-0.024844 0.032131 -0.006679
-0.014810 0.029535 -0.012267
-0.024849 0.032127 0.000150
-0.024844 0.032131 0.006979
-0.008079 0.030870 0.010139
-0.014810 0.029535 0.012567
0.001252 0.037510 -0.012269
0.000253 0.038379 -0.013732
-0.004716 0.039888 -0.022884
-0.030817 0.032992 -0.005751
-0.037503 0.032039 -0.005593
-0.041608 0.032242 -0.005446
-0.044123 0.040093 -0.004316
-0.042630 0.044151 0.000150
-0.044123 0.040093 0.004616
-0.041608 0.032242 0.005746
-0.037503 0.032039 0.005893
-0.030817 0.032992 0.006052
-0.004716 0.039888 0.023185
0.000253 0.038379 0.014032
0.001252 0.037510 0.012570
0.003817 0.031120 -0.010931
-0.000374 0.026520 -0.009825
0.003446 0.037123 -0.021423
-0.012261 0.029979 -0.023082
-0.030821 0.032988 0.000150
-0.008493 0.035308 -0.024598
-0.013368 0.029939 -0.017400
0.003817 0.031120 0.011231
-0.000374 0.026520 0.010126
0.003446 0.037123 0.021724
-0.012261 0.029979 0.023383
-0.008493 0.035308 0.024898
-0.013368 0.029939 0.017700
0.007145 0.040704 -0.009892
0.007418 0.042090 -0.010987
0.004480 0.037822 -0.013145
0.005914 0.037915 -0.016647
0.002642 0.041462 -0.018870
-0.002032 0.040403 -0.025530
0.005964 0.048380 -0.026828
-0.037507 0.032035 0.000150
-0.041612 0.032238 0.000150
-0.045628 0.035160 -0.004210
-0.045628 0.035160 0.004511
-0.002032 0.040403 0.025830
0.005964 0.048380 0.027129
0.002642 0.041462 0.019171
0.004480 0.037822 0.013446
0.005914 0.037915 0.016948
0.007418 0.042090 0.011288
0.007145 0.040704 0.010193
0.000697 0.025128 -0.004101
0.018819 0.019468 -0.008543
0.016109 0.021535 -0.015003
0.012599 0.022757 -0.016757
0.010362 0.028717 -0.018399
0.005609 0.035115 -0.018276
0.003711 0.046731 -0.029154
0.003493 0.036789 -0.025087
0.005043 0.044161 -0.031712
0.001822 0.036232 -0.034068
0.004887 0.033744 -0.030447
0.008631 0.034286 -0.019549
0.008863 0.033219 -0.023495
0.007753 0.032280 -0.027731
0.010055 0.031169 -0.022693
-0.000191 0.039465 -0.029666
0.000697 0.025128 0.004401
0.016109 0.021535 0.015303
0.018819 0.019468 0.008844
0.012599 0.022757 0.017058
0.010362 0.028717 0.018699
0.005609 0.035115 0.018576
0.003711 0.046731 0.029454
0.005043 0.044161 0.032012
0.003493 0.036789 0.025388
0.001822 0.036232 0.034369
0.004887 0.033744 0.030748
0.008863 0.033219 0.023796
0.008631 0.034286 0.019850
0.010055 0.031169 0.022994
0.007753 0.032280 0.028032
-0.000191 0.039465 0.029967
0.010163 0.044140 -0.011666
0.009401 0.039242 -0.005159
0.011340 0.042878 -0.014329
0.008378 0.039196 -0.002390
0.000531 0.024452 0.000150
0.010258 0.042287 -0.015713
0.010258 0.042287 0.016013
0.011340 0.042878 0.014630
0.010163 0.044140 0.011966
0.009401 0.039242 0.005460
0.008378 0.039196 0.002691
0.020089 0.019193 -0.002163
0.020101 0.019342 0.000150
0.021905 0.033097 -0.007528
0.018946 0.035033 -0.011725
0.016955 0.036964 -0.013341
0.012715 0.035154 -0.017268
0.010309 0.032475 -0.023287
0.006278 0.035464 -0.025842
0.004308 0.036858 -0.033396
0.007782 0.033584 -0.026808
0.020089 0.019193 0.002464
0.021905 0.033097 0.007829
0.018946 0.035033 0.012025
0.016955 0.036964 0.013641
0.012715 0.035154 0.017569
0.010309 0.032475 0.023587
0.006278 0.035464 0.026143
0.004308 0.036858 0.033696
0.007782 0.033584 0.027108
0.013217 0.041305 -0.013436
0.010813 0.037542 0.000150
0.022762 0.032774 0.000150
0.013217 0.041305 0.013736
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
2 3 0
4 1 0
0 3 4
5 6 1
7 5 1
1 6 2
1 8 9
1 9 7
4 8 1
10 2 6
10 11 2
2 12 13 3
12 2 11
3 14 15 16
13 14 3
16 17 18 3
3 18 19
3 19 20 4
8 4 21
4 22 21
22 4 20
23 6 5
23 5 24 25
24 5 7 26
10 6 23
26 7 9 27
28 8 21
9 8 28
29 27 9 28
30 31 10 23
10 32 12 11
10 31 32
13 12 24 33
12 25 24
12 32 25
14 13 33 34
14 34 35
15 14 35
16 15 36 37
35 36 15
37 38 17 16
39 18 17
17 38 39
39 40 18
40 41 19 18
41 27 20 19
22 20 42 21
27 29 20
29 42 20
28 21 43 44
42 43 21
30 23 45
45 23 46
47 46 23
47 23 25 48
49 33 24 26
25 32 50
25 50 51
25 51 48
26 27 41 49
52 28 44
53 28 52
28 53 54
55 29 28 54
56 42 29
57 56 29
55 57 29
58 59 30 45
59 60 30
60 31 30
61 62 31 60
62 32 31
32 63 50
32 62 64 63
65 34 33 49
66 35 34 65
66 37 35
67 35 37
67 36 35
36 67 37
39 37 66
37 68 38
37 39 68
39 38 68
65 40 39 66
49 41 40 65
56 69 42
69 70 71 42
43 42 71
72 43 71 73
44 43 72
52 44 74 75
44 72 74
58 45 46
58 46 76
77 76 46 78
78 46 79
79 46 80
46 47 80
81 47 62 61
47 64 62
47 82 64
47 83 84 82
47 48 85
47 85 86
83 47 87 88
47 81 87
89 90 47
90 80 47
47 86 89
51 50 48
50 91 48
91 85 48
63 91 50
53 52 75
92 53 75
93 53 92 94
95 53 93
96 53 95
96 54 53
73 71 54 97
71 70 54
70 98 54
98 99 100 54
101 55 54
102 101 54
103 104 54 100
104 97 54
54 105 106
54 96 105
106 102 54
55 56 57
55 107 56
55 101 107
56 107 69
108 58 109
110 59 58 108
109 58 111
111 58 76 112
110 113 60 59
113 61 60
81 61 113
82 63 64
91 63 82
70 69 98
98 69 107
74 72 114 115
72 73 114
114 73 97
116 75 74 115
117 75 116
118 75 117
112 92 75 118
76 77 119 120 112
77 121 119
78 122 121 77
79 122 78
80 123 122 79
80 124 123
80 90 125 124
87 81 113
82 84 91
126 84 83
126 83 88
84 127 91
126 127 84
91 127 85
86 85 127
89 86 127 128
125 88 87 124
124 87 113
128 126 88 125
90 89 128 125
112 120 129 94 92
94 130 131 93
93 131 95
129 130 94
95 131 132 96
132 133 96
133 134 105 96
114 97 104
107 99 98
100 99 135
107 136 99
99 136 135
103 100 135
101 136 107
136 101 102
137 136 102 106
133 104 103 134
134 103 135 137
114 104 133
134 137 106 105
123 138 108 109
138 110 108
123 109 122
122 109 121
109 139 140 121
109 111 139
124 113 110 138
139 111 112
112 118 139
141 115 114 133
116 115 141
117 116 141 132
131 117 132
130 117 131
130 140 139 117
139 118 117
121 140 120 119
129 120 140 130
123 124 138
127 126 128
141 133 132
137 135 136
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 40 43 47 50 54 57 61 64 67 70 73 77 81 84 88 91 94 98 102 106 109 113 116 119 123 126 129 133 136 140 143 146 149 153 157 161 164 167 171 174 177 180 183 187 191 194 197 200 204 207 210 213 217 220 223 226 230 233 236 240 243 246 250 254 258 261 264 267 270 273 276 279 282 286 290 293 297 300 304 307 311 314 317 320 324 327 330 333 337 340 343 347 350 353 357 360 363 366 369 372 375 378 381 384 387 391 394 397 400 404 407 410 414 417 420 424 427 430 433 436 439 442 445 448 451 455 458 462 466 469 472 475 478 481 484 488 491 494 498 501 504 508 513 516 520 523 527 530 534 537 540 543 546 549 552 555 558 562 566 569 573 577 582 586 589 592 596 599 603 606 609 612 615 618 621 624 627 631 635 639 642 646 650 653 656 659 663 666 670 673 676 680 683 687 690 693 697 700 704 708 711 714 717 720
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,870 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="212" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="424">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
0.413504 -0.910502 0.000254
0.220738 -0.964689 0.143701
-0.251356 -0.967895 0.000011
0.899401 -0.365405 0.239911
0.863982 -0.503522 0.000171
0.220826 -0.964696 -0.143521
0.899484 -0.365352 -0.239680
0.286794 -0.868190 0.404963
0.078256 -0.716664 0.693015
-0.569599 -0.821829 -0.012403
-0.662568 -0.749002 -0.000011
-0.613143 -0.777629 0.139102
-0.359658 -0.629030 0.689179
0.286789 -0.868193 -0.404960
0.078255 -0.716674 -0.693004
-0.569597 -0.821831 0.012384
-0.613141 -0.777631 -0.139097
-0.359657 -0.629034 -0.689176
0.998052 -0.062392 0.000140
0.957442 -0.007106 0.288540
0.735298 -0.048803 0.675985
0.957519 -0.007091 -0.288284
0.735299 -0.048807 -0.675983
0.313178 0.102302 0.944168
-0.964925 -0.260717 -0.030777
-0.996994 0.077480 -0.000016
-0.964924 -0.260718 0.030773
-0.282200 0.063409 0.957258
-0.846059 -0.227611 0.482056
-0.982578 -0.076139 -0.169540
0.313182 0.102305 -0.944167
-0.846060 -0.227614 -0.482052
-0.282202 0.063422 -0.957256
-0.982578 -0.076138 0.169538
0.917270 -0.398266 0.000297
0.826104 -0.464870 0.318509
0.712848 0.036458 0.700370
0.826181 -0.464892 -0.318277
0.712851 0.036457 -0.700368
0.301068 0.116045 0.946515
-0.866108 0.445084 -0.227500
-0.849459 0.527654 -0.000062
-0.866118 0.445079 0.227476
-0.145674 0.079844 0.986105
-0.496620 -0.414573 0.762560
-0.980757 0.060992 -0.185461
0.301065 0.116051 -0.946516
-0.496625 -0.414571 -0.762558
-0.145672 0.079843 -0.986106
-0.980757 0.060990 0.185463
0.879005 -0.476813 0.000172
0.815967 -0.512096 0.268247
0.474920 -0.498509 0.725217
0.816008 -0.512099 -0.268114
0.474917 -0.498505 -0.725221
0.108799 -0.433275 0.894671
-0.850272 0.477671 -0.221059
-0.320001 0.339699 -0.884423
-0.901438 0.432909 -0.000126
-0.850297 0.477660 0.220988
-0.319991 0.339701 0.884426
-0.123449 -0.352084 0.927791
0.245246 0.010416 0.969405
-0.829025 -0.559178 0.006127
-0.917104 -0.301168 0.261187
0.124101 0.088747 0.988293
0.691294 -0.232303 -0.684214
0.108795 -0.433273 -0.894672
0.245236 0.010405 -0.969408
-0.123452 -0.352088 -0.927790
-0.917107 -0.301156 -0.261189
-0.829028 -0.559173 -0.006128
0.124099 0.088745 -0.988293
0.691461 -0.232352 0.684027
0.985928 0.167170 0.000149
0.908882 0.297312 0.292472
0.512449 -0.501896 0.696776
0.908916 0.297316 -0.292360
0.512452 -0.501895 -0.696774
0.051291 -0.463078 0.884832
-0.124796 0.933263 -0.336818
-0.263225 0.145978 -0.953626
-0.421626 0.906770 -0.000178
-0.124823 0.933304 0.336693
-0.263211 0.145983 0.953629
-0.233629 -0.126492 0.964063
-0.210840 0.445774 0.869961
0.524369 0.605855 0.598311
-0.396000 -0.415451 0.818893
-0.544705 -0.460733 0.700730
0.398458 -0.463090 0.791694
0.504300 -0.776136 0.378543
0.412764 0.201180 0.888343
-0.780621 -0.161759 0.603709
0.802236 -0.597007 -0.000250
0.330504 -0.862878 -0.382372
0.101720 0.994813 0.000029
0.045067 0.759682 -0.648732
0.051284 -0.463086 -0.884829
-0.210844 0.445774 -0.869960
-0.233635 -0.126493 -0.964061
0.524366 0.605857 -0.598313
-0.544704 -0.460737 -0.700728
-0.396213 -0.414776 -0.819131
0.398458 -0.463090 -0.791694
0.504306 -0.776132 -0.378543
-0.780607 -0.161773 -0.603723
0.412764 0.201180 -0.888343
0.330481 -0.862919 0.382300
0.045177 0.759653 0.648758
0.324724 0.945809 -0.000003
0.719858 0.490825 0.490810
0.446198 0.344975 0.825772
0.719857 0.490831 -0.490806
0.446203 0.344979 -0.825768
-0.119056 0.492671 0.862033
0.442083 0.880879 -0.169159
0.637129 0.727222 0.255373
-0.217216 0.840868 -0.495740
0.086495 0.947219 0.308699
0.637129 0.727222 -0.255373
0.442193 0.880791 0.169332
-0.217212 0.840872 0.495735
0.086509 0.947220 -0.308692
0.666019 0.411001 0.622493
0.762168 0.388529 0.517827
0.541222 0.378112 0.751072
0.003544 -0.620337 0.784327
0.581610 0.226211 0.781382
-0.534370 0.721537 0.440264
0.027330 0.210352 0.977244
-0.825919 -0.247664 -0.506478
-0.507794 0.829593 -0.232208
0.632828 -0.710186 0.308489
0.142144 0.263716 0.954070
0.061283 -0.090097 0.994046
-0.934445 -0.047556 0.352919
-0.821083 0.569766 0.034485
-0.451748 -0.892146 -0.000117
-0.522240 -0.795040 -0.308509
-0.424928 0.905227 0.000187
-0.021103 0.962271 0.271275
-0.297288 0.948884 0.106013
-0.435076 0.880024 -0.190439
-0.020921 0.962317 -0.271125
-0.297138 0.948948 -0.105866
-0.435066 0.880016 0.190498
-0.460620 0.773505 -0.435339
-0.119054 0.492680 -0.862028
0.666019 0.411001 -0.622493
0.761846 0.389201 -0.517797
0.027335 0.210353 -0.977243
-0.534372 0.721537 -0.440262
0.002981 -0.619419 -0.785055
-0.824356 -0.248517 0.508603
-0.507792 0.829594 0.232210
0.540127 0.379782 -0.751018
0.581114 0.227475 -0.781384
0.632825 -0.710188 -0.308490
0.142150 0.263717 -0.954069
-0.934436 -0.047566 -0.352940
0.061298 -0.090103 -0.994044
-0.821082 0.569767 -0.034503
-0.522158 -0.795110 0.308467
-0.460622 0.773506 0.435335
-0.572715 0.643684 -0.507610
-0.601733 0.192476 -0.775158
-0.571909 0.643279 0.509031
-0.601386 0.191547 0.775658
-0.595813 0.188050 0.780797
-0.983916 0.096550 -0.150294
-0.647830 0.666930 0.368131
-0.931810 0.096990 0.349747
-0.908625 -0.155637 0.387529
-0.393468 0.898379 0.195189
-0.124688 -0.957494 0.260114
-0.321324 -0.912751 -0.252265
0.306728 -0.951797 -0.000074
-0.321383 -0.912759 0.252157
-0.388012 0.816277 0.427946
-0.537498 0.843262 -0.002381
-0.628426 0.593196 0.503189
-0.388051 0.816293 -0.427881
-0.628024 0.593377 -0.503477
-0.393468 0.898379 -0.195188
-0.931810 0.096995 -0.349745
-0.647832 0.666932 -0.368125
-0.908625 -0.155643 -0.387526
-0.595657 0.189443 -0.780580
-0.983229 0.097451 0.154158
-0.124689 -0.957494 -0.260111
-0.582881 0.455123 0.673137
-0.403556 -0.856760 0.321099
-0.562932 -0.801416 -0.202087
0.221595 -0.975139 -0.000106
-0.562933 -0.801416 0.202088
-0.400519 -0.856101 -0.326614
-0.295823 0.955238 -0.003097
-0.584252 0.453340 -0.673151
-0.078175 0.285559 0.955167
-0.119735 0.000269 0.992806
0.189158 -0.872041 0.451402
-0.261869 -0.965103 -0.000793
0.185966 -0.870218 -0.456220
-0.129447 0.006128 -0.991567
-0.669389 0.512818 0.537528
-0.925226 0.379416 -0.000963
-0.084171 0.287664 -0.954026
-0.668884 0.511858 -0.539068
-0.577348 -0.507179 0.639874
-0.880801 -0.473486 -0.000942
-0.576133 -0.507564 -0.640664
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
0.012335 -0.001348 0.000119
0.011837 -0.000971 0.008088
0.001538 0.001883 0.000097
0.013815 0.001419 0.009683
0.013362 -0.000503 0.000120
0.011837 -0.000971 -0.007899
0.013815 0.001419 -0.009495
0.008715 0.000381 0.016381
0.003546 0.002106 0.020415
-0.008311 0.004217 0.004901
-0.008346 0.004440 0.000097
-0.008538 0.004473 0.014243
-0.004807 0.004358 0.020524
0.008715 0.000381 -0.016193
0.003546 0.002106 -0.020227
-0.008311 0.004217 -0.004712
-0.008538 0.004473 -0.014054
-0.004807 0.004358 -0.020336
0.013939 0.002752 0.000121
0.013020 0.003389 0.010360
0.009951 0.003237 0.017397
0.013020 0.003389 -0.010172
0.009951 0.003237 -0.017209
0.003876 0.005676 0.021111
-0.010494 0.007427 0.005041
-0.010496 0.007333 0.000097
-0.010494 0.007427 -0.004853
-0.004531 0.008251 0.021260
-0.010690 0.005588 0.015984
-0.010888 0.008623 0.009496
0.003876 0.005676 -0.020922
-0.010690 0.005588 -0.015795
-0.004531 0.008251 -0.021071
-0.010888 0.008623 -0.009307
0.016424 0.009176 0.000123
0.015079 0.008818 0.010002
0.009173 0.005617 0.016965
0.015079 0.008818 -0.009814
0.009173 0.005617 -0.016777
0.004795 0.008526 0.019213
-0.008602 0.012210 0.006437
-0.008211 0.012100 0.000099
-0.008602 0.012210 -0.006248
-0.003573 0.010693 0.020126
-0.008016 0.011009 0.019036
-0.009905 0.013070 0.009795
0.004795 0.008526 -0.019025
-0.008016 0.011009 -0.018847
-0.003573 0.010693 -0.019938
-0.009905 0.013070 -0.009607
0.017762 0.011599 0.000124
0.017191 0.011502 0.011054
0.010686 0.010715 0.017613
0.017191 0.011502 -0.010866
0.010686 0.010715 -0.017425
0.006924 0.012103 0.019301
-0.004978 0.017549 0.006648
-0.006402 0.018357 0.010238
-0.004392 0.017425 0.000102
-0.004978 0.017549 -0.006460
-0.006402 0.018357 -0.010049
-0.000793 0.015044 0.020270
-0.004234 0.016954 0.020663
-0.009465 0.014766 0.017158
-0.009971 0.013432 0.021015
-0.007151 0.016974 0.025110
-0.013143 0.020035 0.003818
0.006924 0.012103 -0.019113
-0.004234 0.016954 -0.020474
-0.000793 0.015044 -0.020082
-0.009971 0.013432 -0.020827
-0.009465 0.014766 -0.016970
-0.007151 0.016974 -0.024921
-0.013143 0.020035 -0.003629
0.018689 0.014502 0.000125
0.017988 0.014569 0.011255
0.013075 0.012635 0.018639
0.017988 0.014569 -0.011067
0.013075 0.012635 -0.018450
0.008216 0.013931 0.021331
-0.003684 0.022370 0.008450
-0.004673 0.021460 0.010985
-0.002621 0.021333 0.000103
-0.003684 0.022370 -0.008262
-0.004673 0.021460 -0.010797
0.001917 0.017225 0.022355
-0.001828 0.018439 0.019971
-0.006394 0.020923 0.020018
-0.013548 0.022294 0.023186
-0.014326 0.020271 0.017256
-0.014581 0.015517 0.024795
-0.013358 0.014637 0.010612
-0.009803 0.019998 0.023851
-0.014348 0.017187 0.021691
-0.015696 0.017046 0.000098
-0.022195 0.011151 0.005202
-0.018905 0.024157 0.000099
-0.012207 0.023457 0.007801
0.008216 0.013931 -0.021143
-0.001828 0.018439 -0.019782
0.001917 0.017225 -0.022166
-0.006394 0.020923 -0.019829
-0.014326 0.020271 -0.017067
-0.013548 0.022294 -0.022998
-0.014581 0.015517 -0.024606
-0.013358 0.014637 -0.010424
-0.014348 0.017187 -0.021503
-0.009803 0.019998 -0.023662
-0.022195 0.011151 -0.005013
-0.012207 0.023457 -0.007613
0.006958 0.018721 0.000103
0.014069 0.015786 0.018895
0.008745 0.017777 0.022357
0.014069 0.015786 -0.018707
0.008745 0.017777 -0.022169
0.001701 0.019918 0.022493
-0.008915 0.028863 0.016071
-0.005743 0.022016 0.014178
-0.009445 0.027103 0.010143
-0.002337 0.021547 0.017188
-0.005743 0.022016 -0.013990
-0.008915 0.028863 -0.015883
-0.009445 0.027103 -0.009955
-0.002337 0.021547 -0.017000
-0.010113 0.024104 0.021299
-0.008552 0.025767 0.018462
-0.024017 0.037115 0.032126
-0.017153 0.024781 0.021156
-0.011917 0.025938 0.021338
-0.025463 0.019026 0.012718
-0.022532 0.017780 0.015548
-0.022003 0.027460 0.025386
-0.017129 0.024211 0.012755
-0.014427 0.013620 0.012075
-0.026738 0.016599 0.017117
-0.012640 0.021331 0.026370
-0.014438 0.020431 0.024056
-0.013375 0.025156 0.024394
-0.022416 0.015229 0.000097
-0.022337 0.010439 0.006787
-0.030221 0.021452 0.000098
-0.020855 0.022475 0.005045
-0.018417 0.020331 0.008383
-0.016955 0.022873 0.010483
-0.020855 0.022475 -0.004856
-0.018417 0.020331 -0.008195
-0.016955 0.022873 -0.010294
-0.012896 0.024098 0.011430
0.001701 0.019918 -0.022305
-0.010113 0.024104 -0.021111
-0.008552 0.025767 -0.018274
-0.022532 0.017780 -0.015360
-0.025463 0.019026 -0.012530
-0.017153 0.024781 -0.020968
-0.022003 0.027460 -0.025198
-0.017129 0.024211 -0.012567
-0.024017 0.037115 -0.031881
-0.011917 0.025938 -0.021150
-0.014427 0.013620 -0.011887
-0.026738 0.016599 -0.016928
-0.014438 0.020431 -0.023868
-0.012640 0.021331 -0.026182
-0.013375 0.025156 -0.024206
-0.022337 0.010439 -0.006599
-0.012896 0.024098 -0.011241
-0.029072 0.036792 0.026947
-0.015405 0.026376 0.013998
-0.029072 0.036792 -0.026702
-0.015405 0.026376 -0.013809
-0.028076 0.035343 0.035583
-0.030030 0.034446 0.027677
-0.028142 0.018368 0.010342
-0.029823 0.015830 0.009791
-0.028961 0.012751 0.016874
-0.024648 0.020169 0.008932
-0.023925 0.009574 0.013395
-0.023022 0.013217 0.005417
-0.025381 0.013649 0.000096
-0.023022 0.013217 -0.005228
-0.028256 0.022265 0.004275
-0.039384 0.017137 0.000078
-0.029569 0.019543 0.004161
-0.028256 0.022265 -0.004086
-0.029569 0.019543 -0.003973
-0.024648 0.020169 -0.008744
-0.029823 0.015830 -0.009602
-0.028142 0.018368 -0.010153
-0.028961 0.012751 -0.016685
-0.028076 0.035343 -0.035338
-0.030030 0.034446 -0.027432
-0.023925 0.009574 -0.013207
-0.031176 0.017138 0.004337
-0.031216 0.015521 0.005068
-0.028046 0.012680 0.007722
-0.032794 0.012613 0.000094
-0.028046 0.012680 -0.007534
-0.031216 0.015521 -0.004880
-0.046733 0.013272 0.000120
-0.031176 0.017138 -0.004149
-0.042618 0.010352 0.003354
-0.035693 0.012332 0.004728
-0.045748 0.006064 0.002646
-0.046315 0.006136 0.000138
-0.045748 0.006064 -0.002363
-0.035693 0.012332 -0.004539
-0.049557 0.012042 0.003390
-0.050577 0.011552 0.000127
-0.042618 0.010352 -0.003071
-0.049557 0.012042 -0.003107
-0.049583 0.009302 0.003925
-0.048760 0.007582 0.000120
-0.049583 0.009302 -0.003641
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
3 1 0
3 0 4
2 5 0
0 5 6
4 0 6
1 7 2
7 1 3
7 8 2
9 10 2
2 11 9
12 11 2
2 8 12
2 13 5
2 14 13
2 10 15
15 16 2
2 16 17
17 14 2
18 19 3
18 3 4
20 3 19
7 3 20
4 6 18
6 5 13
6 21 18
21 6 22
22 6 13
8 7 20
8 20 23
12 8 23
10 9 24
11 24 9
10 24 25
26 15 10
25 26 10
27 28 11
27 11 12
11 28 29
11 29 24
12 23 27
22 13 14
30 22 14
30 14 17
15 26 16
16 31 32
17 16 32
33 31 16
26 33 16
32 30 17
34 19 18
18 21 34
34 35 19
36 19 35
20 19 36
23 20 36
21 37 34
37 21 38
38 21 22
38 22 30
23 36 39
27 23 39
40 25 24
40 24 29
25 40 41
41 42 25
26 25 42
33 26 42
27 39 43
43 28 27
43 44 28
29 28 45
28 44 45
40 29 45
46 38 30
46 30 32
31 47 48
32 31 48
49 31 33
49 47 31
48 46 32
49 33 42
50 35 34
34 37 50
50 51 35
52 35 51
36 35 52
39 36 52
37 53 50
53 37 54
54 37 38
54 38 46
39 52 55
43 39 55
41 40 56
40 57 56
40 45 57
41 56 58
59 42 41
58 59 41
59 60 42
60 49 42
43 55 61
61 44 43
61 62 44
63 44 64
65 64 44
65 44 62
44 63 45
57 45 66
66 45 63
67 54 46
67 46 48
47 68 69
48 47 69
70 47 71
47 70 72
68 47 72
49 71 47
69 67 48
73 49 60
71 49 73
74 51 50
50 53 74
74 75 51
76 51 75
52 51 76
55 52 76
53 77 74
77 53 78
78 53 54
78 54 67
55 76 79
61 55 79
58 56 80
56 57 81
56 81 80
66 81 57
58 80 82
83 59 58
82 83 58
84 60 59
83 84 59
60 84 73
61 79 85
85 62 61
85 86 62
87 65 62
87 62 86
88 89 63
88 63 90
63 64 65
63 65 90
63 89 91
63 91 66
65 92 93
65 93 90
87 92 65
94 66 95
66 94 96
66 96 97
91 95 66
66 97 81
98 78 67
98 67 69
68 99 100
69 68 100
68 72 101
99 68 101
100 98 69
72 70 71
71 102 103
104 71 103
104 72 71
105 102 71
73 105 71
106 107 72
104 106 72
72 107 101
108 73 94
96 94 73
109 96 73
73 108 105
84 109 73
75 74 110
110 74 77
76 75 111
111 75 110
112 79 76
112 76 111
113 77 78
110 77 113
78 98 114
113 78 114
115 85 79
115 79 112
116 117 80
80 118 116
80 97 118
97 80 81
82 80 110
80 119 110
117 119 80
110 83 82
83 120 121
121 122 83
122 109 83
84 83 109
110 123 83
83 123 120
115 86 85
119 87 86
115 119 86
119 117 87
87 124 92
124 87 125
125 87 117
126 127 88
127 89 88
88 90 124
128 88 124
126 88 128
129 130 89
127 131 89
89 130 91
89 132 129
89 131 132
90 93 124
95 91 133
134 133 91
134 91 130
124 135 92
135 93 92
135 136 93
136 137 93
93 137 124
94 95 138
138 108 94
138 95 139
95 133 139
140 141 96
96 141 142
96 142 143
143 97 96
96 144 140
145 144 96
146 145 96
96 109 146
143 147 97
97 147 118
98 100 148
114 98 148
100 99 148
99 101 123
99 123 148
101 120 123
107 149 101
150 101 149
120 101 150
102 151 152
103 102 153
102 154 153
105 151 102
152 155 102
155 154 102
103 153 156
149 104 103
149 103 157
157 103 156
149 106 104
158 105 108
105 158 159
151 105 159
106 160 161
107 106 161
106 162 160
149 162 106
107 161 149
163 108 138
163 158 108
109 164 146
122 164 109
112 111 110
115 112 110
119 115 110
110 113 114
110 114 148
110 148 123
117 116 125
126 125 116
165 126 116
165 116 166
116 147 166
147 116 118
150 121 120
121 150 156
121 156 167
168 121 167
168 164 121
122 121 164
124 137 135
124 125 128
126 128 125
126 169 127
169 126 165
127 169 170
131 127 170
134 130 129
129 171 172
129 172 173
129 173 134
171 129 174
132 174 129
131 170 165
131 165 166
147 132 131
147 131 166
143 132 147
174 132 142
142 132 143
134 175 133
133 175 139
134 173 175
135 137 136
138 139 176
138 176 177
178 163 138
177 178 138
139 175 176
179 141 140
140 180 181
140 181 179
140 144 182
183 180 140
182 183 140
179 142 141
179 174 142
144 145 182
145 184 182
145 155 184
146 155 145
164 155 146
161 162 149
157 150 149
150 157 156
152 151 159
185 186 152
187 185 152
159 187 152
184 152 186
152 184 155
153 188 156
189 188 153
189 153 154
167 189 154
168 167 154
154 155 164
168 154 164
167 156 188
158 190 159
163 190 158
190 187 159
160 162 161
178 190 163
169 165 170
189 167 188
181 171 174
191 172 171
191 171 181
192 193 172
192 172 191
193 173 172
193 175 173
181 174 179
176 175 193
176 193 192
176 192 194
177 176 194
194 178 177
195 190 178
196 195 178
194 196 178
180 197 191
180 191 181
198 197 180
183 198 180
182 184 183
184 186 183
183 186 198
186 185 198
185 195 196
198 185 196
185 187 195
187 190 195
197 199 191
200 192 191
200 191 199
201 194 192
201 192 200
194 201 202
202 203 194
196 194 203
198 196 204
204 196 203
197 205 199
206 205 197
207 208 197
198 207 197
197 208 206
207 198 204
201 200 199
201 199 209
205 209 199
202 201 209
202 209 210
211 203 202
210 211 202
207 204 203
211 207 203
210 209 205
210 205 206
206 208 210
207 211 208
208 211 210
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444 447 450 453 456 459 462 465 468 471 474 477 480 483 486 489 492 495 498 501 504 507 510 513 516 519 522 525 528 531 534 537 540 543 546 549 552 555 558 561 564 567 570 573 576 579 582 585 588 591 594 597 600 603 606 609 612 615 618 621 624 627 630 633 636 639 642 645 648 651 654 657 660 663 666 669 672 675 678 681 684 687 690 693 696 699 702 705 708 711 714 717 720 723 726 729 732 735 738 741 744 747 750 753 756 759 762 765 768 771 774 777 780 783 786 789 792 795 798 801 804 807 810 813 816 819 822 825 828 831 834 837 840 843 846 849 852 855 858 861 864 867 870 873 876 879 882 885 888 891 894 897 900 903 906 909 912 915 918 921 924 927 930 933 936 939 942 945 948 951 954 957 960 963 966 969 972 975 978 981 984 987 990 993 996 999 1002 1005 1008 1011 1014 1017 1020 1023 1026 1029 1032 1035 1038 1041 1044 1047 1050 1053 1056 1059 1062 1065 1068 1071 1074 1077 1080 1083 1086 1089 1092 1095 1098 1101 1104 1107 1110 1113 1116 1119 1122 1125 1128 1131 1134 1137 1140 1143 1146 1149 1152 1155 1158 1161 1164 1167 1170 1173 1176 1179 1182 1185 1188 1191 1194 1197 1200 1203 1206 1209 1212 1215 1218 1221 1224 1227 1230 1233 1236 1239 1242 1245 1248 1251 1254 1257 1260 1263 1266 1269 1272
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,506 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="122" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="240">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
0.874624 -0.483803 -0.031095
0.462950 -0.726467 0.507860
0.739011 -0.611425 -0.282882
0.805211 -0.566507 -0.175228
0.388228 -0.078713 0.918196
0.962290 -0.064110 0.264362
-0.340104 -0.891005 0.300732
-0.173158 -0.174114 0.969382
0.831213 -0.552385 -0.062902
0.762595 -0.512592 -0.394585
0.116839 -0.669675 -0.733406
-0.365405 -0.753059 -0.547157
-0.349077 -0.915140 -0.201655
-0.333797 -0.939614 0.075537
0.949009 -0.099350 -0.299185
0.609866 0.032438 0.791840
0.910591 0.194119 0.364887
0.907746 0.273024 -0.318521
-0.495861 -0.431239 0.753761
0.216712 -0.107925 0.970252
0.670458 -0.001802 -0.741945
-0.036091 0.046725 -0.998256
-0.661758 -0.223937 -0.715491
-0.805812 -0.569942 -0.160727
-0.753272 -0.574857 0.319563
0.443777 0.237370 -0.864128
0.562964 0.091838 0.821363
0.956803 0.069733 0.282250
0.978611 0.061742 -0.196237
0.550153 0.026474 -0.834644
-0.291843 -0.229082 0.928628
0.069846 0.124544 0.989753
0.197321 0.216189 -0.956205
-0.285661 0.100437 -0.953053
-0.835616 -0.285923 -0.469035
-0.800669 -0.388844 0.455774
0.214304 0.004253 -0.976758
0.575258 0.037114 0.817130
0.954343 0.008071 0.298604
0.950571 0.011304 -0.310303
0.626111 0.015200 -0.779586
-0.012599 0.020243 -0.999716
-0.461269 0.218500 0.859935
0.013965 0.130804 0.991310
-0.131165 0.098905 -0.986414
-0.828542 0.484420 -0.280813
-0.925422 0.343884 0.159182
-0.817014 0.066685 -0.572748
0.763383 -0.029934 0.645252
0.982090 -0.025882 0.186626
0.800155 -0.030492 -0.599018
-0.105164 -0.022763 -0.994194
-0.017778 -0.010255 -0.999789
-0.826457 0.022396 -0.562554
-0.723692 0.316268 0.613388
0.105305 -0.025243 0.994120
-0.905356 0.332351 0.264335
-0.834341 0.539746 -0.112019
-0.981496 0.064544 0.180277
0.674140 -0.000804 0.738603
0.967818 0.002486 0.251638
0.921309 -0.009960 -0.388703
0.028045 -0.051002 -0.998305
-0.001017 -0.085925 -0.996301
-0.311666 -0.032840 -0.949624
-0.991105 0.004597 -0.133006
-0.852619 0.025560 0.521907
-0.161308 -0.002356 0.986901
-0.987422 0.095254 -0.126188
-0.996683 0.010880 -0.080651
0.651729 0.016196 0.758279
0.961144 0.019571 0.275352
0.988198 -0.001504 -0.153177
0.459000 -0.121475 -0.880093
0.059381 -0.229897 -0.971402
-0.586248 -0.093527 -0.804715
-0.994831 -0.008079 -0.101226
-0.999926 -0.001359 -0.012102
-0.947002 0.005145 0.321187
-0.221880 0.015042 0.974958
-0.939857 0.005890 0.341517
0.635461 0.005886 0.772110
0.986137 -0.040125 0.161006
0.999090 -0.027276 0.032803
0.878127 -0.042553 -0.476531
-0.044540 -0.188968 -0.980973
-0.857359 -0.163448 -0.488079
-0.996661 -0.038206 0.072159
-0.992107 -0.020587 0.123695
-0.874833 0.018099 0.484086
-0.331484 0.041670 0.942540
0.422186 -0.068717 0.903901
0.893265 -0.446980 -0.047815
0.934286 -0.316762 -0.163619
0.908787 0.137555 -0.393934
0.120203 0.311293 -0.942681
-0.827570 -0.062120 -0.557915
-0.989511 -0.139064 -0.039106
-0.912036 -0.122135 0.391502
-0.518298 -0.025839 0.854810
-0.290190 0.029088 0.956527
0.040617 0.077433 0.996170
0.958637 -0.003749 0.284608
0.886074 -0.208859 -0.413825
0.643435 0.303959 -0.702566
0.301970 0.622448 -0.722061
-0.435767 0.440396 -0.784958
-0.902566 0.232166 -0.362594
-0.756193 0.126022 0.642099
0.065018 0.034749 0.997279
-0.077646 0.013155 0.996894
-0.197135 0.385944 0.901213
0.428832 0.683736 0.590430
0.686613 0.726228 -0.033985
0.647534 0.742204 -0.172724
0.602214 0.770883 -0.207550
0.418362 0.821878 -0.386640
0.026117 0.925136 -0.378736
-0.012660 0.870732 0.491595
0.435106 0.354724 0.827559
0.288435 0.257293 0.922283
0.518056 0.739163 0.430415
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
-0.000350 -0.424433 -0.024976
-0.004000 -0.431823 -0.024600
-0.004000 -0.425441 -0.030000
0.002676 -0.417044 -0.027831
0.001713 -0.415363 -0.022137
0.008839 -0.408645 -0.025828
-0.006222 -0.430480 -0.026942
-0.004000 -0.422082 -0.024060
0.002676 -0.417044 -0.032169
0.001476 -0.419899 -0.037536
-0.004000 -0.422753 -0.041610
-0.008047 -0.425945 -0.035570
-0.006055 -0.429136 -0.030668
-0.006055 -0.429136 -0.029332
0.008839 -0.408645 -0.034171
0.001237 -0.404111 -0.022792
0.003447 -0.397560 -0.027580
0.003447 -0.397560 -0.032420
-0.008285 -0.420571 -0.024102
-0.004000 -0.410660 -0.020010
0.004094 -0.409821 -0.041140
-0.004000 -0.410996 -0.044040
-0.010665 -0.415029 -0.039175
-0.012217 -0.419059 -0.032670
-0.012217 -0.419059 -0.027330
-0.000270 -0.394706 -0.035134
0.000126 -0.387819 -0.024321
0.002162 -0.383116 -0.027997
0.002162 -0.383116 -0.032002
-0.000509 -0.370015 -0.034805
-0.011221 -0.411500 -0.020061
-0.004000 -0.392520 -0.022440
-0.004000 -0.391850 -0.034860
-0.009713 -0.402096 -0.037863
-0.017866 -0.412340 -0.034505
-0.017866 -0.412340 -0.025495
-0.004000 -0.356915 -0.035400
-0.000826 -0.365481 -0.025631
0.000879 -0.348518 -0.028414
0.000879 -0.348518 -0.031586
-0.000985 -0.301996 -0.034150
-0.004000 -0.255471 -0.035130
-0.010745 -0.398736 -0.020716
-0.004000 -0.382444 -0.024330
-0.010110 -0.380934 -0.038410
-0.018637 -0.404950 -0.034756
-0.018637 -0.404950 -0.025244
-0.008285 -0.328532 -0.035898
0.000840 -0.301155 -0.023337
0.003190 -0.279321 -0.027664
0.003190 -0.279321 -0.032336
-0.000905 -0.218354 -0.034260
-0.004000 -0.157387 -0.032970
-0.006460 -0.269580 -0.033386
-0.008443 -0.392018 -0.023884
-0.004000 -0.322989 -0.021090
-0.012987 -0.401592 -0.032921
-0.012987 -0.401592 -0.027079
-0.009135 -0.381773 -0.031669
0.001555 -0.226584 -0.022354
0.004474 -0.197696 -0.027247
0.004474 -0.197696 -0.032753
0.000364 -0.160746 -0.036007
-0.004000 -0.123797 -0.035940
-0.006777 -0.219362 -0.033822
-0.007338 -0.314928 -0.031084
-0.008206 -0.352382 -0.024211
-0.004000 -0.255471 -0.020010
-0.009135 -0.381773 -0.028331
-0.007338 -0.314928 -0.028916
0.001237 -0.176366 -0.022792
0.003447 -0.147310 -0.027580
0.003447 -0.147310 -0.032420
0.001555 -0.121949 -0.037645
-0.004000 -0.096588 -0.041070
-0.008443 -0.156043 -0.036116
-0.007852 -0.215499 -0.031252
-0.007852 -0.215499 -0.028748
-0.007967 -0.285200 -0.024539
-0.004000 -0.205421 -0.020010
-0.008126 -0.210460 -0.024321
0.000443 -0.125979 -0.023884
0.002420 -0.097595 -0.027914
0.002420 -0.097595 -0.032086
0.003538 -0.091717 -0.040376
-0.004000 -0.085840 -0.048900
-0.010745 -0.117079 -0.039284
-0.007852 -0.148318 -0.031252
-0.007852 -0.148318 -0.028748
-0.007650 -0.151340 -0.024976
-0.004000 -0.154364 -0.021630
0.000126 -0.101459 -0.024321
0.003960 -0.082480 -0.027413
0.003960 -0.082480 -0.032587
0.003856 -0.077777 -0.040813
-0.004000 -0.073075 -0.048360
-0.011221 -0.094405 -0.039939
-0.009906 -0.115734 -0.031919
-0.009906 -0.115734 -0.028081
-0.007491 -0.118086 -0.025195
-0.004000 -0.120437 -0.024330
0.001158 -0.081305 -0.022901
0.009352 -0.078786 -0.025661
0.009352 -0.078786 -0.034339
0.003141 -0.072571 -0.039830
-0.004000 -0.066356 -0.040260
-0.011935 -0.069043 -0.040922
-0.019921 -0.071731 -0.035173
-0.019921 -0.071731 -0.024827
-0.009952 -0.077777 -0.021809
-0.004000 -0.083823 -0.026490
-0.000429 -0.068708 -0.025085
0.003704 -0.067028 -0.027497
0.003704 -0.067028 -0.032503
-0.000191 -0.064341 -0.035242
-0.004000 -0.061653 -0.034860
-0.007095 -0.059135 -0.034260
-0.009393 -0.056615 -0.031752
-0.009393 -0.056615 -0.028248
-0.006857 -0.063501 -0.026068
-0.004000 -0.070387 -0.025950
-0.004000 -0.065685 -0.030000
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
3 0 2
0 4 1
5 4 0
3 5 0
1 6 2
4 7 1
1 7 6
8 3 2
9 8 2
10 9 2
11 10 2
12 11 2
13 12 2
6 13 2
14 5 3
8 14 3
4 15 7
16 15 4
5 16 4
17 16 5
14 17 5
6 18 13
7 18 6
15 19 7
7 19 18
20 14 8
9 20 8
21 20 9
10 21 9
22 21 10
11 22 10
23 22 11
12 23 11
24 23 12
13 24 12
18 24 13
25 17 14
20 25 14
15 26 19
27 26 15
16 27 15
28 27 16
17 28 16
29 28 17
25 29 17
18 30 24
19 30 18
26 31 19
19 31 30
32 25 20
21 32 20
33 32 21
22 33 21
34 33 22
23 34 22
35 34 23
24 35 23
30 35 24
36 29 25
32 36 25
26 37 31
38 37 26
27 38 26
39 38 27
28 39 27
40 39 28
29 40 28
41 40 29
36 41 29
30 42 35
31 42 30
37 43 31
31 43 42
44 36 32
33 44 32
45 44 33
34 45 33
46 45 34
35 46 34
42 46 35
47 41 36
44 47 36
37 48 43
49 48 37
38 49 37
50 49 38
39 50 38
51 50 39
40 51 39
52 51 40
41 52 40
53 52 41
47 53 41
42 54 46
43 54 42
48 55 43
43 55 54
56 47 44
45 56 44
57 56 45
46 57 45
54 57 46
58 53 47
56 58 47
48 59 55
60 59 48
49 60 48
61 60 49
50 61 49
62 61 50
51 62 50
63 62 51
52 63 51
64 63 52
53 64 52
65 64 53
58 65 53
54 66 57
55 66 54
59 67 55
55 67 66
68 58 56
57 68 56
66 68 57
69 65 58
68 69 58
59 70 67
71 70 59
60 71 59
72 71 60
61 72 60
73 72 61
62 73 61
74 73 62
63 74 62
75 74 63
64 75 63
76 75 64
65 76 64
77 76 65
69 77 65
66 78 68
67 78 66
70 79 67
67 79 78
78 69 68
80 77 69
78 80 69
70 81 79
82 81 70
71 82 70
83 82 71
72 83 71
84 83 72
73 84 72
85 84 73
74 85 73
86 85 74
75 86 74
87 86 75
76 87 75
88 87 76
77 88 76
89 88 77
80 89 77
79 80 78
81 90 79
79 90 80
90 89 80
81 91 90
92 91 81
82 92 81
93 92 82
83 93 82
94 93 83
84 94 83
95 94 84
85 95 84
96 95 85
86 96 85
97 96 86
87 97 86
98 97 87
88 98 87
99 98 88
89 99 88
90 100 89
100 99 89
91 100 90
91 101 100
102 101 91
92 102 91
103 102 92
93 103 92
104 103 93
94 104 93
105 104 94
95 105 94
106 105 95
96 106 95
107 106 96
97 107 96
108 107 97
98 108 97
109 108 98
99 109 98
100 110 99
110 109 99
101 110 100
101 111 110
112 111 101
102 112 101
113 112 102
103 113 102
114 113 103
104 114 103
115 114 104
105 115 104
116 115 105
106 116 105
117 116 106
107 117 106
118 117 107
108 118 107
119 118 108
109 119 108
110 120 109
120 119 109
111 120 110
111 121 120
112 121 111
113 121 112
114 121 113
115 121 114
116 121 115
117 121 116
118 121 117
119 121 118
120 121 119
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444 447 450 453 456 459 462 465 468 471 474 477 480 483 486 489 492 495 498 501 504 507 510 513 516 519 522 525 528 531 534 537 540 543 546 549 552 555 558 561 564 567 570 573 576 579 582 585 588 591 594 597 600 603 606 609 612 615 618 621 624 627 630 633 636 639 642 645 648 651 654 657 660 663 666 669 672 675 678 681 684 687 690 693 696 699 702 705 708 711 714 717 720
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,506 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="122" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="240">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
0.739011 -0.611425 0.282882
0.462950 -0.726467 -0.507860
0.874624 -0.483803 0.031095
0.805211 -0.566507 0.175228
0.831213 -0.552385 0.062902
0.762595 -0.512592 0.394585
0.116839 -0.669675 0.733406
-0.365405 -0.753059 0.547157
-0.349077 -0.915140 0.201655
-0.333797 -0.939614 -0.075537
-0.340104 -0.891005 -0.300732
-0.173158 -0.174114 -0.969382
0.388228 -0.078713 -0.918196
0.962290 -0.064110 -0.264362
0.949009 -0.099350 0.299185
0.670458 -0.001802 0.741945
-0.036091 0.046725 0.998256
-0.661758 -0.223937 0.715491
-0.805812 -0.569942 0.160727
-0.753272 -0.574857 -0.319563
-0.495861 -0.431239 -0.753761
0.216712 -0.107925 -0.970252
0.609866 0.032438 -0.791840
0.910591 0.194119 -0.364887
0.907746 0.273024 0.318521
0.443777 0.237370 0.864128
0.197321 0.216189 0.956205
-0.285661 0.100437 0.953053
-0.835616 -0.285923 0.469035
-0.800669 -0.388844 -0.455774
-0.291843 -0.229082 -0.928628
0.069846 0.124544 -0.989753
0.562964 0.091838 -0.821363
0.956803 0.069733 -0.282250
0.978611 0.061742 0.196237
0.550153 0.026474 0.834644
0.214304 0.004253 0.976758
-0.131165 0.098905 0.986414
-0.828542 0.484420 0.280813
-0.925422 0.343884 -0.159182
-0.461269 0.218500 -0.859935
0.013965 0.130804 -0.991310
0.575258 0.037114 -0.817130
0.954343 0.008071 -0.298604
0.950571 0.011304 0.310303
0.626111 0.015200 0.779586
-0.012599 0.020243 0.999716
-0.817014 0.066685 0.572748
-0.905356 0.332351 -0.264335
-0.834341 0.539746 0.112019
-0.723692 0.316268 -0.613388
0.105305 -0.025243 -0.994120
0.763383 -0.029934 -0.645252
0.982090 -0.025882 -0.186626
0.800155 -0.030492 0.599018
-0.105164 -0.022763 0.994194
-0.017778 -0.010255 0.999789
-0.826457 0.022396 0.562554
-0.981496 0.064544 -0.180277
-0.987422 0.095254 0.126188
-0.852619 0.025560 -0.521907
-0.161308 -0.002356 -0.986901
0.674140 -0.000804 -0.738603
0.967818 0.002486 -0.251638
0.921309 -0.009960 0.388703
0.028045 -0.051002 0.998305
-0.001017 -0.085925 0.996301
-0.311666 -0.032840 0.949624
-0.991105 0.004597 0.133006
-0.996683 0.010880 0.080651
-0.947002 0.005145 -0.321187
-0.221880 0.015042 -0.974958
0.651729 0.016196 -0.758279
0.961144 0.019571 -0.275352
0.988198 -0.001504 0.153177
0.459000 -0.121475 0.880093
0.059381 -0.229897 0.971402
-0.586248 -0.093527 0.804715
-0.994831 -0.008079 0.101226
-0.999926 -0.001359 0.012102
-0.939857 0.005890 -0.341517
-0.331484 0.041670 -0.942540
0.635461 0.005886 -0.772110
0.986137 -0.040125 -0.161006
0.999090 -0.027276 -0.032803
0.878127 -0.042553 0.476531
-0.044540 -0.188968 0.980973
-0.857359 -0.163448 0.488079
-0.996661 -0.038206 -0.072159
-0.992107 -0.020587 -0.123695
-0.874833 0.018099 -0.484086
-0.290190 0.029088 -0.956527
0.422186 -0.068717 -0.903901
0.893265 -0.446980 0.047815
0.934286 -0.316762 0.163619
0.908787 0.137555 0.393934
0.120203 0.311293 0.942681
-0.827570 -0.062120 0.557915
-0.989511 -0.139064 0.039106
-0.912036 -0.122135 -0.391502
-0.518298 -0.025839 -0.854810
-0.077646 0.013155 -0.996894
0.040617 0.077433 -0.996170
0.958637 -0.003749 -0.284608
0.886074 -0.208859 0.413825
0.643435 0.303959 0.702566
0.301970 0.622448 0.722061
-0.435767 0.440396 0.784958
-0.902566 0.232166 0.362594
-0.756193 0.126022 -0.642099
0.065018 0.034749 -0.997279
0.288435 0.257293 -0.922283
-0.197135 0.385944 -0.901213
0.428832 0.683736 -0.590430
0.686613 0.726228 0.033985
0.647534 0.742204 0.172724
0.602214 0.770883 0.207550
0.418362 0.821878 0.386640
0.026117 0.925136 0.378736
-0.012660 0.870732 -0.491595
0.435106 0.354724 -0.827559
0.518056 0.739163 -0.430415
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
-0.004000 -0.425441 0.030000
-0.004000 -0.431823 0.024600
-0.000350 -0.424433 0.024976
0.002676 -0.417044 0.027831
0.002676 -0.417044 0.032169
0.001476 -0.419899 0.037536
-0.004000 -0.422753 0.041610
-0.008047 -0.425945 0.035570
-0.006055 -0.429136 0.030668
-0.006055 -0.429136 0.029332
-0.006222 -0.430480 0.026942
-0.004000 -0.422082 0.024060
0.001713 -0.415363 0.022137
0.008839 -0.408645 0.025828
0.008839 -0.408645 0.034171
0.004094 -0.409821 0.041140
-0.004000 -0.410996 0.044040
-0.010665 -0.415029 0.039175
-0.012217 -0.419059 0.032670
-0.012217 -0.419059 0.027330
-0.008285 -0.420571 0.024102
-0.004000 -0.410660 0.020010
0.001237 -0.404111 0.022792
0.003447 -0.397560 0.027580
0.003447 -0.397560 0.032420
-0.000270 -0.394706 0.035134
-0.004000 -0.391850 0.034860
-0.009713 -0.402096 0.037863
-0.017866 -0.412340 0.034505
-0.017866 -0.412340 0.025495
-0.011221 -0.411500 0.020061
-0.004000 -0.392520 0.022440
0.000126 -0.387819 0.024321
0.002162 -0.383116 0.027997
0.002162 -0.383116 0.032002
-0.000509 -0.370015 0.034805
-0.004000 -0.356915 0.035400
-0.010110 -0.380934 0.038410
-0.018637 -0.404950 0.034756
-0.018637 -0.404950 0.025244
-0.010745 -0.398736 0.020716
-0.004000 -0.382444 0.024330
-0.000826 -0.365481 0.025631
0.000879 -0.348518 0.028414
0.000879 -0.348518 0.031586
-0.000985 -0.301996 0.034150
-0.004000 -0.255471 0.035130
-0.008285 -0.328532 0.035898
-0.012987 -0.401592 0.032921
-0.012987 -0.401592 0.027079
-0.008443 -0.392018 0.023884
-0.004000 -0.322989 0.021090
0.000840 -0.301155 0.023337
0.003190 -0.279321 0.027664
0.003190 -0.279321 0.032336
-0.000905 -0.218354 0.034260
-0.004000 -0.157387 0.032970
-0.006460 -0.269580 0.033386
-0.009135 -0.381773 0.031669
-0.009135 -0.381773 0.028331
-0.008206 -0.352382 0.024211
-0.004000 -0.255471 0.020010
0.001555 -0.226584 0.022354
0.004474 -0.197696 0.027247
0.004474 -0.197696 0.032753
0.000364 -0.160746 0.036007
-0.004000 -0.123797 0.035940
-0.006777 -0.219362 0.033822
-0.007338 -0.314928 0.031084
-0.007338 -0.314928 0.028916
-0.007967 -0.285200 0.024539
-0.004000 -0.205421 0.020010
0.001237 -0.176366 0.022792
0.003447 -0.147310 0.027580
0.003447 -0.147310 0.032420
0.001555 -0.121949 0.037645
-0.004000 -0.096588 0.041070
-0.008443 -0.156043 0.036116
-0.007852 -0.215499 0.031252
-0.007852 -0.215499 0.028748
-0.008126 -0.210460 0.024321
-0.004000 -0.154364 0.021630
0.000443 -0.125979 0.023884
0.002420 -0.097595 0.027914
0.002420 -0.097595 0.032086
0.003538 -0.091717 0.040376
-0.004000 -0.085840 0.048900
-0.010745 -0.117079 0.039284
-0.007852 -0.148318 0.031252
-0.007852 -0.148318 0.028748
-0.007650 -0.151340 0.024976
-0.004000 -0.120437 0.024330
0.000126 -0.101459 0.024321
0.003960 -0.082480 0.027413
0.003960 -0.082480 0.032587
0.003856 -0.077777 0.040813
-0.004000 -0.073075 0.048360
-0.011221 -0.094405 0.039939
-0.009906 -0.115734 0.031919
-0.009906 -0.115734 0.028081
-0.007491 -0.118086 0.025195
-0.004000 -0.083823 0.026490
0.001158 -0.081305 0.022901
0.009352 -0.078786 0.025661
0.009352 -0.078786 0.034339
0.003141 -0.072571 0.039830
-0.004000 -0.066356 0.040260
-0.011935 -0.069043 0.040922
-0.019921 -0.071731 0.035173
-0.019921 -0.071731 0.024827
-0.009952 -0.077777 0.021809
-0.004000 -0.070387 0.025950
-0.000429 -0.068708 0.025085
0.003704 -0.067028 0.027497
0.003704 -0.067028 0.032503
-0.000191 -0.064341 0.035242
-0.004000 -0.061653 0.034860
-0.007095 -0.059135 0.034260
-0.009393 -0.056615 0.031752
-0.009393 -0.056615 0.028248
-0.006857 -0.063501 0.026068
-0.004000 -0.065685 0.030000
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
0 2 3
0 3 4
0 4 5
0 5 6
0 6 7
0 7 8
0 8 9
0 9 10
0 10 1
1 11 12
1 12 2
10 11 1
2 12 13
2 13 3
3 13 14
3 14 4
4 14 15
4 15 5
5 15 16
5 16 6
6 16 17
6 17 7
7 17 18
7 18 8
8 18 19
8 19 9
9 19 20
9 20 10
10 20 11
11 21 22
11 22 12
20 21 11
12 22 23
12 23 13
13 23 24
13 24 14
14 24 25
14 25 15
15 25 26
15 26 16
16 26 27
16 27 17
17 27 28
17 28 18
18 28 29
18 29 19
19 29 30
19 30 20
20 30 21
21 31 32
21 32 22
30 31 21
22 32 33
22 33 23
23 33 34
23 34 24
24 34 35
24 35 25
25 35 36
25 36 26
26 36 37
26 37 27
27 37 38
27 38 28
28 38 39
28 39 29
29 39 40
29 40 30
30 40 31
31 41 42
31 42 32
40 41 31
32 42 43
32 43 33
33 43 44
33 44 34
34 44 45
34 45 35
35 45 46
35 46 36
36 46 47
36 47 37
37 47 48
37 48 38
38 48 49
38 49 39
39 49 50
39 50 40
40 50 41
41 51 52
41 52 42
50 51 41
42 52 53
42 53 43
43 53 54
43 54 44
44 54 55
44 55 45
45 55 56
45 56 46
46 56 57
46 57 47
47 57 58
47 58 48
48 58 59
48 59 49
49 59 60
49 60 50
50 60 51
51 61 62
51 62 52
60 61 51
52 62 63
52 63 53
53 63 64
53 64 54
54 64 65
54 65 55
55 65 66
55 66 56
56 66 67
56 67 57
57 67 68
57 68 58
58 68 69
58 69 59
59 69 70
59 70 60
60 70 61
61 71 72
61 72 62
70 71 61
62 72 73
62 73 63
63 73 74
63 74 64
64 74 75
64 75 65
65 75 76
65 76 66
66 76 77
66 77 67
67 77 78
67 78 68
68 78 79
68 79 69
69 79 80
69 80 70
70 80 71
71 81 82
71 82 72
80 81 71
72 82 83
72 83 73
73 83 84
73 84 74
74 84 85
74 85 75
75 85 86
75 86 76
76 86 87
76 87 77
77 87 88
77 88 78
78 88 89
78 89 79
79 89 90
79 90 80
80 90 81
81 91 92
81 92 82
90 91 81
82 92 93
82 93 83
83 93 94
83 94 84
84 94 95
84 95 85
85 95 96
85 96 86
86 96 97
86 97 87
87 97 98
87 98 88
88 98 99
88 99 89
89 99 100
89 100 90
90 100 91
91 101 102
91 102 92
100 101 91
92 102 103
92 103 93
93 103 104
93 104 94
94 104 105
94 105 95
95 105 106
95 106 96
96 106 107
96 107 97
97 107 108
97 108 98
98 108 109
98 109 99
99 109 110
99 110 100
100 110 101
101 111 112
101 112 102
110 111 101
102 112 113
102 113 103
103 113 114
103 114 104
104 114 115
104 115 105
105 115 116
105 116 106
106 116 117
106 117 107
107 117 118
107 118 108
108 118 119
108 119 109
109 119 120
109 120 110
110 120 111
111 121 112
120 121 111
112 121 113
113 121 114
114 121 115
115 121 116
116 121 117
117 121 118
118 121 119
119 121 120
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444 447 450 453 456 459 462 465 468 471 474 477 480 483 486 489 492 495 498 501 504 507 510 513 516 519 522 525 528 531 534 537 540 543 546 549 552 555 558 561 564 567 570 573 576 579 582 585 588 591 594 597 600 603 606 609 612 615 618 621 624 627 630 633 636 639 642 645 648 651 654 657 660 663 666 669 672 675 678 681 684 687 690 693 696 699 702 705 708 711 714 717 720
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,322 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="76" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="148">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
0.993452 -0.076257 0.085079
0.773586 0.621459 0.123912
0.782337 -0.130674 0.608993
0.665987 -0.293810 0.685665
0.433803 0.489824 -0.756232
0.831468 -0.538250 -0.137649
0.323808 -0.065828 -0.943830
0.441926 -0.290312 0.848776
0.638121 0.190355 0.746034
0.467242 0.800123 0.376149
-0.153155 0.455794 -0.876810
0.121669 0.800685 -0.586601
0.555348 -0.642069 0.528523
0.176828 -0.697916 0.694007
0.015399 -0.428370 -0.903472
0.177830 -0.902657 -0.391901
-0.190351 -0.049779 -0.980453
0.325339 0.173217 0.929597
0.187992 -0.624477 0.758081
-0.299437 -0.693563 0.655216
-0.022898 -0.526725 0.849727
0.305052 0.910520 0.279099
0.135623 0.347888 -0.927674
0.351321 0.732382 -0.583259
-0.304734 -0.827668 -0.471278
-0.283426 -0.323856 -0.902655
0.209265 -0.010519 -0.977802
-0.495592 -0.709420 -0.501110
0.412334 0.327313 0.850204
-0.459049 -0.728409 0.508621
0.612378 0.020082 0.790310
-0.237697 -0.920064 0.311421
0.150099 -0.958008 0.244316
0.488868 0.872351 0.003277
0.370283 0.744858 0.555047
0.536876 0.323756 -0.779068
0.523046 0.069661 -0.849453
0.897919 0.361842 -0.250624
0.107221 -0.611315 -0.784090
-0.397149 -0.915501 0.064276
0.511842 0.601171 0.613686
0.412602 -0.257355 0.873801
0.392641 0.386388 0.834588
0.436758 0.553986 0.708761
0.201557 -0.344317 0.916963
-0.308564 -0.509812 0.803044
-0.459606 -0.812394 -0.358856
-0.101038 -0.614653 -0.782300
-0.665276 -0.719491 0.199350
-0.405449 -0.764146 0.501690
0.767336 0.543033 0.341044
0.865029 0.067824 -0.497116
0.704508 -0.497771 -0.505858
0.961190 0.074264 -0.265706
0.933410 -0.034612 -0.357138
0.982889 0.170942 0.068614
0.194533 -0.827412 -0.526827
-0.268003 0.219505 0.938079
-0.627347 0.376955 0.681426
-0.107150 0.703522 0.702550
0.345948 0.622742 0.701792
-0.849420 -0.028422 0.526952
-0.944277 0.026845 -0.328054
-0.922367 -0.376566 0.086237
0.473080 0.030941 -0.880476
0.687910 -0.120742 -0.715682
0.464980 0.118514 -0.877353
0.374317 0.925175 -0.062757
-0.863298 0.036336 0.503385
-0.532921 0.718577 0.446813
-0.961399 0.139141 0.237384
-0.364241 0.801340 0.474534
-0.935555 0.334013 -0.114768
-0.426305 0.412116 -0.805248
-0.312469 0.929033 -0.198145
-0.696461 0.695607 0.176274
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
0.013153 -0.027423 0.011730
0.011978 -0.024048 0.013129
0.011837 -0.027606 0.013920
0.011282 -0.030205 0.013014
0.012284 -0.025571 0.010450
0.011997 -0.031455 0.011629
0.011636 -0.028957 0.009720
0.009949 -0.027268 0.015843
0.010017 -0.024562 0.016094
0.009850 -0.023029 0.015227
0.009619 -0.026446 0.010750
0.007890 -0.023343 0.012944
0.010573 -0.032806 0.012931
0.008639 -0.032783 0.013619
0.010124 -0.031797 0.010261
0.009014 -0.033568 0.011510
0.006671 -0.029148 0.010929
0.007088 -0.024189 0.017411
0.003617 -0.027265 0.017143
0.006625 -0.032062 0.014172
0.006034 -0.029231 0.015393
0.008497 -0.022631 0.015673
0.005891 -0.025423 0.011701
0.006540 -0.022767 0.013387
0.008067 -0.033575 0.011532
0.009042 -0.031902 0.010798
0.004888 -0.028300 0.010896
0.005318 -0.031501 0.011535
0.003943 -0.024186 0.018107
0.004384 -0.029845 0.014579
0.000902 -0.025326 0.021120
0.002511 -0.027977 0.015623
-0.001078 -0.027651 0.019175
0.004162 -0.021312 0.014654
0.004303 -0.021891 0.016289
0.003312 -0.023886 0.011316
0.002650 -0.026596 0.010144
0.002453 -0.020300 0.012426
0.002104 -0.028192 0.010042
0.001015 -0.027758 0.012976
0.003000 -0.021806 0.016911
-0.001518 -0.025396 0.022817
-0.001988 -0.023670 0.022217
-0.000881 -0.017294 0.016903
-0.004078 -0.026030 0.023303
-0.006514 -0.026669 0.022935
-0.011247 -0.027510 0.010638
-0.000896 -0.027339 0.007023
-0.009484 -0.028543 0.018376
-0.008255 -0.028631 0.020303
0.001827 -0.019356 0.014453
0.001863 -0.022641 0.010025
0.000861 -0.027948 0.008652
0.001604 -0.017382 0.008758
0.001858 -0.020304 0.008115
0.001713 -0.012777 0.010930
0.000206 -0.027817 0.007411
-0.005547 -0.023301 0.023691
-0.008251 -0.018952 0.020510
-0.002283 -0.014538 0.015063
0.000289 -0.011602 0.013463
-0.009138 -0.026921 0.019862
-0.011885 -0.023717 0.011429
-0.011575 -0.027396 0.012939
0.000807 -0.019774 0.006673
0.000644 -0.025300 0.007462
0.001312 -0.015350 0.007531
0.000832 -0.009279 0.009405
-0.007795 -0.022396 0.020671
-0.010289 -0.015154 0.014141
-0.010650 -0.016771 0.012496
-0.002126 -0.012808 0.013180
-0.011228 -0.015132 0.009572
-0.009903 -0.013983 0.009047
-0.001704 -0.010813 0.008542
-0.010059 -0.014240 0.012035
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
0 2 3
0 4 1
0 3 5
4 0 6
5 6 0
1 7 2
1 8 7
9 8 1
4 10 1
10 11 1
1 11 9
2 7 3
3 12 5
13 3 7
3 13 12
6 10 4
6 5 14
15 5 12
5 15 14
10 6 16
16 6 14
7 8 17
18 7 17
19 13 7
19 7 20
20 7 18
9 17 8
17 9 21
11 21 9
22 10 16
10 22 11
23 21 11
11 22 23
12 13 15
15 13 24
19 24 13
25 16 14
15 25 14
24 25 15
22 16 26
24 16 25
16 27 26
16 24 27
28 18 17
28 17 21
18 29 20
18 28 30
31 29 18
18 30 32
31 18 32
24 19 27
27 19 29
20 29 19
21 23 33
21 33 34
28 21 34
23 22 35
36 35 22
36 22 26
23 35 37
37 33 23
38 26 27
26 38 36
39 27 29
27 39 38
40 28 34
40 30 28
39 29 31
41 30 42
41 32 30
42 30 43
40 43 30
39 31 32
32 44 45
46 47 32
48 32 49
45 49 32
32 48 46
32 41 44
39 32 47
34 33 50
33 37 50
40 34 50
51 35 36
37 35 51
36 52 51
52 36 38
53 37 54
54 37 51
37 55 50
55 37 53
52 38 39
56 52 39
47 56 39
43 40 50
42 44 41
44 42 57
43 57 42
58 43 59
58 57 43
60 59 43
60 43 50
44 57 45
45 61 49
45 57 61
46 62 47
46 63 62
63 46 48
47 62 64
47 65 56
64 65 47
61 48 49
62 63 48
61 62 48
50 55 60
51 52 54
65 52 56
52 65 54
54 64 53
53 64 66
53 66 55
65 64 54
55 66 67
55 67 60
61 57 68
58 68 57
59 69 58
62 68 58
69 70 58
58 70 62
71 59 60
71 69 59
67 71 60
62 61 68
64 62 66
62 70 72
66 62 73
72 73 62
74 66 73
74 67 66
74 71 67
71 74 69
69 74 75
75 70 69
70 75 72
72 75 73
73 75 74
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,322 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="76" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="148">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
0.782337 -0.130674 -0.608993
0.773586 0.621459 -0.123912
0.993452 -0.076257 -0.085079
0.665987 -0.293810 -0.685665
0.441926 -0.290312 -0.848776
0.638121 0.190355 -0.746034
0.467242 0.800123 -0.376149
0.433803 0.489824 0.756232
-0.153155 0.455794 0.876810
0.121669 0.800685 0.586601
0.831468 -0.538250 0.137649
0.323808 -0.065828 0.943830
0.555348 -0.642069 -0.528523
0.176828 -0.697916 -0.694007
0.325339 0.173217 -0.929597
0.187992 -0.624477 -0.758081
-0.299437 -0.693563 -0.655216
-0.022898 -0.526725 -0.849727
0.305052 0.910520 -0.279099
-0.190351 -0.049779 0.980453
0.135623 0.347888 0.927674
0.351321 0.732382 0.583259
0.015399 -0.428370 0.903472
0.177830 -0.902657 0.391901
-0.304734 -0.827668 0.471278
0.412334 0.327313 -0.850204
-0.459049 -0.728409 -0.508621
0.612378 0.020082 -0.790310
-0.237697 -0.920064 -0.311421
0.150099 -0.958008 -0.244316
-0.495592 -0.709420 0.501110
0.488868 0.872351 -0.003277
0.370283 0.744858 -0.555047
0.209265 -0.010519 0.977802
-0.283426 -0.323856 0.902655
0.536876 0.323756 0.779068
0.523046 0.069661 0.849453
0.897919 0.361842 0.250624
0.511842 0.601171 -0.613686
-0.397149 -0.915501 -0.064276
0.392641 0.386388 -0.834588
0.412602 -0.257355 -0.873801
0.436758 0.553986 -0.708761
-0.308564 -0.509812 -0.803044
0.201557 -0.344317 -0.916963
-0.101038 -0.614653 0.782300
-0.459606 -0.812394 0.358856
-0.405449 -0.764146 -0.501690
-0.665276 -0.719491 -0.199350
0.107221 -0.611315 0.784090
0.767336 0.543033 -0.341044
0.865029 0.067824 0.497116
0.704508 -0.497771 0.505858
0.933410 -0.034612 0.357138
0.961190 0.074264 0.265706
0.982889 0.170942 -0.068614
0.194533 -0.827412 0.526827
-0.268003 0.219505 -0.938079
-0.107150 0.703522 -0.702550
-0.627347 0.376955 -0.681426
0.345948 0.622742 -0.701792
-0.849420 -0.028422 -0.526952
0.473080 0.030941 0.880476
-0.944277 0.026845 0.328054
0.687910 -0.120742 0.715682
-0.922367 -0.376566 -0.086237
0.464980 0.118514 0.877353
0.374317 0.925175 0.062757
-0.863298 0.036336 -0.503385
-0.364241 0.801340 -0.474534
-0.532921 0.718577 -0.446813
-0.961399 0.139141 -0.237384
-0.935555 0.334013 0.114768
-0.426305 0.412116 0.805248
-0.312469 0.929033 0.198145
-0.696461 0.695607 -0.176274
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
0.011837 -0.027606 -0.013920
0.011978 -0.024048 -0.013129
0.013153 -0.027423 -0.011730
0.011282 -0.030205 -0.013014
0.009949 -0.027268 -0.015843
0.010017 -0.024562 -0.016094
0.009850 -0.023029 -0.015227
0.012284 -0.025571 -0.010450
0.009619 -0.026446 -0.010750
0.007890 -0.023343 -0.012944
0.011997 -0.031455 -0.011629
0.011636 -0.028957 -0.009720
0.010573 -0.032806 -0.012931
0.008639 -0.032783 -0.013619
0.007088 -0.024189 -0.017411
0.003617 -0.027265 -0.017143
0.006625 -0.032062 -0.014172
0.006034 -0.029231 -0.015393
0.008497 -0.022631 -0.015673
0.006671 -0.029148 -0.010929
0.005891 -0.025423 -0.011701
0.006540 -0.022767 -0.013387
0.010124 -0.031797 -0.010261
0.009014 -0.033568 -0.011510
0.008067 -0.033575 -0.011532
0.003943 -0.024186 -0.018107
0.004384 -0.029845 -0.014579
0.000902 -0.025326 -0.021120
0.002511 -0.027977 -0.015623
-0.001078 -0.027651 -0.019175
0.005318 -0.031501 -0.011535
0.004162 -0.021312 -0.014654
0.004303 -0.021891 -0.016289
0.004888 -0.028300 -0.010896
0.009042 -0.031902 -0.010798
0.003312 -0.023886 -0.011316
0.002650 -0.026596 -0.010144
0.002453 -0.020300 -0.012426
0.003000 -0.021806 -0.016911
0.001015 -0.027758 -0.012976
-0.001988 -0.023670 -0.022217
-0.001518 -0.025396 -0.022817
-0.000881 -0.017294 -0.016903
-0.006514 -0.026669 -0.022935
-0.004078 -0.026030 -0.023303
-0.000896 -0.027339 -0.007023
-0.011247 -0.027510 -0.010638
-0.008255 -0.028631 -0.020303
-0.009484 -0.028543 -0.018376
0.002104 -0.028192 -0.010042
0.001827 -0.019356 -0.014453
0.001863 -0.022641 -0.010025
0.000861 -0.027948 -0.008652
0.001858 -0.020304 -0.008115
0.001604 -0.017382 -0.008758
0.001713 -0.012777 -0.010930
0.000206 -0.027817 -0.007411
-0.005547 -0.023301 -0.023691
-0.002283 -0.014538 -0.015063
-0.008251 -0.018952 -0.020510
0.000289 -0.011602 -0.013463
-0.009138 -0.026921 -0.019862
0.000807 -0.019774 -0.006673
-0.011885 -0.023717 -0.011429
0.000644 -0.025300 -0.007462
-0.011575 -0.027396 -0.012939
0.001312 -0.015350 -0.007531
0.000832 -0.009279 -0.009405
-0.007795 -0.022396 -0.020671
-0.002126 -0.012808 -0.013180
-0.010289 -0.015154 -0.014141
-0.010650 -0.016771 -0.012496
-0.011228 -0.015132 -0.009572
-0.009903 -0.013983 -0.009047
-0.001704 -0.010813 -0.008542
-0.010059 -0.014240 -0.012035
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
3 0 2
0 4 1
3 4 0
4 5 1
1 5 6
1 7 2
1 8 7
1 9 8
6 9 1
10 3 2
11 2 7
2 11 10
10 12 3
4 3 13
12 13 3
14 5 4
14 4 15
4 13 16
17 4 16
15 4 17
5 14 6
18 6 14
6 18 9
7 8 11
19 8 20
19 11 8
9 20 8
9 18 21
21 20 9
22 10 11
12 10 23
22 23 10
22 11 19
23 13 12
24 13 23
13 24 16
14 15 25
18 14 25
17 26 15
27 25 15
15 26 28
29 27 15
29 15 28
30 16 24
26 16 30
16 26 17
31 21 18
32 31 18
32 18 25
33 19 20
22 19 34
34 19 24
33 30 19
30 24 19
35 20 21
20 35 36
33 20 36
37 35 21
21 31 37
22 34 23
23 34 24
32 25 38
25 27 38
28 26 39
26 30 39
40 27 41
27 29 41
42 27 40
27 42 38
29 28 39
43 44 29
29 45 46
47 29 48
29 47 43
46 48 29
44 41 29
45 29 39
30 33 49
49 39 30
50 31 32
50 37 31
50 32 38
36 49 33
36 35 51
51 35 37
51 52 36
49 36 52
53 37 54
51 37 53
50 55 37
54 37 55
50 38 42
39 52 56
39 56 45
39 49 52
41 44 40
57 40 44
40 57 42
58 42 59
42 57 59
42 58 60
50 42 60
47 61 43
61 57 43
43 57 44
62 63 45
56 64 45
45 64 62
45 63 46
63 65 46
48 46 65
47 48 61
48 65 63
48 63 61
60 55 50
53 52 51
56 52 64
53 64 52
53 62 64
54 62 53
66 62 54
55 66 54
67 66 55
60 67 55
68 57 61
57 68 59
60 58 69
58 70 69
59 70 58
59 68 63
59 71 70
63 71 59
60 69 67
68 61 63
66 63 62
72 71 63
73 63 66
63 73 72
73 66 74
66 67 74
67 69 74
70 74 69
75 74 70
70 71 75
72 75 71
73 75 72
74 75 73
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,526 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="127" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="250">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
0.274983 -0.667932 -0.691557
-0.009451 -0.937845 -0.346926
0.242876 -0.871010 -0.427028
0.452795 -0.560172 -0.693674
0.063103 -0.701529 -0.709842
0.623011 -0.117542 -0.773331
0.567811 0.064138 -0.820657
0.026148 -0.993244 -0.113062
-0.214477 -0.952289 -0.217131
-0.233652 -0.972024 -0.023993
0.255732 -0.850203 -0.460169
0.067809 -0.327894 -0.942278
0.533754 -0.023041 -0.845326
-0.126838 -0.899274 -0.418591
0.281833 0.147398 -0.948074
0.092915 -0.312677 -0.945304
0.719815 0.548986 -0.424830
0.664616 0.422144 -0.616506
0.634564 0.695869 -0.336295
0.476081 0.742364 -0.471426
-0.189557 -0.965026 -0.181089
-0.882034 -0.414470 -0.224124
-0.246511 -0.962467 0.113530
-0.256258 -0.903768 0.342835
-0.195351 -0.851825 0.486037
-0.964283 -0.192654 0.181778
-0.974469 -0.066997 -0.214294
-0.159874 -0.859949 -0.484694
-0.196467 -0.619754 -0.759807
0.060662 0.263050 -0.962873
-0.699832 -0.067096 -0.711150
-0.823087 0.335676 -0.458093
0.190848 0.662953 -0.723927
-0.315147 -0.713661 -0.625596
-0.300515 -0.904139 -0.303682
-0.027941 -0.999534 -0.012263
-0.047560 0.716156 -0.696318
0.514860 0.835859 0.190417
0.368459 0.885664 -0.282553
0.527849 0.848280 0.042388
-0.947425 -0.146021 -0.284716
-0.699346 0.703858 -0.124496
-0.856319 0.483790 -0.180736
-0.055559 -0.932604 0.356598
-0.353422 -0.803210 0.479528
-0.278543 -0.452199 0.847307
-0.206390 -0.609827 0.765189
0.039688 -0.234547 0.971294
0.097329 -0.480293 0.871692
0.005177 -0.741640 0.670779
-0.921239 0.058857 0.384518
-0.794877 0.604502 -0.052420
-0.828663 0.551408 -0.096269
-0.995424 -0.082295 -0.048564
-0.561450 0.632813 -0.533218
-0.482117 0.768491 -0.420695
-0.948989 0.264508 -0.171628
-0.473843 -0.683939 -0.554708
-0.806246 -0.270609 -0.526059
-0.025433 -0.972294 -0.232372
0.000595 -0.756011 -0.654558
0.179752 -0.973633 0.140458
0.106765 -0.994192 0.013560
0.913531 -0.406726 0.005964
0.533340 -0.826601 0.179665
-0.210656 0.977545 0.005571
0.137565 0.989951 0.032742
-0.293835 0.954891 -0.042952
0.544848 0.276044 0.791795
0.555349 0.341690 0.758179
0.212608 0.631611 0.745564
-0.183710 0.824168 0.535722
-0.131797 0.985668 0.105305
-0.874383 0.462246 -0.147589
-0.222456 0.933558 -0.281037
0.312523 0.722650 0.616528
-0.964021 0.116498 -0.238940
-0.857521 0.509564 -0.070733
-0.959846 0.222082 -0.171394
0.468321 -0.190428 0.862794
-0.267436 -0.711239 0.650090
0.682143 -0.508760 0.525208
-0.557282 -0.578117 0.596001
-0.443878 -0.636412 0.630834
-0.195833 -0.090334 0.976468
-0.712165 -0.038532 0.700953
-0.240375 0.701349 0.671066
-0.081402 0.148270 0.985591
0.324033 -0.250392 0.912308
-0.640681 -0.401707 0.654339
0.008705 -0.408194 0.912854
-0.873395 0.470629 0.125255
-0.970415 0.200451 -0.134586
-0.851153 0.509861 -0.124817
-0.986428 0.106560 -0.124919
-0.976555 -0.180957 -0.116600
-0.050603 0.076415 -0.995791
-0.799321 0.275121 -0.534224
0.715756 -0.477515 -0.509580
0.406266 0.033818 -0.913129
0.569441 -0.028887 -0.821525
0.661254 -0.238000 -0.711406
0.267567 -0.050348 -0.962223
0.805943 0.508855 -0.302528
0.906048 0.340071 0.251853
0.498615 0.866822 0.001705
0.049349 0.998465 -0.025152
-0.177812 0.980887 -0.079016
-0.131110 0.911759 -0.389238
0.424952 0.806507 -0.411049
0.237932 0.120401 0.963790
-0.175811 0.423574 0.888637
-0.764974 0.452965 0.457862
-0.905442 0.422663 -0.039131
-0.927294 -0.104041 -0.359586
0.178310 0.068657 0.981576
0.573553 0.653509 0.493926
-0.240091 -0.106357 0.964907
-0.321848 0.143839 0.935801
-0.674562 0.439257 0.593312
-0.481784 0.875043 0.046725
-0.785971 -0.002226 0.618259
-0.102702 0.048891 0.993510
-0.974836 0.067702 -0.212395
0.635562 0.604472 -0.480285
0.179078 0.811547 0.556167
-0.064923 0.992823 0.100441
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
0.047813 -0.161855 -0.016602
0.046947 -0.162285 -0.015753
0.046059 -0.161847 -0.017249
0.047144 -0.161178 -0.017455
0.049857 -0.162555 -0.015397
0.047794 -0.160908 -0.017148
0.048847 -0.161372 -0.016446
0.045819 -0.162088 -0.016636
0.050163 -0.163457 -0.013730
0.042394 -0.161788 -0.015568
0.044895 -0.161979 -0.018110
0.044394 -0.160782 -0.019556
0.045373 -0.159706 -0.019448
0.053033 -0.164426 -0.013174
0.050415 -0.162008 -0.015572
0.051288 -0.162351 -0.015443
0.047945 -0.159941 -0.016571
0.046018 -0.159019 -0.018747
0.048938 -0.160537 -0.015687
0.050477 -0.161422 -0.014963
0.044100 -0.162113 -0.017617
0.042512 -0.161731 -0.016539
0.052710 -0.164411 -0.012590
0.050038 -0.163283 -0.011876
0.045754 -0.161991 -0.011779
0.041619 -0.161354 -0.012269
0.041856 -0.161571 -0.014423
0.044157 -0.161802 -0.018563
0.044131 -0.161266 -0.019206
0.044814 -0.159463 -0.019677
0.043702 -0.160228 -0.019347
0.044132 -0.159067 -0.019264
0.045210 -0.158539 -0.018965
0.052439 -0.162623 -0.015273
0.055030 -0.164243 -0.014094
0.056456 -0.164778 -0.012307
0.051625 -0.162000 -0.015298
0.045760 -0.157193 -0.010652
0.045312 -0.157608 -0.017554
0.050256 -0.160973 -0.013091
0.043522 -0.161450 -0.018628
0.043187 -0.160643 -0.014152
0.043990 -0.159601 -0.014515
0.055615 -0.164644 -0.010750
0.052760 -0.163871 -0.011252
0.051127 -0.162400 -0.010350
0.049824 -0.162656 -0.010871
0.048146 -0.161401 -0.010489
0.046773 -0.160889 -0.010241
0.044872 -0.160651 -0.009956
0.042598 -0.160640 -0.010128
0.042338 -0.160826 -0.011155
0.043821 -0.159804 -0.013630
0.044366 -0.158308 -0.015163
0.044182 -0.158532 -0.018824
0.044394 -0.157656 -0.017714
0.044054 -0.157550 -0.016825
0.052697 -0.162351 -0.016289
0.052203 -0.162258 -0.015670
0.056218 -0.164728 -0.014041
0.055819 -0.164301 -0.014903
0.056778 -0.164903 -0.012701
0.056637 -0.164886 -0.011799
0.057779 -0.164460 -0.013025
0.057217 -0.164679 -0.011714
0.052369 -0.161681 -0.014617
0.051679 -0.161495 -0.012939
0.052622 -0.161458 -0.015469
0.047610 -0.159743 -0.010330
0.046105 -0.158231 -0.009726
0.045010 -0.157588 -0.009424
0.043832 -0.157261 -0.009775
0.043827 -0.156844 -0.010955
0.043916 -0.156957 -0.013647
0.044467 -0.157383 -0.017193
0.049923 -0.161430 -0.011066
0.044275 -0.158670 -0.014589
0.043552 -0.160169 -0.014154
0.044011 -0.159112 -0.014156
0.056088 -0.163722 -0.009634
0.053941 -0.163589 -0.009531
0.057165 -0.164290 -0.010722
0.052013 -0.162269 -0.009529
0.051779 -0.162618 -0.010315
0.050650 -0.162253 -0.010426
0.051579 -0.162123 -0.010076
0.051066 -0.161902 -0.010470
0.049780 -0.162024 -0.010590
0.045852 -0.159561 -0.009550
0.042840 -0.160280 -0.009627
0.043676 -0.159390 -0.008825
0.042444 -0.160488 -0.010692
0.043018 -0.159212 -0.010167
0.042789 -0.160118 -0.010801
0.044246 -0.158168 -0.012956
0.044045 -0.157879 -0.014331
0.052933 -0.161871 -0.016658
0.052422 -0.161788 -0.016346
0.057465 -0.164243 -0.014132
0.055732 -0.163148 -0.015770
0.056563 -0.163615 -0.015321
0.056922 -0.163850 -0.015025
0.053973 -0.162262 -0.016405
0.056884 -0.163316 -0.014681
0.057605 -0.163968 -0.012100
0.056367 -0.162729 -0.013886
0.052933 -0.161776 -0.012669
0.051946 -0.161663 -0.010867
0.052833 -0.161390 -0.016172
0.054011 -0.161723 -0.015983
0.044558 -0.158714 -0.008803
0.043345 -0.158601 -0.008889
0.043005 -0.158092 -0.009287
0.043216 -0.157434 -0.010429
0.043871 -0.157988 -0.011730
0.053678 -0.162489 -0.008813
0.055459 -0.162731 -0.009569
0.053042 -0.162174 -0.008845
0.052569 -0.161975 -0.009008
0.051862 -0.161784 -0.009324
0.052106 -0.161452 -0.010266
0.042985 -0.159060 -0.008961
0.043824 -0.158891 -0.008726
0.043027 -0.158150 -0.010151
0.056258 -0.162839 -0.015206
0.053185 -0.161659 -0.009277
0.052190 -0.161392 -0.009766
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
0 2 3
1 0 4
0 3 5
4 0 6
0 5 6
2 1 7
1 4 8
9 1 8
9 7 1
2 10 3
2 7 10
11 3 10
12 3 11
12 5 3
4 13 8
4 14 15
4 6 14
4 15 13
16 6 5
16 5 17
17 5 12
6 18 19
14 6 19
6 16 18
20 7 21
21 7 9
20 10 7
8 13 22
9 8 23
8 22 23
9 23 24
24 25 9
26 9 25
9 26 21
10 20 27
10 27 28
28 11 10
12 11 29
11 30 31
30 11 28
31 29 11
12 32 17
32 12 29
13 33 34
15 33 13
35 22 13
35 13 34
36 15 14
36 14 19
15 36 33
37 18 16
37 16 38
38 16 17
38 17 32
19 18 39
39 18 37
19 39 36
40 20 21
40 27 20
41 21 26
42 21 41
42 40 21
43 22 35
22 43 44
22 44 23
45 23 44
23 45 46
23 46 24
24 46 47
24 47 48
25 24 49
49 24 48
25 49 50
25 50 51
26 25 41
52 25 51
52 41 25
27 40 28
30 28 40
31 32 29
30 40 31
53 31 40
32 31 54
31 55 54
55 31 56
56 31 53
32 54 55
38 32 55
34 33 57
33 58 57
36 58 33
59 34 60
35 34 59
60 34 57
61 35 59
35 62 43
35 61 63
35 64 62
64 35 63
65 36 66
39 66 36
67 58 36
67 36 65
68 37 69
39 37 68
69 37 70
71 70 37
72 71 37
38 72 37
38 73 72
73 38 74
38 55 74
39 68 75
66 39 75
76 40 42
76 53 40
77 41 52
41 77 42
77 78 42
78 76 42
43 79 80
43 62 64
81 43 64
43 81 79
44 43 80
82 44 80
44 83 45
44 82 83
84 46 45
85 45 83
45 86 84
86 45 85
46 87 47
46 84 87
75 47 87
47 75 68
68 48 47
88 49 48
68 88 48
89 49 90
49 88 90
49 89 50
50 91 51
92 50 89
91 50 93
92 93 50
93 51 91
52 51 93
78 77 52
52 93 94
78 52 94
95 56 53
76 95 53
56 74 55
56 73 74
95 73 56
60 57 96
58 97 57
57 97 96
58 67 97
98 59 60
98 63 59
59 63 61
60 99 100
60 100 101
99 60 102
98 60 101
102 60 96
63 98 103
104 64 63
63 105 104
103 105 63
104 81 64
66 106 65
65 106 67
75 86 66
66 107 106
86 107 66
67 108 97
105 67 106
109 67 105
67 109 108
88 68 69
69 110 88
110 69 70
110 70 111
71 111 70
71 112 111
71 72 113
71 113 112
72 73 113
114 73 94
94 73 95
114 113 73
86 75 87
78 95 76
94 95 78
79 115 80
79 116 115
104 79 81
79 104 116
115 117 80
117 82 80
117 118 82
118 119 82
85 83 82
82 119 85
84 86 87
120 86 85
120 85 119
120 107 86
90 88 110
90 121 89
92 89 121
122 121 90
110 122 90
94 93 92
114 94 92
123 92 121
92 123 114
102 96 109
109 96 108
108 96 97
98 101 103
100 99 124
109 124 99
102 109 99
100 103 101
100 124 103
105 103 124
116 104 105
116 105 125
105 106 126
105 124 109
105 126 125
107 120 106
120 126 106
122 110 111
121 122 111
111 112 121
121 112 123
113 123 112
123 113 114
125 115 116
125 117 115
117 125 118
118 125 119
125 126 119
120 119 126
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444 447 450 453 456 459 462 465 468 471 474 477 480 483 486 489 492 495 498 501 504 507 510 513 516 519 522 525 528 531 534 537 540 543 546 549 552 555 558 561 564 567 570 573 576 579 582 585 588 591 594 597 600 603 606 609 612 615 618 621 624 627 630 633 636 639 642 645 648 651 654 657 660 663 666 669 672 675 678 681 684 687 690 693 696 699 702 705 708 711 714 717 720 723 726 729 732 735 738 741 744 747 750
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,526 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="127" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="250">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
0.242876 -0.871010 0.427028
-0.009451 -0.937845 0.346926
0.274983 -0.667932 0.691557
0.026148 -0.993244 0.113062
0.452795 -0.560172 0.693674
0.255732 -0.850203 0.460169
0.063103 -0.701529 0.709842
-0.214477 -0.952289 0.217131
-0.233652 -0.972024 0.023993
0.623011 -0.117542 0.773331
0.567811 0.064138 0.820657
-0.882034 -0.414470 0.224124
-0.189557 -0.965026 0.181089
0.067809 -0.327894 0.942278
0.533754 -0.023041 0.845326
-0.159874 -0.859949 0.484694
-0.196467 -0.619754 0.759807
-0.126838 -0.899274 0.418591
0.092915 -0.312677 0.945304
0.281833 0.147398 0.948074
-0.246511 -0.962467 -0.113530
-0.256258 -0.903768 -0.342835
-0.195351 -0.851825 -0.486037
-0.964283 -0.192654 -0.181778
-0.974469 -0.066997 0.214294
0.719815 0.548986 0.424830
0.664616 0.422144 0.616506
0.476081 0.742364 0.471426
0.634564 0.695869 0.336295
-0.947425 -0.146021 0.284716
-0.699346 0.703858 0.124496
-0.856319 0.483790 0.180736
0.060662 0.263050 0.962873
-0.823087 0.335676 0.458093
-0.699832 -0.067096 0.711150
0.190848 0.662953 0.723927
-0.300515 -0.904139 0.303682
-0.315147 -0.713661 0.625596
-0.027941 -0.999534 0.012263
-0.047560 0.716156 0.696318
-0.055559 -0.932604 -0.356598
-0.353422 -0.803210 -0.479528
-0.278543 -0.452199 -0.847307
-0.206390 -0.609827 -0.765189
0.039688 -0.234547 -0.971294
0.097329 -0.480293 -0.871692
0.005177 -0.741640 -0.670779
-0.921239 0.058857 -0.384518
-0.794877 0.604502 0.052420
-0.828663 0.551408 0.096269
0.514860 0.835859 -0.190417
0.368459 0.885664 0.282553
0.527849 0.848280 -0.042388
-0.995424 -0.082295 0.048564
-0.964021 0.116498 0.238940
-0.857521 0.509564 0.070733
-0.959846 0.222082 0.171394
-0.561450 0.632813 0.533218
-0.482117 0.768491 0.420695
-0.948989 0.264508 0.171628
0.000595 -0.756011 0.654558
-0.025433 -0.972294 0.232372
-0.473843 -0.683939 0.554708
-0.806246 -0.270609 0.526059
0.179752 -0.973633 -0.140458
0.106765 -0.994192 -0.013560
0.913531 -0.406726 -0.005964
0.533340 -0.826601 -0.179665
0.137565 0.989951 -0.032742
-0.210656 0.977545 -0.005571
-0.293835 0.954891 0.042952
-0.267436 -0.711239 -0.650090
0.468321 -0.190428 -0.862794
0.682143 -0.508760 -0.525208
-0.557282 -0.578117 -0.596001
-0.443878 -0.636412 -0.630834
-0.195833 -0.090334 -0.976468
-0.712165 -0.038532 -0.700953
-0.240375 0.701349 -0.671066
-0.081402 0.148270 -0.985591
0.312523 0.722650 -0.616528
0.544848 0.276044 -0.791795
0.324033 -0.250392 -0.912308
0.008705 -0.408194 -0.912854
-0.640681 -0.401707 -0.654339
-0.873395 0.470629 -0.125255
-0.970415 0.200451 0.134586
-0.851153 0.509861 0.124817
-0.986428 0.106560 0.124919
0.555349 0.341690 -0.758179
0.212608 0.631611 -0.745564
-0.183710 0.824168 -0.535722
-0.131797 0.985668 -0.105305
-0.874383 0.462246 0.147589
-0.222456 0.933558 0.281037
-0.976555 -0.180957 0.116600
0.569441 -0.028887 0.821525
0.406266 0.033818 0.913129
0.661254 -0.238000 0.711406
0.267567 -0.050348 0.962223
0.715756 -0.477515 0.509580
-0.050603 0.076415 0.995791
-0.799321 0.275121 0.534224
0.805943 0.508855 0.302528
0.906048 0.340071 -0.251853
0.498615 0.866822 -0.001705
0.049349 0.998465 0.025152
-0.177812 0.980887 0.079016
-0.131110 0.911759 0.389238
0.424952 0.806507 0.411049
0.178310 0.068657 -0.981576
-0.240091 -0.106357 -0.964907
0.573553 0.653509 -0.493926
-0.321848 0.143839 -0.935801
-0.674562 0.439257 -0.593312
-0.481784 0.875043 -0.046725
0.237932 0.120401 -0.963790
-0.785971 -0.002226 -0.618259
-0.102702 0.048891 -0.993510
-0.927294 -0.104041 0.359586
-0.974836 0.067702 0.212395
-0.175811 0.423574 -0.888637
-0.764974 0.452965 -0.457862
-0.905442 0.422663 0.039131
0.635562 0.604472 0.480285
0.179078 0.811547 -0.556167
-0.064923 0.992823 -0.100441
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
0.046059 -0.161847 0.017249
0.046947 -0.162285 0.015753
0.047813 -0.161855 0.016602
0.045819 -0.162088 0.016636
0.047144 -0.161178 0.017455
0.044895 -0.161979 0.018110
0.049857 -0.162555 0.015397
0.050163 -0.163457 0.013730
0.042394 -0.161788 0.015568
0.047794 -0.160908 0.017148
0.048847 -0.161372 0.016446
0.042512 -0.161731 0.016539
0.044100 -0.162113 0.017617
0.044394 -0.160782 0.019556
0.045373 -0.159706 0.019448
0.044157 -0.161802 0.018563
0.044131 -0.161266 0.019206
0.053033 -0.164426 0.013174
0.051288 -0.162351 0.015443
0.050415 -0.162008 0.015572
0.052710 -0.164411 0.012590
0.050038 -0.163283 0.011876
0.045754 -0.161991 0.011779
0.041619 -0.161354 0.012269
0.041856 -0.161571 0.014423
0.047945 -0.159941 0.016571
0.046018 -0.159019 0.018747
0.050477 -0.161422 0.014963
0.048938 -0.160537 0.015687
0.043522 -0.161450 0.018628
0.043187 -0.160643 0.014152
0.043990 -0.159601 0.014515
0.044814 -0.159463 0.019677
0.044132 -0.159067 0.019264
0.043702 -0.160228 0.019347
0.045210 -0.158539 0.018965
0.055030 -0.164243 0.014094
0.052439 -0.162623 0.015273
0.056456 -0.164778 0.012307
0.051625 -0.162000 0.015298
0.055615 -0.164644 0.010750
0.052760 -0.163871 0.011252
0.051127 -0.162400 0.010350
0.049824 -0.162656 0.010871
0.048146 -0.161401 0.010489
0.046773 -0.160889 0.010241
0.044872 -0.160651 0.009956
0.042598 -0.160640 0.010128
0.042338 -0.160826 0.011155
0.043821 -0.159804 0.013630
0.045760 -0.157193 0.010652
0.045312 -0.157608 0.017554
0.050256 -0.160973 0.013091
0.044366 -0.158308 0.015163
0.044275 -0.158670 0.014589
0.043552 -0.160169 0.014154
0.044011 -0.159112 0.014156
0.044182 -0.158532 0.018824
0.044394 -0.157656 0.017714
0.044054 -0.157550 0.016825
0.055819 -0.164301 0.014903
0.056218 -0.164728 0.014041
0.052697 -0.162351 0.016289
0.052203 -0.162258 0.015670
0.056778 -0.164903 0.012701
0.056637 -0.164886 0.011799
0.057779 -0.164460 0.013025
0.057217 -0.164679 0.011714
0.051679 -0.161495 0.012939
0.052369 -0.161681 0.014617
0.052622 -0.161458 0.015469
0.053941 -0.163589 0.009531
0.056088 -0.163722 0.009634
0.057165 -0.164290 0.010722
0.052013 -0.162269 0.009529
0.051779 -0.162618 0.010315
0.050650 -0.162253 0.010426
0.051579 -0.162123 0.010076
0.051066 -0.161902 0.010470
0.049780 -0.162024 0.010590
0.049923 -0.161430 0.011066
0.047610 -0.159743 0.010330
0.045852 -0.159561 0.009550
0.043676 -0.159390 0.008825
0.042840 -0.160280 0.009627
0.042444 -0.160488 0.010692
0.043018 -0.159212 0.010167
0.042789 -0.160118 0.010801
0.044246 -0.158168 0.012956
0.046105 -0.158231 0.009726
0.045010 -0.157588 0.009424
0.043832 -0.157261 0.009775
0.043827 -0.156844 0.010955
0.043916 -0.156957 0.013647
0.044467 -0.157383 0.017193
0.044045 -0.157879 0.014331
0.056563 -0.163615 0.015321
0.055732 -0.163148 0.015770
0.056922 -0.163850 0.015025
0.053973 -0.162262 0.016405
0.057465 -0.164243 0.014132
0.052933 -0.161871 0.016658
0.052422 -0.161788 0.016346
0.056884 -0.163316 0.014681
0.057605 -0.163968 0.012100
0.056367 -0.162729 0.013886
0.052933 -0.161776 0.012669
0.051946 -0.161663 0.010867
0.052833 -0.161390 0.016172
0.054011 -0.161723 0.015983
0.053678 -0.162489 0.008813
0.053042 -0.162174 0.008845
0.055459 -0.162731 0.009569
0.052569 -0.161975 0.009008
0.051862 -0.161784 0.009324
0.052106 -0.161452 0.010266
0.044558 -0.158714 0.008803
0.042985 -0.159060 0.008961
0.043824 -0.158891 0.008726
0.043871 -0.157988 0.011730
0.043027 -0.158150 0.010151
0.043345 -0.158601 0.008889
0.043005 -0.158092 0.009287
0.043216 -0.157434 0.010429
0.056258 -0.162839 0.015206
0.053185 -0.161659 0.009277
0.052190 -0.161392 0.009766
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
3 1 0
4 5 0
5 3 0
4 0 2
6 2 1
7 6 1
7 1 8
1 3 8
9 4 2
10 2 6
10 9 2
11 3 12
8 3 11
3 5 12
5 4 13
13 4 14
4 9 14
15 12 5
16 15 5
5 13 16
7 17 6
18 19 6
19 10 6
17 18 6
20 17 7
21 7 8
21 20 7
22 21 8
8 23 22
23 8 24
11 24 8
9 10 25
26 9 25
14 9 26
27 28 10
27 10 19
28 25 10
11 12 29
24 11 30
30 11 31
11 29 31
12 15 29
32 13 14
33 34 13
16 13 34
13 32 33
26 35 14
32 14 35
16 29 15
29 16 34
36 37 17
17 37 18
17 20 38
36 17 38
37 39 18
19 18 39
27 19 39
38 20 40
41 40 20
21 41 20
41 21 42
43 42 21
22 43 21
44 43 22
45 44 22
46 22 23
45 22 46
47 46 23
48 47 23
30 23 24
48 23 49
23 30 49
25 28 50
51 25 50
26 25 51
35 26 51
52 28 27
39 52 27
50 28 52
33 29 34
29 33 53
31 29 54
29 53 54
49 30 55
31 55 30
31 56 55
31 54 56
32 35 33
57 33 35
57 58 33
59 33 58
53 33 59
58 57 35
58 35 51
60 36 61
61 36 38
62 36 60
62 37 36
62 63 37
37 63 39
61 38 64
40 65 38
66 64 38
65 67 38
66 38 67
68 39 69
39 68 52
39 63 70
69 39 70
71 72 40
67 65 40
67 40 73
72 73 40
71 40 41
71 41 74
42 75 41
75 74 41
42 43 76
75 42 77
76 78 42
77 42 78
44 79 43
79 76 43
79 44 80
81 80 44
44 45 81
45 46 82
45 82 81
83 46 84
83 82 46
47 84 46
48 85 47
84 47 86
87 47 85
47 87 86
85 48 87
87 48 49
49 55 56
88 87 49
88 49 56
89 50 81
81 50 52
90 50 89
50 90 91
50 91 92
50 92 51
92 93 51
94 51 93
94 58 51
80 81 52
80 52 68
53 59 95
53 95 54
54 95 56
56 95 88
58 94 59
94 93 59
59 93 95
96 97 60
98 96 60
99 60 97
98 60 100
60 61 100
101 62 60
101 60 99
61 66 100
64 66 61
62 102 63
101 102 62
102 70 63
103 100 66
66 67 104
104 105 66
66 105 103
67 73 104
68 78 80
69 106 68
106 107 68
68 107 78
70 106 69
102 108 70
106 70 105
105 70 109
108 109 70
71 110 72
71 111 110
71 74 111
110 112 72
73 72 104
112 104 72
74 113 111
74 114 113
74 75 77
77 114 74
79 78 76
77 78 115
114 77 115
79 80 78
78 107 115
89 81 82
82 116 89
116 82 83
84 117 83
83 117 118
83 118 116
117 84 86
86 87 88
86 88 119
117 86 120
119 120 86
88 93 119
95 93 88
90 89 116
121 90 116
90 121 91
121 122 91
123 92 91
122 123 91
123 93 92
93 123 119
124 97 96
98 103 96
103 124 96
97 124 109
97 109 99
103 98 100
109 101 99
108 101 109
102 101 108
124 103 105
105 104 112
125 105 112
126 106 105
109 124 105
125 126 105
106 115 107
106 126 115
112 110 125
110 111 125
113 125 111
114 125 113
114 126 125
126 114 115
121 116 118
121 118 117
117 122 121
120 122 117
119 123 120
122 120 123
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444 447 450 453 456 459 462 465 468 471 474 477 480 483 486 489 492 495 498 501 504 507 510 513 516 519 522 525 528 531 534 537 540 543 546 549 552 555 558 561 564 567 570 573 576 579 582 585 588 591 594 597 600 603 606 609 612 615 618 621 624 627 630 633 636 639 642 645 648 651 654 657 660 663 666 669 672 675 678 681 684 687 690 693 696 699 702 705 708 711 714 717 720 723 726 729 732 735 738 741 744 747 750
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,554 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="134" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="264">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
-0.553355 -0.546822 -0.628319
-0.372355 -0.739848 -0.560337
-0.619085 -0.785309 -0.004849
-0.744152 -0.630315 -0.221228
0.107873 -0.307193 -0.945514
-0.285562 0.052548 -0.956919
-0.399404 -0.223792 -0.889041
-0.005622 -0.896414 -0.443183
0.067442 -0.994369 0.081739
-0.730153 -0.669521 0.136450
-0.643166 -0.616627 0.453991
-0.395855 -0.904240 0.160154
-0.575704 -0.688667 -0.440797
-0.667524 -0.664287 0.336355
0.451392 -0.639720 -0.622097
0.647578 -0.307366 -0.697257
-0.030411 0.093940 -0.995113
0.217985 0.036715 -0.975261
0.461743 0.567746 -0.681512
0.834299 0.329787 -0.441798
0.042342 0.645905 -0.762242
0.062195 0.887245 -0.457087
0.525239 0.322790 -0.787357
-0.208557 -0.410672 -0.887611
0.736842 -0.675773 -0.019853
0.227826 -0.973305 0.027813
0.839270 -0.540115 0.062471
-0.725467 -0.503235 0.469524
-0.159346 -0.822147 0.546520
-0.402493 -0.129022 0.906285
-0.700394 -0.248801 0.668989
-0.213103 -0.212481 0.953645
0.163896 -0.974260 0.154777
-0.638147 -0.768877 0.039961
-0.438478 -0.778252 -0.449512
-0.226076 -0.563805 -0.794364
-0.133966 -0.562626 -0.815785
-0.540370 -0.264633 0.798730
-0.331758 -0.206979 0.920378
-0.615078 -0.653223 0.441564
-0.278430 -0.273937 0.920562
-0.355427 -0.419702 0.835178
0.956930 -0.144821 -0.251619
0.585899 0.809937 0.026911
0.886417 0.459452 0.056293
0.452484 0.871433 -0.189374
0.552838 0.829409 -0.080323
0.719214 0.410603 -0.560479
0.712037 0.702134 0.003349
0.229437 -0.184196 -0.955736
0.986440 -0.024913 0.162220
0.704064 -0.710111 0.006052
0.932906 0.359293 0.024378
0.995609 -0.092282 0.015698
-0.492589 0.179395 0.851571
0.570119 -0.565153 0.596294
-0.292173 -0.021755 0.956118
-0.211359 -0.047353 0.976261
0.203706 -0.011527 0.978964
-0.671193 -0.631019 0.388991
-0.721264 -0.691715 0.036166
-0.669297 -0.671343 -0.318341
0.380507 -0.400099 -0.833748
-0.215784 -0.812421 -0.541672
0.490772 -0.027422 -0.870857
-0.114887 0.364095 0.924249
0.344088 0.492870 0.799176
0.607485 0.521616 0.599065
-0.674582 -0.382538 0.631350
-0.281293 -0.218858 0.934331
0.059629 -0.106135 0.992562
0.391207 0.234319 0.889973
0.481341 0.861946 0.159250
0.384361 0.923168 0.005169
0.811126 0.583975 -0.032371
0.808064 0.446781 -0.383952
0.826822 0.273378 0.491559
0.840011 -0.108856 0.531537
0.005903 0.832922 0.553359
0.147872 0.795848 0.587163
-0.036678 0.424459 0.904704
0.184240 0.242451 0.952509
-0.968057 0.037499 0.247909
-0.866983 0.410152 -0.283048
-0.374942 -0.647635 -0.663316
-0.749442 0.639241 -0.172358
-0.718703 -0.270180 -0.640679
0.106410 -0.577318 -0.809556
0.377805 -0.151053 -0.913480
0.923844 0.272411 -0.268896
0.709098 0.168180 -0.684760
0.874473 0.436080 0.212440
-0.772520 0.600539 0.206314
-0.674222 0.318032 0.666544
0.055240 0.181771 0.981788
0.573232 0.279873 0.770115
0.404994 0.843975 0.351691
0.606638 0.617968 0.500105
-0.343295 0.916965 -0.203280
-0.253097 0.963360 -0.088770
-0.178952 -0.362393 -0.914684
-0.742041 0.160621 -0.650827
-0.654642 0.667558 -0.354698
-0.779577 0.626270 -0.006827
-0.661526 0.748238 -0.050236
-0.844013 0.510409 -0.164694
-0.905412 0.413500 -0.096156
-0.726812 0.595984 -0.341392
-0.432807 0.901450 0.008075
0.076121 0.348786 -0.934106
0.092726 -0.158327 -0.983023
0.764472 0.614142 -0.195990
0.462135 0.574751 -0.675346
0.710928 0.584762 0.390685
-0.759162 0.589463 -0.276057
-0.430616 0.650834 0.625288
0.297811 0.437558 0.848441
-0.454443 0.885849 -0.093564
-0.699735 0.692941 -0.173794
-0.439673 0.237627 -0.866153
-0.353509 0.793786 -0.494909
-0.041028 0.908865 -0.415069
-0.503209 0.823254 -0.262743
-0.761541 0.638682 -0.110187
-0.751000 0.654439 -0.087794
-0.942661 0.136050 -0.304765
-0.975848 0.158985 -0.149817
-0.846665 0.530352 -0.043413
-0.610527 0.771793 -0.177744
0.181003 0.704751 0.685977
-0.342548 0.924524 0.167079
-0.542378 0.825071 0.158375
-0.934385 0.328167 -0.138678
-0.919115 0.361065 -0.157671
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
0.037679 -0.158068 -0.018509
0.039684 -0.160332 -0.017770
0.039308 -0.160188 -0.016532
0.036769 -0.156972 -0.017893
0.042435 -0.157434 -0.019592
0.038347 -0.155560 -0.019817
0.036987 -0.155634 -0.019238
0.041080 -0.160670 -0.017855
0.040640 -0.160881 -0.016552
0.037207 -0.157574 -0.014793
0.039789 -0.159618 -0.011345
0.039965 -0.160156 -0.013401
0.034751 -0.155115 -0.017620
0.032629 -0.153364 -0.014996
0.042432 -0.159915 -0.018294
0.042820 -0.158811 -0.018926
0.039747 -0.155652 -0.020091
0.041336 -0.156326 -0.019967
0.041466 -0.155298 -0.019620
0.042988 -0.156711 -0.018965
0.037859 -0.154603 -0.018921
0.039169 -0.154444 -0.019321
0.036708 -0.153470 -0.019299
0.035619 -0.154367 -0.019184
0.042908 -0.159876 -0.017364
0.040600 -0.160400 -0.014138
0.042650 -0.159126 -0.014524
0.036673 -0.156196 -0.013119
0.041040 -0.160062 -0.011006
0.038609 -0.156567 -0.011096
0.037642 -0.156801 -0.011760
0.040580 -0.159213 -0.010612
0.041131 -0.160395 -0.012108
0.028562 -0.149365 -0.015494
0.028725 -0.148635 -0.020908
0.032962 -0.151655 -0.020145
0.031093 -0.149409 -0.021378
0.036610 -0.155188 -0.012330
0.033362 -0.152311 -0.013107
0.027798 -0.148372 -0.014730
0.031568 -0.150193 -0.012815
0.026863 -0.146003 -0.013318
0.043442 -0.158121 -0.018268
0.041709 -0.155200 -0.017464
0.043142 -0.156552 -0.017112
0.038108 -0.154083 -0.017505
0.041331 -0.155209 -0.015312
0.035202 -0.151685 -0.019615
0.034253 -0.150103 -0.017290
0.034891 -0.152186 -0.019927
0.043410 -0.157911 -0.016460
0.042618 -0.159570 -0.012679
0.042813 -0.157130 -0.014874
0.043401 -0.157732 -0.012761
0.037687 -0.155357 -0.011577
0.042306 -0.159261 -0.010722
0.038605 -0.155943 -0.010996
0.040375 -0.157114 -0.011004
0.042417 -0.157497 -0.010232
0.023192 -0.145345 -0.016178
0.023069 -0.145485 -0.017194
0.023729 -0.145173 -0.022051
0.029394 -0.146380 -0.023327
0.026859 -0.146945 -0.022644
0.032069 -0.148930 -0.021395
0.036911 -0.154389 -0.012407
0.036118 -0.152912 -0.012919
0.032366 -0.149006 -0.012949
0.023758 -0.143968 -0.013874
0.025194 -0.143587 -0.012764
0.027855 -0.145136 -0.012906
0.029730 -0.145868 -0.013123
0.037863 -0.153703 -0.013908
0.040938 -0.154589 -0.013224
0.042867 -0.156009 -0.013045
0.032584 -0.148162 -0.020631
0.042888 -0.156910 -0.010758
0.043002 -0.157776 -0.010688
0.039759 -0.154390 -0.011459
0.037214 -0.153794 -0.012774
0.040673 -0.155338 -0.010596
0.041911 -0.156207 -0.010313
0.021866 -0.143457 -0.016809
0.021872 -0.143914 -0.019432
0.026037 -0.145655 -0.024230
0.023647 -0.143964 -0.022700
0.024325 -0.143920 -0.024068
0.027405 -0.145067 -0.024903
0.028188 -0.143019 -0.025385
0.030616 -0.144963 -0.022277
0.029227 -0.142549 -0.024662
0.029884 -0.144086 -0.016269
0.022950 -0.143044 -0.014633
0.024217 -0.142161 -0.013064
0.026190 -0.142688 -0.012640
0.028873 -0.144443 -0.013266
0.040782 -0.154714 -0.011260
0.042576 -0.156063 -0.010860
0.023447 -0.142947 -0.015449
0.023720 -0.143550 -0.019362
0.026594 -0.143906 -0.025499
0.025147 -0.143227 -0.024959
0.026523 -0.141628 -0.024931
0.027220 -0.140480 -0.023270
0.025784 -0.142559 -0.019551
0.026643 -0.141576 -0.019505
0.027133 -0.141149 -0.020641
0.025065 -0.142853 -0.024399
0.024840 -0.143066 -0.019230
0.026877 -0.142341 -0.025747
0.027085 -0.142963 -0.025664
0.029032 -0.140408 -0.022895
0.028512 -0.141302 -0.024648
0.028407 -0.141152 -0.014380
0.025757 -0.141649 -0.016179
0.024907 -0.140982 -0.013500
0.027384 -0.141639 -0.013215
0.024612 -0.143285 -0.018206
0.025941 -0.142145 -0.017869
0.026060 -0.142631 -0.025662
0.027188 -0.140404 -0.024349
0.027616 -0.140130 -0.023711
0.027736 -0.139504 -0.022474
0.025991 -0.142011 -0.019083
0.025648 -0.142631 -0.018709
0.027091 -0.140373 -0.020115
0.026795 -0.140084 -0.019129
0.026528 -0.141575 -0.018695
0.027420 -0.139146 -0.020831
0.026287 -0.140230 -0.013958
0.026624 -0.139476 -0.015273
0.025782 -0.139954 -0.014289
0.026466 -0.139873 -0.015941
0.026724 -0.141108 -0.017877
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
0 2 3
1 0 4
5 0 6
4 0 5
6 0 3
2 1 7
1 4 7
7 8 2
9 3 2
9 2 10
2 11 10
11 2 8
12 3 13
6 3 12
3 9 13
4 14 7
4 15 14
4 16 17
4 5 16
17 18 4
18 19 4
15 4 19
6 20 5
21 5 20
16 5 21
6 22 20
23 6 12
22 6 23
8 7 24
7 14 24
11 8 25
8 26 25
8 24 26
13 9 27
10 27 9
10 11 28
29 30 10
10 31 29
10 28 31
10 30 27
28 11 32
25 32 11
33 12 13
33 34 12
12 35 23
12 36 35
36 12 34
13 37 38
33 13 39
40 13 38
13 40 41
39 13 41
37 13 27
24 14 42
14 15 42
15 19 42
18 17 16
21 18 16
43 19 18
21 43 18
19 43 44
44 42 19
22 45 20
45 21 20
46 21 45
21 46 43
22 47 48
45 22 48
22 49 47
23 49 22
49 23 35
24 42 50
50 26 24
51 25 26
32 25 51
52 26 50
52 53 26
53 51 26
27 30 54
54 37 27
32 55 28
55 31 28
29 54 30
56 54 29
56 29 57
29 31 57
31 58 57
55 58 31
55 32 51
59 33 39
33 60 61
33 61 34
59 60 33
62 34 63
36 34 62
34 61 63
36 49 35
36 64 49
36 62 64
37 65 38
37 54 65
38 65 66
66 40 38
41 59 39
40 66 67
40 67 41
59 41 68
68 41 69
70 69 41
71 70 41
67 71 41
42 44 50
52 43 46
43 52 44
52 50 44
45 48 72
73 46 45
45 72 73
46 74 52
74 46 73
75 48 47
47 64 75
49 64 47
48 67 66
66 72 48
75 67 48
55 51 53
52 74 53
53 76 77
74 76 53
55 53 77
54 78 79
65 54 79
54 56 80
54 80 78
55 77 58
80 56 57
80 57 81
57 58 81
58 76 81
76 58 77
60 59 82
82 59 68
83 61 60
82 83 60
61 84 63
83 85 61
61 85 86
84 61 86
63 87 62
88 62 87
75 64 62
62 89 75
89 62 90
90 62 88
87 63 84
65 79 66
72 66 79
89 67 75
71 67 91
89 91 67
92 68 93
68 92 82
68 69 93
69 70 94
94 93 69
95 94 70
70 71 95
71 91 95
79 73 72
74 73 96
73 79 78
73 78 96
97 76 74
74 96 97
76 97 81
80 96 78
97 80 81
80 97 96
82 98 83
82 92 98
83 99 85
99 83 98
84 86 100
84 100 87
86 85 101
102 85 103
85 104 105
85 105 106
101 85 107
107 85 102
85 99 108
85 106 103
104 85 108
101 100 86
88 87 100
109 88 110
110 88 100
90 88 109
91 89 111
111 89 90
90 112 111
112 90 109
91 111 113
95 91 113
93 114 92
98 92 114
93 94 115
93 115 114
94 95 116
94 116 115
95 113 116
99 98 117
117 98 118
98 114 118
99 117 108
100 119 110
101 119 100
107 119 101
120 102 103
119 107 102
102 109 119
102 120 109
121 103 122
103 121 120
122 103 106
123 105 104
104 108 117
117 124 104
123 104 124
105 125 106
105 126 125
126 105 127
123 127 105
106 125 128
106 128 122
110 119 109
120 112 109
111 128 113
128 111 122
121 111 112
111 121 122
112 120 121
116 113 129
130 129 113
128 130 113
114 115 131
114 130 132
114 131 130
133 114 132
118 114 133
129 131 115
115 116 129
124 117 118
118 133 127
123 124 118
123 118 127
125 126 128
126 132 128
126 133 132
127 133 126
132 130 128
131 129 130
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444 447 450 453 456 459 462 465 468 471 474 477 480 483 486 489 492 495 498 501 504 507 510 513 516 519 522 525 528 531 534 537 540 543 546 549 552 555 558 561 564 567 570 573 576 579 582 585 588 591 594 597 600 603 606 609 612 615 618 621 624 627 630 633 636 639 642 645 648 651 654 657 660 663 666 669 672 675 678 681 684 687 690 693 696 699 702 705 708 711 714 717 720 723 726 729 732 735 738 741 744 747 750 753 756 759 762 765 768 771 774 777 780 783 786 789 792
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,554 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="134" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="264">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
-0.619085 -0.785309 0.004849
-0.372355 -0.739848 0.560337
-0.553355 -0.546822 0.628319
-0.005622 -0.896414 0.443183
0.067442 -0.994369 -0.081739
-0.744152 -0.630315 0.221228
-0.730153 -0.669521 -0.136450
-0.643166 -0.616627 -0.453991
-0.395855 -0.904240 -0.160154
0.107873 -0.307193 0.945514
-0.399404 -0.223792 0.889041
-0.285562 0.052548 0.956919
0.451392 -0.639720 0.622097
0.736842 -0.675773 0.019853
0.227826 -0.973305 -0.027813
0.839270 -0.540115 -0.062471
-0.667524 -0.664287 -0.336355
-0.575704 -0.688667 0.440797
-0.725467 -0.503235 -0.469524
-0.159346 -0.822147 -0.546520
-0.700394 -0.248801 -0.668989
-0.402493 -0.129022 -0.906285
-0.213103 -0.212481 -0.953645
0.163896 -0.974260 -0.154777
0.647578 -0.307366 0.697257
0.217985 0.036715 0.975261
-0.030411 0.093940 0.995113
0.461743 0.567746 0.681512
0.834299 0.329787 0.441798
0.042342 0.645905 0.762242
0.525239 0.322790 0.787357
-0.208557 -0.410672 0.887611
0.062195 0.887245 0.457087
0.956930 -0.144821 0.251619
0.986440 -0.024913 -0.162220
0.704064 -0.710111 -0.006052
0.932906 0.359293 -0.024378
0.995609 -0.092282 -0.015698
-0.331758 -0.206979 -0.920378
-0.540370 -0.264633 -0.798730
-0.638147 -0.768877 -0.039961
-0.615078 -0.653223 -0.441564
-0.278430 -0.273937 -0.920562
-0.355427 -0.419702 -0.835178
-0.438478 -0.778252 0.449512
-0.226076 -0.563805 0.794364
-0.133966 -0.562626 0.815785
-0.492589 0.179395 -0.851571
0.570119 -0.565153 -0.596294
-0.292173 -0.021755 -0.956118
-0.211359 -0.047353 -0.976261
0.203706 -0.011527 -0.978964
0.585899 0.809937 -0.026911
0.886417 0.459452 -0.056293
0.452484 0.871433 0.189374
0.712037 0.702134 -0.003349
0.719214 0.410603 0.560479
0.229437 -0.184196 0.955736
0.552838 0.829409 0.080323
0.811126 0.583975 0.032371
0.840011 -0.108856 -0.531537
0.826822 0.273378 -0.491559
-0.114887 0.364095 -0.924249
0.344088 0.492870 -0.799176
-0.671193 -0.631019 -0.388991
-0.669297 -0.671343 0.318341
-0.721264 -0.691715 -0.036166
0.607485 0.521616 -0.599065
-0.674582 -0.382538 -0.631350
-0.281293 -0.218858 -0.934331
0.059629 -0.106135 -0.992562
0.391207 0.234319 -0.889973
-0.215784 -0.812421 0.541672
0.380507 -0.400099 0.833748
0.490772 -0.027422 0.870857
0.147872 0.795848 -0.587163
0.005903 0.832922 -0.553359
-0.036678 0.424459 -0.904704
0.184240 0.242451 -0.952509
0.481341 0.861946 -0.159250
0.384361 0.923168 -0.005169
0.808064 0.446781 0.383952
0.606638 0.617968 -0.500105
0.404994 0.843975 -0.351691
-0.968057 0.037499 -0.247909
-0.866983 0.410152 0.283048
-0.374942 -0.647635 0.663316
-0.749442 0.639241 0.172358
-0.718703 -0.270180 0.640679
0.923844 0.272411 0.268896
0.874473 0.436080 -0.212440
-0.674222 0.318032 -0.666544
-0.772520 0.600539 -0.206314
0.055240 0.181771 -0.981788
0.573232 0.279873 -0.770115
0.106410 -0.577318 0.809556
0.377805 -0.151053 0.913480
0.709098 0.168180 0.684760
-0.343295 0.916965 0.203280
-0.253097 0.963360 0.088770
-0.178952 -0.362393 0.914684
-0.742041 0.160621 0.650827
-0.779577 0.626270 0.006827
-0.654642 0.667558 0.354698
-0.844013 0.510409 0.164694
-0.661526 0.748238 0.050236
-0.905412 0.413500 0.096156
-0.726812 0.595984 0.341392
-0.432807 0.901450 -0.008075
0.764472 0.614142 0.195990
0.710928 0.584762 -0.390685
-0.430616 0.650834 -0.625288
-0.759162 0.589463 0.276057
0.297811 0.437558 -0.848441
0.092726 -0.158327 0.983023
0.076121 0.348786 0.934106
0.462135 0.574751 0.675346
-0.454443 0.885849 0.093564
-0.699735 0.692941 0.173794
-0.439673 0.237627 0.866153
-0.503209 0.823254 0.262743
-0.041028 0.908865 0.415069
-0.353509 0.793786 0.494909
-0.942661 0.136050 0.304765
-0.761541 0.638682 0.110187
-0.975848 0.158985 0.149817
-0.846665 0.530352 0.043413
-0.751000 0.654439 0.087794
-0.610527 0.771793 0.177744
0.181003 0.704751 -0.685977
-0.342548 0.924524 -0.167079
-0.542378 0.825071 -0.158375
-0.934385 0.328167 0.138678
-0.919115 0.361065 0.157671
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
0.039308 -0.160188 0.016532
0.039684 -0.160332 0.017770
0.037679 -0.158068 0.018509
0.041080 -0.160670 0.017855
0.040640 -0.160881 0.016552
0.036769 -0.156972 0.017893
0.037207 -0.157574 0.014793
0.039789 -0.159618 0.011345
0.039965 -0.160156 0.013401
0.042435 -0.157434 0.019592
0.036987 -0.155634 0.019238
0.038347 -0.155560 0.019817
0.042432 -0.159915 0.018294
0.042908 -0.159876 0.017364
0.040600 -0.160400 0.014138
0.042650 -0.159126 0.014524
0.032629 -0.153364 0.014996
0.034751 -0.155115 0.017620
0.036673 -0.156196 0.013119
0.041040 -0.160062 0.011006
0.037642 -0.156801 0.011760
0.038609 -0.156567 0.011096
0.040580 -0.159213 0.010612
0.041131 -0.160395 0.012108
0.042820 -0.158811 0.018926
0.041336 -0.156326 0.019967
0.039747 -0.155652 0.020091
0.041466 -0.155298 0.019620
0.042988 -0.156711 0.018965
0.037859 -0.154603 0.018921
0.036708 -0.153470 0.019299
0.035619 -0.154367 0.019184
0.039169 -0.154444 0.019321
0.043442 -0.158121 0.018268
0.043410 -0.157911 0.016460
0.042618 -0.159570 0.012679
0.042813 -0.157130 0.014874
0.043401 -0.157732 0.012761
0.033362 -0.152311 0.013107
0.036610 -0.155188 0.012330
0.028562 -0.149365 0.015494
0.027798 -0.148372 0.014730
0.031568 -0.150193 0.012815
0.026863 -0.146003 0.013318
0.028725 -0.148635 0.020908
0.032962 -0.151655 0.020145
0.031093 -0.149409 0.021378
0.037687 -0.155357 0.011577
0.042306 -0.159261 0.010722
0.038605 -0.155943 0.010996
0.040375 -0.157114 0.011004
0.042417 -0.157497 0.010232
0.041709 -0.155200 0.017464
0.043142 -0.156552 0.017112
0.038108 -0.154083 0.017505
0.034253 -0.150103 0.017290
0.035202 -0.151685 0.019615
0.034891 -0.152186 0.019927
0.041331 -0.155209 0.015312
0.042867 -0.156009 0.013045
0.043002 -0.157776 0.010688
0.042888 -0.156910 0.010758
0.036911 -0.154389 0.012407
0.036118 -0.152912 0.012919
0.023192 -0.145345 0.016178
0.023729 -0.145173 0.022051
0.023069 -0.145485 0.017194
0.032366 -0.149006 0.012949
0.023758 -0.143968 0.013874
0.025194 -0.143587 0.012764
0.027855 -0.145136 0.012906
0.029730 -0.145868 0.013123
0.026859 -0.146945 0.022644
0.029394 -0.146380 0.023327
0.032069 -0.148930 0.021395
0.037214 -0.153794 0.012774
0.039759 -0.154390 0.011459
0.040673 -0.155338 0.010596
0.041911 -0.156207 0.010313
0.037863 -0.153703 0.013908
0.040938 -0.154589 0.013224
0.032584 -0.148162 0.020631
0.042576 -0.156063 0.010860
0.040782 -0.154714 0.011260
0.021866 -0.143457 0.016809
0.021872 -0.143914 0.019432
0.026037 -0.145655 0.024230
0.023647 -0.143964 0.022700
0.024325 -0.143920 0.024068
0.030616 -0.144963 0.022277
0.029884 -0.144086 0.016269
0.024217 -0.142161 0.013064
0.022950 -0.143044 0.014633
0.026190 -0.142688 0.012640
0.028873 -0.144443 0.013266
0.027405 -0.145067 0.024903
0.028188 -0.143019 0.025385
0.029227 -0.142549 0.024662
0.023447 -0.142947 0.015449
0.023720 -0.143550 0.019362
0.026594 -0.143906 0.025499
0.025147 -0.143227 0.024959
0.027220 -0.140480 0.023270
0.026523 -0.141628 0.024931
0.026643 -0.141576 0.019505
0.025784 -0.142559 0.019551
0.027133 -0.141149 0.020641
0.025065 -0.142853 0.024399
0.024840 -0.143066 0.019230
0.029032 -0.140408 0.022895
0.028407 -0.141152 0.014380
0.024907 -0.140982 0.013500
0.025757 -0.141649 0.016179
0.027384 -0.141639 0.013215
0.027085 -0.142963 0.025664
0.026877 -0.142341 0.025747
0.028512 -0.141302 0.024648
0.024612 -0.143285 0.018206
0.025941 -0.142145 0.017869
0.026060 -0.142631 0.025662
0.027736 -0.139504 0.022474
0.027616 -0.140130 0.023711
0.027188 -0.140404 0.024349
0.027091 -0.140373 0.020115
0.025991 -0.142011 0.019083
0.026795 -0.140084 0.019129
0.026528 -0.141575 0.018695
0.025648 -0.142631 0.018709
0.027420 -0.139146 0.020831
0.026287 -0.140230 0.013958
0.026624 -0.139476 0.015273
0.025782 -0.139954 0.014289
0.026466 -0.139873 0.015941
0.026724 -0.141108 0.017877
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
3 1 0
0 4 3
5 0 2
0 5 6
7 0 6
7 8 0
4 0 8
9 2 1
3 9 1
10 2 11
11 2 9
5 2 10
3 12 9
13 3 4
13 12 3
14 4 8
14 15 4
15 13 4
16 5 17
17 5 10
16 6 5
18 6 16
6 18 7
19 8 7
7 20 21
21 22 7
22 19 7
18 20 7
23 8 19
8 23 14
12 24 9
25 26 9
26 11 9
9 27 25
9 28 27
28 9 24
29 30 10
17 10 31
31 10 30
11 29 10
29 11 32
32 11 26
33 12 13
33 24 12
34 33 13
13 15 34
15 14 35
35 14 23
34 15 36
15 37 36
15 35 37
38 39 16
16 17 40
41 16 40
38 16 42
43 42 16
43 16 41
18 16 39
17 44 40
31 45 17
45 46 17
44 17 46
47 20 18
18 39 47
19 48 23
19 22 48
20 47 21
21 47 49
50 21 49
50 22 21
50 51 22
22 51 48
35 23 48
33 28 24
26 25 27
26 27 32
27 28 52
27 52 32
53 52 28
28 33 53
29 54 30
29 32 54
55 56 30
55 30 54
56 57 30
30 57 31
45 31 57
54 32 58
52 58 32
34 53 33
53 34 36
37 35 48
58 52 36
37 59 36
36 59 58
53 36 52
60 61 37
37 61 59
60 37 48
38 62 39
63 62 38
38 42 63
62 47 39
41 40 64
65 66 40
44 65 40
40 66 64
41 64 43
67 63 42
43 67 42
68 43 64
69 43 68
43 69 70
43 70 71
43 71 67
72 44 73
73 44 46
72 65 44
45 57 46
57 74 46
74 73 46
75 76 47
75 47 62
77 49 47
76 77 47
51 60 48
50 49 77
78 50 77
78 51 50
78 61 51
60 51 61
79 55 54
54 58 80
80 79 54
63 67 55
55 79 63
55 67 81
56 55 81
81 74 56
56 74 57
80 58 59
59 61 82
82 83 59
83 80 59
78 82 61
63 75 62
75 63 79
84 64 66
68 64 84
66 65 85
72 86 65
65 87 85
88 87 65
88 65 86
66 85 84
81 67 89
90 67 71
67 90 89
91 68 92
84 92 68
91 69 68
93 70 69
69 91 93
70 93 94
94 71 70
94 90 71
86 72 95
73 95 72
95 73 96
73 74 81
81 89 73
97 73 89
96 73 97
79 80 75
76 75 80
76 83 77
83 76 80
78 77 82
83 82 77
85 98 84
98 92 84
87 99 85
98 85 99
100 88 86
95 100 86
101 87 88
102 87 103
104 105 87
106 104 87
107 87 101
103 87 107
108 99 87
102 106 87
108 87 105
88 100 101
109 89 90
97 89 109
110 109 90
110 90 94
111 93 91
112 111 91
92 112 91
112 92 98
113 94 93
111 113 93
113 110 94
100 95 96
114 96 115
100 96 114
115 96 97
109 116 97
115 97 116
117 98 99
118 98 117
118 112 98
108 117 99
114 119 100
100 119 101
101 119 107
120 102 121
122 121 102
102 103 122
106 102 120
103 107 119
119 115 103
115 122 103
106 123 104
105 104 124
123 125 104
126 104 125
104 126 124
117 108 105
105 127 117
127 105 124
128 123 106
120 128 106
110 128 109
120 109 128
116 109 121
120 121 109
129 110 113
110 129 130
110 130 128
111 131 129
129 113 111
131 111 112
132 130 112
130 131 112
132 112 133
133 112 118
115 119 114
115 116 122
121 122 116
118 117 127
126 133 118
118 127 124
126 118 124
128 125 123
128 132 125
132 133 125
125 133 126
128 130 132
130 129 131
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444 447 450 453 456 459 462 465 468 471 474 477 480 483 486 489 492 495 498 501 504 507 510 513 516 519 522 525 528 531 534 537 540 543 546 549 552 555 558 561 564 567 570 573 576 579 582 585 588 591 594 597 600 603 606 609 612 615 618 621 624 627 630 633 636 639 642 645 648 651 654 657 660 663 666 669 672 675 678 681 684 687 690 693 696 699 702 705 708 711 714 717 720 723 726 729 732 735 738 741 744 747 750 753 756 759 762 765 768 771 774 777 780 783 786 789 792
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,481 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="116" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="227">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
-0.461884 -0.015337 -0.886808
-0.698867 -0.327655 -0.635788
-0.809324 -0.238921 -0.536574
-0.374093 0.154231 -0.914477
0.033931 -0.073760 -0.996699
-0.050730 0.391337 -0.918848
-0.899010 -0.435865 -0.042466
-0.467488 -0.605486 -0.644082
-0.738696 -0.663004 -0.121468
-0.864227 -0.501899 -0.034773
-0.724232 -0.349427 -0.594465
-0.365063 -0.211176 -0.906716
0.465735 0.138331 -0.874046
0.283087 0.751198 -0.596291
-0.178485 0.786012 -0.591885
-0.074880 -0.722193 -0.687627
0.339415 -0.543070 -0.768032
0.457300 -0.254077 -0.852245
0.616329 0.577756 -0.535104
0.886566 0.107918 -0.449838
0.287327 0.919225 -0.269201
-0.796318 -0.424832 0.430576
-0.878982 -0.402115 0.256309
-0.699661 -0.713908 0.028455
-0.199955 -0.977167 -0.071850
-0.828252 -0.445657 -0.339690
-0.775586 -0.439179 0.453417
-0.356457 -0.269592 -0.894572
0.308706 -0.039329 -0.950344
0.727316 0.159633 -0.667480
0.886531 0.318217 -0.335858
0.642465 0.764120 -0.057959
0.405911 -0.884579 -0.229686
0.866090 -0.321676 -0.382638
0.782855 -0.595082 -0.181704
0.789772 0.606025 0.094836
0.990145 0.105926 0.091613
0.519192 0.837593 0.169938
-0.344243 -0.319898 0.882702
-0.458094 -0.223174 0.860432
-0.242857 0.130782 0.961206
-0.720743 -0.583594 0.374097
-0.282722 -0.958626 -0.033235
0.013554 -0.998537 -0.052356
0.566154 -0.817444 0.106087
-0.829723 -0.446243 0.335300
-0.272761 -0.421929 -0.864626
-0.810588 -0.492264 -0.317212
0.404519 -0.245864 -0.880861
0.897079 0.086847 -0.433252
0.928000 0.236482 0.287911
0.907497 0.407268 0.102873
0.672459 0.739019 0.040630
0.917507 -0.385899 0.096247
0.826969 0.552859 0.102322
0.997892 -0.064886 0.001514
-0.763438 -0.244640 0.597758
0.418679 0.007175 0.908106
0.128894 -0.220455 0.966843
-0.048145 -0.207867 0.976972
0.577833 0.213737 0.787671
-0.118271 0.182313 0.976101
-0.334231 -0.041381 0.941582
-0.377509 -0.426025 0.822186
0.108780 -0.410594 0.905306
0.065916 0.116082 0.991050
0.385114 -0.006097 0.922849
0.284855 0.641358 0.712402
0.176598 0.763107 0.621676
-0.246351 -0.795010 0.554320
0.455967 -0.880519 0.129539
0.496733 -0.867672 0.020045
0.807664 -0.589154 -0.024028
-0.960285 -0.242448 -0.138101
-0.938664 -0.269615 0.214982
-0.753896 -0.342605 -0.560591
-0.142547 -0.286500 -0.947416
0.412733 -0.104319 -0.904859
0.784656 -0.069990 -0.615968
0.839235 0.510649 -0.186875
0.857717 0.182209 0.480751
0.565750 -0.018777 0.824363
0.708998 0.630460 0.315979
0.672873 0.736847 0.065564
0.431930 0.882161 0.187694
0.962816 0.269655 0.016451
0.916696 -0.394223 -0.065241
-0.948730 0.316041 0.005518
-0.564674 0.062222 0.822965
-0.920690 0.207131 0.330796
-0.113812 0.313174 0.942851
0.342373 0.134004 0.929959
0.573618 0.535772 0.619606
0.755906 -0.417295 0.504451
0.891724 0.051796 0.449605
-0.892508 0.444774 -0.074863
-0.833085 0.272960 -0.481105
-0.640029 -0.062900 -0.765772
0.287970 0.150185 -0.945789
-0.162086 0.107846 -0.980866
0.673131 0.148113 -0.724539
0.454644 0.848837 0.269769
0.049496 0.998580 -0.019717
0.550746 0.624881 0.553356
0.527582 0.471548 -0.706611
0.138175 0.852639 -0.503900
-0.636469 0.716055 0.286656
-0.497801 0.866154 -0.044394
-0.242081 0.885045 0.397609
0.222938 0.534525 0.815219
-0.667944 0.742843 -0.045101
-0.423571 0.880031 -0.214788
-0.319104 0.497470 -0.806657
0.211148 0.457890 -0.863570
0.177343 0.865103 0.469197
-0.172201 0.983740 0.051019
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
0.019025 -0.135168 -0.024391
0.018744 -0.138557 -0.023689
0.017906 -0.136291 -0.023189
0.018914 -0.134444 -0.024175
0.024450 -0.136713 -0.025397
0.021551 -0.134310 -0.025027
0.017361 -0.136156 -0.021333
0.020801 -0.141051 -0.023786
0.019680 -0.140809 -0.022046
0.012101 -0.128174 -0.019542
0.015407 -0.132276 -0.022157
0.014782 -0.126729 -0.024178
0.016705 -0.126226 -0.024034
0.020694 -0.133519 -0.023500
0.020570 -0.133892 -0.024617
0.021621 -0.141356 -0.023897
0.024092 -0.140310 -0.024467
0.024655 -0.138599 -0.024992
0.024897 -0.135115 -0.024564
0.025831 -0.137304 -0.024291
0.022622 -0.133608 -0.024002
0.017876 -0.136064 -0.017009
0.018679 -0.138737 -0.017635
0.019617 -0.140549 -0.019606
0.021316 -0.141764 -0.022257
0.009299 -0.123015 -0.020387
0.011666 -0.126005 -0.017303
0.012389 -0.121230 -0.024483
0.012139 -0.115072 -0.025330
0.014007 -0.117588 -0.024223
0.015408 -0.120538 -0.023160
0.021326 -0.133245 -0.021680
0.024027 -0.141171 -0.023137
0.025754 -0.138301 -0.024098
0.024862 -0.140272 -0.023528
0.025150 -0.135529 -0.021985
0.026020 -0.137595 -0.021987
0.023183 -0.133915 -0.022029
0.007657 -0.113507 -0.014293
0.020290 -0.138961 -0.015213
0.018721 -0.134695 -0.015706
0.020429 -0.141016 -0.016084
0.021733 -0.142173 -0.017164
0.021425 -0.141576 -0.019555
0.023845 -0.141127 -0.020449
0.004746 -0.112919 -0.016314
0.009171 -0.112493 -0.026386
0.003927 -0.111470 -0.022659
0.010243 -0.112381 -0.026277
0.012527 -0.109837 -0.024651
0.012037 -0.112294 -0.016001
0.016675 -0.123003 -0.020196
0.021250 -0.133472 -0.019610
0.025852 -0.138443 -0.021767
0.025102 -0.136787 -0.019481
0.025384 -0.137737 -0.019498
0.002907 -0.106327 -0.013814
0.010926 -0.113198 -0.013722
0.009280 -0.110776 -0.013130
0.007680 -0.108747 -0.012306
0.017625 -0.128646 -0.015640
0.022187 -0.136196 -0.014120
0.021436 -0.136457 -0.014316
0.021608 -0.140980 -0.015012
0.024476 -0.139832 -0.014173
0.024170 -0.137361 -0.013868
0.024632 -0.138139 -0.013874
0.020313 -0.133909 -0.015894
0.022073 -0.134576 -0.014889
0.021762 -0.142009 -0.015819
0.023740 -0.141799 -0.015567
0.023708 -0.141013 -0.019659
0.024450 -0.140250 -0.019627
0.002022 -0.107642 -0.021912
0.002435 -0.107910 -0.015800
0.003498 -0.108867 -0.025202
0.007508 -0.107590 -0.028663
0.009959 -0.107132 -0.028303
0.010824 -0.107269 -0.027563
0.011648 -0.101844 -0.024413
0.010763 -0.104564 -0.013566
0.010463 -0.111578 -0.013600
0.021191 -0.133433 -0.017330
0.024489 -0.135425 -0.016836
0.022644 -0.134213 -0.017013
0.025895 -0.137692 -0.017096
0.025561 -0.139874 -0.017278
0.001732 -0.105580 -0.018894
0.004139 -0.103953 -0.012308
0.002306 -0.104116 -0.014897
0.004899 -0.103350 -0.012219
0.009008 -0.105208 -0.012403
0.024177 -0.135908 -0.014576
0.025054 -0.140213 -0.014895
0.025471 -0.138091 -0.014563
0.001773 -0.105514 -0.021364
0.003939 -0.103609 -0.026719
0.004339 -0.105198 -0.027308
0.008160 -0.105052 -0.028649
0.006752 -0.105267 -0.028873
0.010584 -0.105984 -0.027829
0.008453 -0.101388 -0.014870
0.010138 -0.100530 -0.023351
0.009758 -0.102599 -0.013867
0.010419 -0.102395 -0.026727
0.007969 -0.101064 -0.026443
0.003591 -0.102520 -0.013459
0.007107 -0.102246 -0.018880
0.005202 -0.101789 -0.013285
0.007971 -0.102561 -0.012860
0.004184 -0.102453 -0.025132
0.005844 -0.101538 -0.026462
0.006074 -0.102570 -0.027958
0.008600 -0.102662 -0.027847
0.007163 -0.101416 -0.013884
0.007688 -0.100981 -0.015700
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
2 3 0
4 1 0
4 0 5
3 5 0
6 2 1
7 1 4
1 7 8
8 6 1
2 6 9
3 2 10
9 10 2
10 11 3
12 3 11
3 12 13
3 13 14
3 14 5
4 15 7
4 16 15
4 17 16
18 4 5
18 19 4
17 4 19
5 14 20
5 20 18
21 9 6
22 21 6
8 23 6
6 23 22
24 7 15
24 8 7
23 8 24
25 10 9
26 25 9
9 21 26
11 10 25
11 25 27
27 28 11
11 28 12
28 29 12
12 30 13
12 29 30
20 14 13
30 31 13
31 20 13
24 15 32
15 16 32
17 33 16
34 32 16
34 16 33
19 33 17
35 19 18
35 18 20
19 35 36
36 33 19
37 35 20
20 31 37
26 21 38
22 39 21
38 21 40
39 22 41
22 23 41
41 23 42
43 23 24
42 23 43
32 44 24
24 44 43
26 45 25
46 27 25
47 46 25
47 25 45
38 45 26
28 27 46
46 48 28
28 48 49
49 29 28
29 49 30
30 49 50
30 50 51
51 31 30
52 31 51
52 37 31
44 32 34
53 34 33
33 36 53
44 34 53
37 54 35
36 35 54
55 36 54
55 53 36
54 37 52
56 45 38
57 58 38
59 56 38
38 58 59
40 60 38
38 60 57
61 62 39
39 63 64
41 63 39
61 39 65
65 39 66
39 64 66
62 40 39
40 67 60
67 40 68
40 62 61
40 61 68
42 69 41
41 69 63
42 70 69
42 43 70
70 43 71
43 44 71
53 72 44
72 71 44
47 45 73
73 45 74
56 74 45
47 75 46
46 76 48
75 76 46
47 73 75
77 48 76
49 48 78
78 48 77
78 79 49
49 80 50
49 79 80
50 57 60
81 57 50
60 51 50
81 50 80
60 82 51
52 51 82
83 54 52
83 52 84
52 82 84
53 55 72
85 54 83
54 85 55
86 72 55
85 86 55
87 74 56
59 88 56
56 89 87
89 56 88
58 57 81
59 58 81
88 59 90
59 81 91
59 91 90
82 60 67
92 61 65
61 92 68
69 64 63
69 70 64
64 93 66
64 70 93
65 66 92
93 94 66
66 94 92
67 84 82
84 67 68
83 68 92
83 84 68
72 70 71
72 86 70
70 86 93
73 74 87
73 87 95
95 96 73
75 73 96
97 75 96
97 76 75
77 76 98
76 97 99
98 76 99
77 100 78
100 77 98
79 78 100
101 79 102
79 101 103
80 79 103
79 100 104
105 79 104
79 105 102
81 80 91
103 91 80
85 83 92
85 92 94
85 94 86
86 94 93
87 89 106
87 107 95
107 87 106
89 88 106
90 106 88
108 106 90
109 90 91
109 108 90
91 103 109
107 110 95
96 95 110
110 111 96
96 111 112
97 96 112
112 99 97
99 113 98
98 104 100
104 98 113
99 112 113
101 114 103
115 101 102
115 114 101
111 107 102
115 102 107
102 105 111
114 109 103
105 104 113
112 111 105
112 105 113
107 106 108
111 110 107
107 108 115
108 109 114
114 115 108
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444 447 450 453 456 459 462 465 468 471 474 477 480 483 486 489 492 495 498 501 504 507 510 513 516 519 522 525 528 531 534 537 540 543 546 549 552 555 558 561 564 567 570 573 576 579 582 585 588 591 594 597 600 603 606 609 612 615 618 621 624 627 630 633 636 639 642 645 648 651 654 657 660 663 666 669 672 675 678 681
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,481 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="116" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="227">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
-0.809324 -0.238921 0.536574
-0.698867 -0.327655 0.635788
-0.461884 -0.015337 0.886808
-0.864227 -0.501899 0.034773
-0.899010 -0.435865 0.042466
-0.374093 0.154231 0.914477
-0.724232 -0.349427 0.594465
0.033931 -0.073760 0.996699
-0.467488 -0.605486 0.644082
-0.738696 -0.663004 0.121468
-0.050730 0.391337 0.918848
-0.828252 -0.445657 0.339690
-0.775586 -0.439179 -0.453417
-0.796318 -0.424832 -0.430576
-0.878982 -0.402115 -0.256309
-0.699661 -0.713908 -0.028455
-0.365063 -0.211176 0.906716
0.465735 0.138331 0.874046
0.283087 0.751198 0.596291
-0.178485 0.786012 0.591885
-0.074880 -0.722193 0.687627
0.339415 -0.543070 0.768032
0.457300 -0.254077 0.852245
0.616329 0.577756 0.535104
0.886566 0.107918 0.449838
-0.199955 -0.977167 0.071850
0.287327 0.919225 0.269201
-0.829723 -0.446243 -0.335300
-0.356457 -0.269592 0.894572
-0.272761 -0.421929 0.864626
-0.810588 -0.492264 0.317212
-0.344243 -0.319898 -0.882702
-0.458094 -0.223174 -0.860432
-0.242857 0.130782 -0.961206
-0.720743 -0.583594 -0.374097
-0.282722 -0.958626 0.033235
0.013554 -0.998537 0.052356
0.308706 -0.039329 0.950344
0.727316 0.159633 0.667480
0.886531 0.318217 0.335858
0.642465 0.764120 0.057959
0.405911 -0.884579 0.229686
0.866090 -0.321676 0.382638
0.782855 -0.595082 0.181704
0.789772 0.606025 -0.094836
0.990145 0.105926 -0.091613
0.566154 -0.817444 -0.106087
0.519192 0.837593 -0.169938
-0.960285 -0.242448 0.138101
-0.938664 -0.269615 -0.214982
-0.763438 -0.244640 -0.597758
0.404519 -0.245864 0.880861
-0.753896 -0.342605 0.560591
-0.142547 -0.286500 0.947416
0.128894 -0.220455 -0.966843
0.418679 0.007175 -0.908106
-0.048145 -0.207867 -0.976972
0.577833 0.213737 -0.787671
-0.334231 -0.041381 -0.941582
-0.118271 0.182313 -0.976101
0.108780 -0.410594 -0.905306
-0.377509 -0.426025 -0.822186
0.065916 0.116082 -0.991050
0.385114 -0.006097 -0.922849
0.284855 0.641358 -0.712402
0.176598 0.763107 -0.621676
-0.246351 -0.795010 -0.554320
0.455967 -0.880519 -0.129539
0.496733 -0.867672 -0.020045
0.897079 0.086847 0.433252
0.928000 0.236482 -0.287911
0.907497 0.407268 -0.102873
0.672459 0.739019 -0.040630
0.917507 -0.385899 -0.096247
0.826969 0.552859 -0.102322
0.997892 -0.064886 -0.001514
0.807664 -0.589154 0.024028
-0.948730 0.316041 -0.005518
-0.892508 0.444774 0.074863
-0.833085 0.272960 0.481105
-0.564674 0.062222 -0.822965
-0.920690 0.207131 -0.330796
0.412733 -0.104319 0.904859
0.784656 -0.069990 0.615968
-0.640029 -0.062900 0.765772
0.287970 0.150185 0.945789
-0.162086 0.107846 0.980866
0.565750 -0.018777 -0.824363
-0.113812 0.313174 -0.942851
0.342373 0.134004 -0.929959
0.708998 0.630460 -0.315979
0.573618 0.535772 -0.619606
0.755906 -0.417295 -0.504451
0.891724 0.051796 -0.449605
0.431930 0.882161 -0.187694
0.672873 0.736847 -0.065564
0.916696 -0.394223 0.065241
0.839235 0.510649 0.186875
0.857717 0.182209 -0.480751
0.962816 0.269655 -0.016451
-0.636469 0.716055 -0.286656
-0.497801 0.866154 0.044394
-0.667944 0.742843 0.045101
-0.423571 0.880031 0.214788
-0.319104 0.497470 0.806657
0.673131 0.148113 0.724539
0.211148 0.457890 0.863570
0.527582 0.471548 0.706611
-0.242081 0.885045 -0.397609
0.222938 0.534525 -0.815219
0.550746 0.624881 -0.553356
0.049496 0.998580 0.019717
0.454644 0.848837 -0.269769
0.138175 0.852639 0.503900
-0.172201 0.983740 -0.051019
0.177343 0.865103 -0.469197
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
0.017906 -0.136291 0.023189
0.018744 -0.138557 0.023689
0.019025 -0.135168 0.024391
0.012101 -0.128174 0.019542
0.017361 -0.136156 0.021333
0.018914 -0.134444 0.024175
0.015407 -0.132276 0.022157
0.024450 -0.136713 0.025397
0.020801 -0.141051 0.023786
0.019680 -0.140809 0.022046
0.021551 -0.134310 0.025027
0.009299 -0.123015 0.020387
0.011666 -0.126005 0.017303
0.017876 -0.136064 0.017009
0.018679 -0.138737 0.017635
0.019617 -0.140549 0.019606
0.014782 -0.126729 0.024178
0.016705 -0.126226 0.024034
0.020694 -0.133519 0.023500
0.020570 -0.133892 0.024617
0.021621 -0.141356 0.023897
0.024092 -0.140310 0.024467
0.024655 -0.138599 0.024992
0.024897 -0.135115 0.024564
0.025831 -0.137304 0.024291
0.021316 -0.141764 0.022257
0.022622 -0.133608 0.024002
0.004746 -0.112919 0.016314
0.012389 -0.121230 0.024483
0.009171 -0.112493 0.026386
0.003927 -0.111470 0.022659
0.007657 -0.113507 0.014293
0.020290 -0.138961 0.015213
0.018721 -0.134695 0.015706
0.020429 -0.141016 0.016084
0.021733 -0.142173 0.017164
0.021425 -0.141576 0.019555
0.012139 -0.115072 0.025330
0.014007 -0.117588 0.024223
0.015408 -0.120538 0.023160
0.021326 -0.133245 0.021680
0.024027 -0.141171 0.023137
0.025754 -0.138301 0.024098
0.024862 -0.140272 0.023528
0.025150 -0.135529 0.021985
0.026020 -0.137595 0.021987
0.023845 -0.141127 0.020449
0.023183 -0.133915 0.022029
0.002022 -0.107642 0.021912
0.002435 -0.107910 0.015800
0.002907 -0.106327 0.013814
0.010243 -0.112381 0.026277
0.003498 -0.108867 0.025202
0.007508 -0.107590 0.028663
0.009280 -0.110776 0.013130
0.010926 -0.113198 0.013722
0.007680 -0.108747 0.012306
0.017625 -0.128646 0.015640
0.021436 -0.136457 0.014316
0.022187 -0.136196 0.014120
0.024476 -0.139832 0.014173
0.021608 -0.140980 0.015012
0.024170 -0.137361 0.013868
0.024632 -0.138139 0.013874
0.020313 -0.133909 0.015894
0.022073 -0.134576 0.014889
0.021762 -0.142009 0.015819
0.023740 -0.141799 0.015567
0.023708 -0.141013 0.019659
0.012527 -0.109837 0.024651
0.012037 -0.112294 0.016001
0.016675 -0.123003 0.020196
0.021250 -0.133472 0.019610
0.025852 -0.138443 0.021767
0.025102 -0.136787 0.019481
0.025384 -0.137737 0.019498
0.024450 -0.140250 0.019627
0.001732 -0.105580 0.018894
0.001773 -0.105514 0.021364
0.003939 -0.103609 0.026719
0.004139 -0.103953 0.012308
0.002306 -0.104116 0.014897
0.009959 -0.107132 0.028303
0.010824 -0.107269 0.027563
0.004339 -0.105198 0.027308
0.008160 -0.105052 0.028649
0.006752 -0.105267 0.028873
0.010463 -0.111578 0.013600
0.004899 -0.103350 0.012219
0.009008 -0.105208 0.012403
0.021191 -0.133433 0.017330
0.024177 -0.135908 0.014576
0.025054 -0.140213 0.014895
0.025471 -0.138091 0.014563
0.022644 -0.134213 0.017013
0.024489 -0.135425 0.016836
0.025561 -0.139874 0.017278
0.011648 -0.101844 0.024413
0.010763 -0.104564 0.013566
0.025895 -0.137692 0.017096
0.003591 -0.102520 0.013459
0.007107 -0.102246 0.018880
0.004184 -0.102453 0.025132
0.005844 -0.101538 0.026462
0.006074 -0.102570 0.027958
0.010584 -0.105984 0.027829
0.008600 -0.102662 0.027847
0.010419 -0.102395 0.026727
0.005202 -0.101789 0.013285
0.007971 -0.102561 0.012860
0.009758 -0.102599 0.013867
0.010138 -0.100530 0.023351
0.008453 -0.101388 0.014870
0.007969 -0.101064 0.026443
0.007688 -0.100981 0.015700
0.007163 -0.101416 0.013884
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
3 4 0
2 5 0
6 0 5
1 0 4
0 6 3
7 1 8
2 1 7
9 8 1
1 4 9
10 2 7
2 10 5
3 6 11
3 11 12
12 13 3
4 3 13
4 13 14
4 15 9
14 15 4
5 16 6
16 5 17
18 17 5
19 18 5
10 19 5
11 6 16
8 20 7
20 21 7
21 22 7
10 7 23
7 24 23
24 7 22
20 8 25
8 9 25
25 9 15
26 19 10
23 26 10
11 27 12
28 11 16
11 28 29
11 29 30
27 11 30
31 13 12
12 27 31
13 32 14
33 13 31
34 14 32
34 15 14
35 15 34
25 15 36
36 15 35
16 37 28
17 37 16
17 38 37
18 39 17
39 38 17
18 19 26
18 40 39
18 26 40
41 20 25
41 21 20
21 42 22
21 41 43
42 21 43
22 42 24
23 24 44
26 23 44
45 44 24
24 42 45
25 46 41
36 46 25
26 44 47
47 40 26
48 27 30
49 27 48
27 49 50
31 27 50
29 28 37
37 51 29
29 52 30
51 53 29
29 53 52
52 48 30
31 54 55
31 50 56
56 54 31
31 57 33
55 57 31
32 58 59
60 61 32
32 61 34
62 32 59
63 32 62
63 60 32
32 33 58
57 64 33
65 33 64
59 58 33
65 59 33
34 66 35
61 66 34
66 67 35
67 36 35
68 36 67
68 46 36
69 51 37
37 38 69
39 69 38
70 69 39
71 70 39
39 40 71
71 40 72
40 47 72
43 41 46
42 43 73
73 45 42
73 43 46
44 74 47
74 44 45
74 45 75
45 73 75
46 76 73
46 68 76
72 47 74
77 49 48
78 77 48
48 79 78
79 48 52
50 49 77
50 80 56
77 81 50
80 50 81
53 51 82
83 51 69
82 51 83
79 52 84
52 53 84
85 53 82
86 84 53
86 53 85
87 55 54
87 54 56
57 55 70
70 55 87
88 56 80
89 87 56
88 89 56
71 90 57
64 57 90
70 71 57
62 59 91
65 91 59
60 67 66
61 60 66
63 92 60
92 67 60
91 63 62
63 93 92
91 93 63
90 94 64
65 64 94
91 65 95
65 94 95
68 67 76
67 96 76
92 96 67
69 97 83
70 98 69
98 97 69
98 70 87
90 71 72
72 74 95
94 72 95
94 90 72
76 75 73
95 74 99
75 99 74
75 76 96
75 96 99
100 81 77
78 101 77
100 77 101
78 102 101
102 78 79
79 103 102
104 103 79
104 79 84
100 80 81
80 100 88
83 105 82
85 82 105
105 83 97
84 86 104
85 106 86
105 107 85
106 85 107
106 104 86
89 98 87
88 100 108
89 88 109
88 108 109
109 110 89
98 89 110
93 91 99
91 95 99
92 93 96
96 93 99
111 97 112
110 112 97
110 97 98
107 105 97
107 97 113
111 113 97
108 100 101
111 101 103
101 102 103
114 108 101
101 111 114
113 103 104
103 113 111
106 113 104
106 107 113
115 109 108
108 114 115
110 109 115
110 115 112
111 112 114
112 115 114
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444 447 450 453 456 459 462 465 468 471 474 477 480 483 486 489 492 495 498 501 504 507 510 513 516 519 522 525 528 531 534 537 540 543 546 549 552 555 558 561 564 567 570 573 576 579 582 585 588 591 594 597 600 603 606 609 612 615 618 621 624 627 630 633 636 639 642 645 648 651 654 657 660 663 666 669 672 675 678 681
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,246 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="72" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="80">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
0.195918 0.980604 -0.005724
-0.015504 0.926118 0.376916
-0.217930 0.572379 0.790499
-0.235883 -0.033038 0.971220
-0.237461 -0.321972 0.916486
-0.107548 -0.303499 0.946743
0.041875 -0.512405 0.857722
0.071831 -0.817763 0.571056
0.096243 -0.992191 0.079331
0.540593 0.825996 0.159656
0.706252 0.557145 0.436804
0.787993 0.023821 0.615224
0.613833 -0.435072 0.658728
0.601760 -0.456294 0.655500
0.658122 -0.498370 0.564360
0.473826 -0.788574 0.391970
0.634075 0.773228 -0.008181
0.825262 0.557791 0.088389
0.982593 0.090881 0.162025
0.942307 -0.238222 0.235176
0.891651 -0.389807 0.230237
0.829943 -0.533788 0.162067
0.651876 -0.748841 0.119558
0.607906 0.793657 0.023642
0.804289 0.593686 -0.025623
0.983048 0.137438 -0.121356
0.970496 -0.146519 -0.191494
0.908613 -0.382491 -0.167703
0.812652 -0.578743 -0.068216
0.668850 -0.743231 -0.015734
0.523839 0.850029 -0.055171
0.679995 0.689041 -0.250659
0.825072 0.162015 -0.541301
0.727071 -0.252519 -0.638437
0.688754 -0.420192 -0.590810
0.697959 -0.580543 -0.419314
0.548700 -0.804803 -0.226320
0.029104 0.982689 -0.182961
-0.167789 0.854903 -0.490906
-0.211768 0.205262 -0.955522
-0.058045 -0.470286 -0.880603
0.033971 -0.491020 -0.870486
0.021531 -0.554643 -0.831810
0.053412 -0.878173 -0.475353
-0.543771 0.838860 -0.025027
-0.915652 0.398447 0.053118
-0.997245 0.069299 -0.026460
-0.917420 -0.249618 -0.309890
-0.768429 -0.283512 -0.573706
-0.724894 -0.428176 -0.539624
-0.457826 -0.819318 -0.345128
-0.733890 0.674979 0.076217
-0.977309 0.031500 0.209461
-0.971846 -0.048827 0.230502
-0.988484 0.144192 0.045919
-0.989564 0.037906 -0.139020
-0.905354 -0.401684 -0.137783
-0.615053 -0.782276 -0.098762
-0.765214 0.639750 -0.071881
-0.977561 -0.080637 -0.194607
-0.971885 -0.096570 -0.214739
-0.962529 0.264263 -0.060852
-0.979805 0.131304 0.150803
-0.879018 -0.421092 0.223626
-0.580203 -0.789849 0.198755
-0.619844 0.774225 0.127943
-0.989656 0.128831 0.063121
-0.995560 -0.071496 0.061225
-0.932807 0.135496 0.333934
-0.772873 0.034650 0.633614
-0.607149 -0.459480 0.648265
-0.339851 -0.798987 0.496105
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
0.000000 0.052920 0.000000
0.000000 0.050274 0.012600
0.000000 0.044982 0.021764
0.000000 0.035280 0.024709
0.000000 0.023814 0.021436
0.000000 0.018345 0.015546
0.000000 0.008643 0.013418
0.000000 0.004233 0.008182
0.000000 0.000000 0.000000
0.005482 0.049127 0.007546
0.010147 0.044365 0.013966
0.012023 0.033957 0.016548
0.011013 0.023814 0.015158
0.008512 0.016493 0.011716
0.006925 0.008732 0.009531
0.003991 0.003969 0.005495
0.005758 0.047980 0.001871
0.012139 0.043747 0.003944
0.015407 0.032634 0.005006
0.015251 0.023814 0.004955
0.012761 0.014641 0.004146
0.009649 0.008820 0.003135
0.005135 0.003705 0.001669
0.005758 0.047980 -0.001871
0.012139 0.043747 -0.003944
0.015407 0.032634 -0.005006
0.015251 0.023814 -0.004955
0.012761 0.014641 -0.004146
0.009649 0.008820 -0.003135
0.005135 0.003705 -0.001669
0.003895 0.049744 -0.005362
0.008993 0.046569 -0.012378
0.012600 0.034927 -0.017343
0.011590 0.023460 -0.015953
0.009089 0.016229 -0.012511
0.007551 0.008556 -0.010392
0.004617 0.003440 -0.006355
0.000000 0.051509 -0.007200
0.000000 0.049392 -0.017836
0.000000 0.037220 -0.026673
0.000000 0.023109 -0.023400
0.000000 0.017816 -0.017509
0.000000 0.008291 -0.015546
0.000000 0.003174 -0.010309
-0.003367 0.051596 -0.004633
-0.006781 0.045599 -0.009333
-0.008752 0.035986 -0.012047
-0.007935 0.025225 -0.010922
-0.008464 0.015171 -0.011650
-0.007551 0.007761 -0.010392
-0.005049 0.003087 -0.006950
-0.004046 0.051685 -0.001315
-0.004981 0.041807 -0.001618
-0.002957 0.034751 -0.000961
-0.003424 0.027342 -0.001112
-0.010738 0.012524 -0.003489
-0.009649 0.007232 -0.003135
-0.006536 0.002999 -0.002124
-0.004046 0.051685 0.001315
-0.004981 0.041807 0.001618
-0.002957 0.034751 0.000961
-0.003424 0.027342 0.001112
-0.010738 0.012524 0.003489
-0.009649 0.007232 0.003135
-0.006536 0.002999 0.002124
-0.004954 0.050979 0.006818
-0.007935 0.043395 0.010922
-0.008176 0.035015 0.011253
-0.007358 0.025577 0.010128
-0.007887 0.015435 0.010856
-0.006925 0.007937 0.009531
-0.004424 0.003616 0.006089
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 9
1 2 10 9
2 3 11 10
3 4 12 11
4 5 13 12
5 6 14 13
6 7 15 14
7 8 15
0 9 16
9 10 17 16
10 11 18 17
11 12 19 18
12 13 20 19
13 14 21 20
14 15 22 21
15 8 22
0 16 23
16 17 24 23
17 18 25 24
18 19 26 25
19 20 27 26
20 21 28 27
21 22 29 28
22 8 29
0 23 30
23 24 31 30
24 25 32 31
25 26 33 32
26 27 34 33
27 28 35 34
28 29 36 35
29 8 36
0 30 37
30 31 38 37
31 32 39 38
32 33 40 39
33 34 41 40
34 35 42 41
35 36 43 42
36 8 43
0 37 44
37 38 45 44
38 39 46 45
39 40 47 46
40 41 48 47
41 42 49 48
42 43 50 49
43 8 50
0 44 51
44 45 52 51
45 46 53 52
46 47 54 53
47 48 55 54
48 49 56 55
49 50 57 56
50 8 57
0 51 58
51 52 59 58
52 53 60 59
53 54 61 60
54 55 62 61
55 56 63 62
56 57 64 63
57 8 64
0 58 65
58 59 66 65
59 60 67 66
60 61 68 67
61 62 69 68
62 63 70 69
63 64 71 70
64 8 71
0 65 1
65 66 2 1
66 67 3 2
67 68 4 3
68 69 5 4
69 70 6 5
70 71 7 6
71 8 7
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 7 11 15 19 23 27 30 33 37 41 45 49 53 57 60 63 67 71 75 79 83 87 90 93 97 101 105 109 113 117 120 123 127 131 135 139 143 147 150 153 157 161 165 169 173 177 180 183 187 191 195 199 203 207 210 213 217 221 225 229 233 237 240 243 247 251 255 259 263 267 270 273 277 281 285 289 293 297 300
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,514 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="125" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="242">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
-0.179324 0.266632 -0.946969
-0.354023 -0.104927 -0.929332
-0.267537 -0.600731 -0.753357
-0.637155 -0.471716 -0.609523
-0.761351 -0.588225 -0.272647
0.537959 -0.600882 -0.591220
0.836107 0.113477 -0.536701
0.461437 0.510762 -0.725395
0.310915 0.215176 -0.925760
0.010792 -0.549332 -0.835535
0.114995 -0.573523 -0.811078
0.360558 -0.870106 -0.336025
0.558320 -0.701964 -0.442183
-0.148657 -0.834996 -0.529795
0.911922 -0.377030 -0.162007
0.800223 -0.592796 -0.090749
0.670086 -0.253985 -0.697478
0.384632 -0.107701 -0.916765
0.066755 -0.198429 -0.977839
-0.242120 -0.455979 -0.856423
0.051261 -0.506395 -0.860777
-0.435040 -0.819409 -0.373243
-0.210331 -0.977590 -0.008925
-0.442443 -0.802043 -0.401211
-0.334209 -0.676750 -0.655983
0.104531 -0.986292 -0.127675
-0.011922 -0.828766 -0.559468
-0.231189 -0.273197 -0.933764
-0.389343 -0.745245 -0.541315
-0.692890 -0.244899 -0.678180
-0.502312 -0.218437 -0.836641
0.275710 -0.832391 -0.480739
0.204806 -0.147806 -0.967578
0.714934 0.501517 -0.487185
-0.384453 0.089694 -0.918777
0.470066 0.780736 -0.411691
-0.639350 0.144805 -0.755158
-0.565430 0.010556 -0.824729
-0.067001 0.869315 -0.489696
-0.266906 0.953897 -0.137267
-0.563369 0.380534 -0.733355
-0.365570 -0.201200 -0.908778
-0.393668 0.039438 -0.918407
-0.613406 -0.494181 -0.616050
-0.863398 0.270420 -0.425931
-0.720859 -0.193629 -0.665485
-0.871537 -0.343231 -0.350166
-0.932626 -0.184444 -0.310143
-0.662757 0.743115 0.092379
-0.759573 -0.187786 -0.622724
-0.352530 -0.839149 -0.414188
-0.437299 -0.641299 0.630480
0.472906 0.108858 0.874362
0.407015 -0.117676 0.905810
0.670215 0.259324 0.695387
0.842356 0.215150 0.494112
-0.965877 0.142812 0.216070
0.211799 0.103396 0.971828
0.064613 -0.137611 0.988377
-0.058610 0.117085 0.991391
0.005120 -0.111795 0.993718
0.730417 0.473330 0.492392
0.609002 0.176478 0.773287
0.664658 0.016412 0.746968
0.527607 -0.708164 0.469184
0.799383 0.002763 0.600815
0.729546 0.431836 0.530358
0.976842 0.213949 -0.002350
0.746819 0.379468 0.546136
0.523558 0.077652 0.848444
0.313987 0.651395 0.690722
0.028979 0.551892 0.833412
0.322325 -0.128057 0.937928
-0.928883 -0.347637 0.127767
-0.892838 0.076933 0.443758
-0.074899 -0.161026 0.984104
-0.639293 0.454950 0.619939
0.051435 -0.379150 0.923905
-0.301834 0.901876 0.309057
0.042422 0.286621 0.957104
0.716507 0.551027 -0.427770
-0.603308 -0.122417 0.788057
0.122695 0.849226 -0.513576
-0.174760 0.523640 0.833823
0.442904 0.801604 0.401581
0.692764 -0.301178 0.655263
-0.386977 -0.146409 0.910392
-0.759849 0.332307 0.558749
-0.316785 -0.457139 -0.831067
-0.764908 0.570408 0.299248
0.489285 -0.865157 -0.110017
0.150003 -0.938292 -0.311619
0.067810 -0.515173 -0.854399
-0.875424 -0.473345 -0.097865
-0.677614 0.297518 -0.672550
-0.571314 0.439045 0.693427
0.806719 -0.590347 0.026366
0.102875 -0.877018 -0.469315
0.169056 -0.132224 -0.976697
-0.407576 0.479503 -0.777148
-0.660002 0.551069 0.510608
-0.762495 0.574170 0.298210
-0.630911 0.166530 -0.757773
0.008816 0.268014 0.963375
-0.270876 -0.652059 -0.708128
-0.836732 -0.204561 -0.507971
0.004593 -0.267670 0.963500
-0.837575 0.175274 -0.517443
-0.522677 0.163736 0.836659
-0.524019 -0.588970 0.615238
-0.808007 -0.531388 0.254465
0.902474 -0.105892 -0.417525
-0.028317 -0.102829 -0.994296
0.928279 -0.356060 0.107331
-0.531323 0.329204 -0.780590
0.081692 -0.106371 -0.990965
0.298445 -0.932280 -0.204414
0.904981 0.383230 0.184779
0.979260 -0.156690 -0.128446
0.102989 -0.990187 -0.094460
0.975002 0.120513 -0.186673
0.597962 0.712441 0.367245
0.676044 -0.687131 -0.266112
0.874146 -0.080398 -0.478963
0.082667 0.501333 0.861296
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
-0.062448 -0.071901 -0.057002
-0.062417 -0.062953 -0.055540
-0.045919 -0.070017 -0.069408
-0.057682 -0.053884 -0.064535
-0.047413 -0.050859 -0.081192
-0.084750 -0.081351 -0.070701
-0.087329 -0.064967 -0.065912
-0.080483 -0.072644 -0.062249
-0.076977 -0.066999 -0.055770
-0.094784 -0.078564 -0.080703
-0.075725 -0.050801 -0.059263
-0.077690 -0.044275 -0.065884
-0.084509 -0.048300 -0.064622
-0.070202 -0.044831 -0.065144
-0.089862 -0.054217 -0.072831
-0.091591 -0.050185 -0.089785
-0.085142 -0.053865 -0.060240
-0.078795 -0.058398 -0.056620
-0.071624 -0.058301 -0.055727
-0.067026 -0.053924 -0.056784
-0.097661 -0.060940 -0.092403
-0.048881 -0.048842 -0.096234
-0.061698 -0.040081 -0.089113
-0.061428 -0.046106 -0.069411
-0.065351 -0.049490 -0.061383
-0.072428 -0.040380 -0.077771
-0.088044 -0.048933 -0.100261
-0.018107 0.019491 -0.132935
-0.028267 -0.009664 -0.112591
-0.045061 0.043864 -0.123584
-0.063048 -0.006570 -0.099770
-0.008839 -0.013896 -0.121746
-0.001073 0.011410 -0.128095
-0.016222 0.038473 -0.132645
-0.042118 0.051224 -0.132586
-0.042675 0.072014 -0.119140
-0.065829 0.083022 -0.103489
-0.077514 0.027034 -0.079831
-0.063704 0.089931 -0.100713
-0.086810 0.093832 -0.076345
-0.105118 0.082413 -0.073602
-0.097580 0.072126 -0.071741
-0.127064 0.049844 -0.068258
-0.101925 -0.005538 -0.073290
-0.140045 0.047838 -0.057869
-0.132189 0.020569 -0.063785
-0.135709 0.025433 -0.056811
-0.142756 0.037853 -0.055989
-0.121831 0.074797 -0.061410
-0.134095 0.010597 -0.055875
-0.120259 -0.006688 -0.063216
-0.130339 -0.000991 -0.057141
-0.058937 -0.031863 -0.062129
-0.083712 0.011709 -0.060801
-0.036015 -0.018197 -0.095127
-0.045607 -0.037891 -0.078833
-0.095264 -0.012132 -0.070120
-0.097172 0.024295 -0.055110
-0.104359 0.010080 -0.050771
-0.134140 0.009515 -0.055856
-0.118896 0.021691 -0.059151
-0.068605 0.091887 -0.085194
-0.056939 0.031117 -0.098576
-0.082516 0.044380 -0.066276
-0.023835 -0.009300 -0.106864
0.000000 0.000000 -0.118718
-0.008366 0.022010 -0.122779
-0.001184 0.011484 -0.127749
-0.026130 0.046823 -0.120518
-0.084245 0.065990 -0.059553
-0.080521 0.089270 -0.070947
-0.099933 0.080171 -0.058907
-0.110783 0.041488 -0.052254
-0.140283 0.027057 -0.051667
-0.142567 0.036860 -0.050538
-0.130442 0.036093 -0.043881
-0.137764 0.052955 -0.051671
-0.135777 0.025181 -0.056779
-0.101184 0.087329 -0.067624
-0.121330 0.055186 -0.048853
-0.096303 -0.102807 -0.040325
-0.106712 -0.111791 -0.036161
-0.065047 -0.095889 -0.019016
-0.046878 -0.072892 -0.002407
-0.026301 -0.071631 -0.004815
-0.025062 -0.079029 -0.002221
-0.055663 -0.097839 0.000351
-0.055379 -0.082850 -0.001799
-0.062757 -0.090507 -0.019243
-0.055601 -0.064625 -0.037258
-0.072771 -0.117347 -0.025230
-0.092129 -0.120870 -0.035677
-0.119191 -0.101490 -0.069475
-0.135738 -0.096931 -0.060259
-0.131818 -0.075844 -0.069124
-0.135611 -0.084397 -0.054166
-0.098898 -0.090770 -0.050130
-0.114308 -0.115077 -0.052030
-0.111746 -0.086624 -0.072478
-0.118362 -0.066696 -0.067764
-0.126944 -0.070428 -0.061559
-0.125353 -0.054405 -0.052960
-0.110855 -0.059933 -0.067604
-0.089373 -0.030293 -0.066890
-0.102557 -0.079412 -0.071675
-0.105344 -0.063815 -0.075543
-0.080788 -0.075604 -0.049913
-0.100969 -0.048285 -0.084058
-0.062492 -0.055190 -0.052861
-0.054641 -0.074427 -0.051754
-0.052625 -0.067426 -0.044255
-0.041877 -0.045942 -0.088833
-0.059916 -0.027590 -0.099000
-0.029562 -0.031117 -0.096830
-0.088158 -0.031197 -0.092581
-0.071333 -0.042764 -0.104575
-0.031563 -0.083550 -0.016874
-0.043487 -0.047599 -0.064706
-0.041830 -0.065559 -0.060295
-0.052737 -0.076823 -0.059980
-0.021941 -0.075541 -0.023867
-0.043358 -0.059739 -0.041738
-0.054177 -0.102026 -0.005631
-0.036276 -0.072749 -0.036449
-0.059231 -0.032040 -0.061986
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
2 3 4
5 6 7
7 6 8
9 6 5
12 11 10
13 10 11
12 14 11
15 11 14
8 1 0
6 14 16
6 16 17
8 6 17
17 10 18
1 18 19
9 20 6
6 15 14
20 15 6
4 21 2
21 4 22
4 3 23
22 4 23
19 10 24
3 19 24
26 22 25
22 23 25
3 1 19
23 3 24
23 24 13
25 23 13
1 8 18
8 17 18
12 10 16
16 10 17
25 11 15
15 26 25
20 26 15
18 10 19
24 10 13
16 14 12
27 28 29
29 28 30
28 27 31
31 27 32
33 32 27
33 27 34
27 29 34
35 33 34
29 37 36
29 36 34
35 34 36
38 35 36
39 36 40
36 41 40
38 36 39
37 42 41
37 41 36
37 29 30
37 30 43
42 37 43
42 45 44
47 45 46
47 46 73
44 45 47
40 42 48
41 42 40
42 44 48
46 45 49
45 50 49
49 50 51
42 43 50
50 45 42
54 53 52
55 113 54
52 55 54
52 53 56
53 57 58
50 53 58
51 50 58
51 58 59
57 60 58
56 53 43
43 53 50
63 62 61
63 53 62
64 54 113
64 31 65
66 65 67
67 65 31
54 62 53
64 62 54
65 62 64
68 62 66
61 62 68
33 66 67
68 66 33
68 33 35
61 68 35
38 61 35
61 69 63
71 69 70
63 69 72
63 72 57
72 60 57
75 74 73
44 74 76
75 76 74
75 60 72
77 60 75
75 73 77
77 73 75
77 59 60
40 48 78
48 71 78
78 70 39
40 78 39
39 61 38
61 39 70
48 44 76
79 69 71
69 79 72
48 76 79
79 76 75
58 60 59
72 79 75
53 63 57
70 69 61
71 70 78
62 65 66
80 81 82
85 84 83
85 83 86
87 86 83
89 88 86
89 86 87
87 83 89
91 90 81
92 93 94
94 93 95
95 93 81
80 95 81
80 96 95
97 81 93
92 97 93
98 94 99
94 100 99
101 102 99
56 101 103
102 98 99
104 98 102
104 102 105
101 100 106
9 105 20
20 105 107
101 106 103
108 106 109
110 108 109
89 108 110
111 112 113
113 112 64
64 112 30
30 112 114
111 115 112
56 30 114
56 43 30
26 20 107
26 107 114
115 26 114
56 114 107
102 56 107
5 104 9
100 95 96
100 96 106
86 116 85
111 117 118
120 121 89
84 120 89
83 84 89
86 90 122
90 86 81
92 96 97
97 96 80
91 97 80
80 90 91
116 123 120
118 123 116
116 119 118
110 116 89
109 116 110
119 116 109
85 116 120
84 85 120
98 96 92
5 106 96
104 5 96
104 96 98
122 90 82
122 82 88
90 80 82
116 122 88
116 86 122
124 106 108
118 117 121
123 118 121
120 123 121
55 117 111
124 117 55
89 121 108
113 55 111
103 124 56
103 106 124
121 124 108
121 117 124
116 88 89
91 81 97
82 81 86
98 92 94
101 56 102
95 100 94
9 104 105
115 114 112
11 25 13
1 3 2
5 7 0
8 0 7
22 115 21
115 22 26
21 115 111
21 111 2
118 2 111
2 119 0
118 119 2
5 119 106
106 119 109
99 100 101
102 107 105
28 31 64
28 64 30
79 71 48
82 86 88
47 74 44
73 74 47
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444 447 450 453 456 459 462 465 468 471 474 477 480 483 486 489 492 495 498 501 504 507 510 513 516 519 522 525 528 531 534 537 540 543 546 549 552 555 558 561 564 567 570 573 576 579 582 585 588 591 594 597 600 603 606 609 612 615 618 621 624 627 630 633 636 639 642 645 648 651 654 657 660 663 666 669 672 675 678 681 684 687 690 693 696 699 702 705 708 711 714 717 720 723 726
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,656 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="159" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="316">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
-0.137584 -0.680260 -0.719942
-0.332368 -0.831904 -0.444374
-0.260028 -0.438535 -0.860275
0.254401 -0.088771 -0.963016
-0.023687 -0.927680 -0.372625
0.571309 -0.209151 -0.793638
-0.222066 -0.475620 -0.851159
-0.184031 -0.807404 -0.560564
-0.278064 -0.959641 -0.042073
0.005004 -0.987266 -0.158997
0.157900 0.201653 -0.966646
-0.131622 0.147208 -0.980309
0.641886 0.635647 -0.428876
0.977518 -0.035255 -0.207883
0.728188 -0.684818 0.027693
0.869129 0.468244 -0.159253
-0.069069 -0.340197 -0.937814
-0.096958 0.363920 -0.926370
0.043951 -0.568500 -0.821509
-0.031146 -0.590660 -0.806319
-0.101811 -0.859636 -0.500660
-0.365751 -0.929273 0.051750
-0.222437 -0.947076 -0.231451
0.113316 -0.993424 0.016404
-0.339484 -0.793477 0.505119
-0.289637 -0.669699 0.683823
-0.128578 -0.874206 0.468222
0.894641 -0.403902 0.190997
0.320821 0.746286 -0.583208
0.063455 0.964792 -0.255245
0.519243 0.792775 0.319209
0.765791 0.631002 0.124097
0.931278 0.333442 0.146758
0.213235 -0.008264 -0.976966
0.083815 0.649812 -0.755460
-0.042754 0.976579 -0.210870
0.149857 -0.792749 -0.590840
0.365481 -0.228200 -0.902412
0.430512 0.000216 -0.902585
-0.264343 -0.953420 0.145306
-0.269988 -0.755789 0.596565
-0.238489 -0.932204 -0.272246
0.624948 -0.546439 0.557534
-0.402244 -0.592432 0.698014
-0.246779 -0.525466 0.814239
0.330122 -0.214439 0.919258
0.258789 -0.027976 0.965529
0.001034 0.004832 0.999988
-0.347469 -0.277703 0.895626
0.794536 0.443584 0.414663
0.905884 0.343803 0.247333
0.225247 0.965682 0.129314
0.078789 0.994378 0.070745
0.405692 0.481988 0.776596
0.243231 0.655484 0.714968
0.093839 0.991336 -0.091908
0.293253 0.955371 0.035626
0.475742 0.714640 -0.512796
0.641773 0.540551 -0.543996
0.345237 0.935128 0.079673
0.521944 -0.375060 -0.766097
-0.185996 -0.673822 -0.715101
0.445245 -0.504498 -0.739756
0.714457 0.520156 -0.467963
0.667175 0.204835 -0.716185
-0.137241 -0.837392 0.529092
-0.086160 -0.846809 0.524873
-0.651893 -0.730758 0.202552
0.044626 -0.199452 0.978891
-0.005188 -0.540976 0.841022
-0.911391 0.123677 -0.392517
-0.863403 0.091850 -0.496083
-0.920378 -0.041218 -0.388852
-0.934502 0.329037 -0.135796
-0.321231 0.196706 0.926346
-0.501111 -0.304230 0.810143
-0.145035 0.032031 0.988908
-0.277200 0.427470 0.860482
0.114586 0.991891 -0.054974
-0.024054 0.995597 0.090600
0.618183 0.786030 -0.002412
0.214875 0.963514 0.159591
0.504152 0.805860 0.310517
0.488828 0.735307 0.469437
0.612142 -0.075312 -0.787153
-0.134266 -0.205426 -0.969419
-0.709858 0.189350 -0.678416
0.113051 0.019739 -0.993393
0.410866 0.741748 -0.530093
0.416200 0.908626 -0.034297
0.534313 0.814137 -0.227356
0.281167 0.549967 -0.786436
0.139567 -0.690604 0.709639
-0.770958 -0.203351 0.603550
-0.896532 0.110217 0.429048
-0.621636 0.781191 -0.057523
0.298644 -0.293567 0.908091
0.522874 0.100198 0.846500
0.590292 0.392991 0.705063
0.131994 0.337629 0.931979
-0.623074 0.779075 -0.069436
-0.951816 0.270978 -0.143588
-0.932246 0.358458 -0.049244
-0.983453 0.179258 -0.026201
0.019831 0.978646 0.204594
0.018145 0.767337 0.640988
0.643165 0.671438 0.368118
0.370646 0.682546 0.629883
0.206250 0.217612 -0.953995
-0.649493 0.269958 -0.710831
-0.744034 0.277970 -0.607575
-0.286711 0.770224 -0.569695
-0.131989 0.925322 -0.355469
0.123443 0.973908 0.190432
-0.041979 0.995609 0.083668
-0.245683 0.968324 0.044604
0.261171 0.913640 0.311531
-0.121653 0.978531 -0.166364
0.138806 -0.595171 0.791520
0.499357 -0.511135 0.699559
-0.525454 -0.123128 0.841865
-0.842542 0.536703 -0.045531
-0.852205 0.506782 -0.130073
-0.831711 0.420405 0.362652
-0.797302 0.588412 -0.134465
0.544291 -0.131315 0.828555
0.566953 0.272406 0.777405
-0.896476 0.441109 0.041879
-0.994134 -0.017797 0.106683
-0.989679 -0.094962 -0.107318
-0.990898 0.016966 -0.133543
-0.967900 0.250638 0.018689
-0.995475 -0.092035 0.023639
0.257288 0.605612 0.753019
-0.812059 0.492432 -0.313164
-0.982030 0.154040 -0.109040
-0.920297 0.297546 -0.254008
-0.316065 0.916422 0.245506
0.207768 0.858700 0.468472
0.025532 0.879211 0.475749
-0.984085 0.177638 -0.004588
-0.997834 0.063554 -0.016996
-0.728777 0.675099 0.114571
0.547934 -0.368901 0.750786
0.341227 -0.364178 0.866567
-0.040730 0.069976 0.996717
-0.941912 0.182155 -0.282173
-0.845576 0.437900 -0.305360
-0.900578 0.415776 -0.126845
-0.954798 0.277067 -0.107679
-0.469928 0.636239 0.611856
-0.963900 0.264831 0.027586
-0.959859 0.270991 0.072344
0.434099 0.037949 0.900065
-0.997964 0.046600 0.043557
-0.944672 0.310986 0.104319
-0.920768 -0.344540 -0.182971
-0.957429 -0.266193 0.111678
-0.998809 -0.033925 0.035061
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
0.047332 -0.137461 0.047591
0.046574 -0.137410 0.048256
0.045478 -0.135995 0.047091
0.047736 -0.136511 0.047157
0.047778 -0.138007 0.048268
0.048838 -0.137386 0.047819
0.044990 -0.135838 0.047248
0.041890 -0.136109 0.048180
0.044300 -0.137533 0.049516
0.047843 -0.138106 0.049663
0.046315 -0.135589 0.046955
0.045107 -0.135242 0.047069
0.048195 -0.136295 0.047588
0.049128 -0.137643 0.048199
0.049182 -0.137836 0.049069
0.048822 -0.136855 0.048246
0.042775 -0.135368 0.047268
0.044082 -0.135108 0.047173
0.039359 -0.134254 0.046548
0.042070 -0.135472 0.047419
0.038552 -0.134723 0.047148
0.038719 -0.135358 0.049182
0.037789 -0.134715 0.047522
0.047820 -0.138323 0.050425
0.042746 -0.136686 0.050292
0.045061 -0.136642 0.052010
0.047278 -0.138138 0.050974
0.048863 -0.137831 0.050144
0.046023 -0.134823 0.047212
0.045220 -0.134492 0.047530
0.047413 -0.136191 0.051508
0.048571 -0.136550 0.048598
0.048898 -0.137325 0.049804
0.041833 -0.135017 0.047221
0.043083 -0.134947 0.047297
0.044150 -0.134666 0.047851
0.037385 -0.134359 0.046495
0.039413 -0.133281 0.046109
0.040528 -0.133916 0.046558
0.036832 -0.134491 0.049727
0.039575 -0.135068 0.050728
0.035580 -0.134152 0.045759
0.048632 -0.137808 0.051368
0.042796 -0.135489 0.051437
0.041087 -0.135468 0.051002
0.048257 -0.137593 0.051656
0.046615 -0.136603 0.052256
0.045403 -0.135948 0.052423
0.043234 -0.135298 0.052047
0.048324 -0.136997 0.051285
0.048761 -0.137228 0.050334
0.045489 -0.134974 0.049589
0.044719 -0.134925 0.049546
0.046341 -0.135826 0.052119
0.044845 -0.134992 0.052147
0.044713 -0.134851 0.050301
0.044168 -0.134567 0.051519
0.042222 -0.134214 0.047717
0.041464 -0.133716 0.047445
0.043482 -0.134536 0.049355
0.038138 -0.132566 0.045237
0.035960 -0.133357 0.044354
0.036585 -0.133004 0.044259
0.039748 -0.132429 0.046504
0.038235 -0.131478 0.045159
0.036853 -0.134159 0.050903
0.036309 -0.134050 0.051043
0.033491 -0.133732 0.050058
0.039991 -0.134370 0.051236
0.037181 -0.133361 0.051639
0.035260 -0.133493 0.044862
0.034514 -0.133458 0.045813
0.034179 -0.133810 0.046565
0.033486 -0.133715 0.048311
0.042139 -0.134957 0.051515
0.042729 -0.134933 0.051864
0.041306 -0.134850 0.051337
0.043136 -0.134575 0.052079
0.044206 -0.134909 0.050339
0.043651 -0.134509 0.051894
0.040692 -0.132971 0.048702
0.042597 -0.134530 0.050523
0.041904 -0.133881 0.049764
0.041794 -0.134128 0.050352
0.037451 -0.132071 0.044501
0.036056 -0.132757 0.043935
0.035769 -0.132367 0.044222
0.036721 -0.132301 0.044056
0.037255 -0.130289 0.045148
0.037414 -0.129771 0.049893
0.037804 -0.130251 0.045891
0.037164 -0.130703 0.044656
0.036150 -0.133589 0.051581
0.034660 -0.132858 0.052242
0.034383 -0.133165 0.051813
0.034215 -0.133315 0.050977
0.038260 -0.132032 0.051991
0.038655 -0.131563 0.051880
0.039921 -0.133006 0.051394
0.040698 -0.134314 0.051120
0.035236 -0.132770 0.048525
0.035957 -0.131811 0.044723
0.035829 -0.132079 0.047448
0.035853 -0.131519 0.045782
0.042400 -0.134439 0.051053
0.041718 -0.134514 0.051323
0.037986 -0.130026 0.051477
0.041288 -0.134251 0.050877
0.036807 -0.131599 0.044032
0.036045 -0.131810 0.044217
0.036052 -0.131292 0.044368
0.036060 -0.130308 0.045242
0.036759 -0.129839 0.045953
0.036914 -0.129770 0.051396
0.036552 -0.129552 0.050606
0.036033 -0.129555 0.049827
0.037487 -0.129792 0.051450
0.036416 -0.129580 0.046651
0.036307 -0.132497 0.052912
0.037456 -0.132117 0.052413
0.035155 -0.131835 0.052905
0.034646 -0.132631 0.051282
0.034838 -0.132247 0.051578
0.035336 -0.131357 0.052904
0.035545 -0.132485 0.049115
0.037867 -0.131635 0.052297
0.037750 -0.130780 0.052348
0.035629 -0.132282 0.048350
0.036073 -0.130777 0.046477
0.036110 -0.131246 0.047499
0.035938 -0.131264 0.048220
0.035756 -0.131638 0.048560
0.035882 -0.130961 0.045504
0.037263 -0.130464 0.052496
0.035779 -0.130191 0.045825
0.035734 -0.129968 0.046433
0.035589 -0.129882 0.047593
0.036041 -0.129700 0.051292
0.037152 -0.129991 0.051975
0.036651 -0.129827 0.051871
0.035519 -0.129971 0.050650
0.035446 -0.129884 0.048539
0.035330 -0.129978 0.050151
0.037159 -0.131869 0.052802
0.036562 -0.132087 0.053078
0.036164 -0.131792 0.053236
0.035919 -0.131254 0.050584
0.035500 -0.131309 0.051498
0.035308 -0.131404 0.051984
0.035464 -0.130926 0.051968
0.035702 -0.130576 0.052577
0.035865 -0.131645 0.049798
0.035786 -0.132065 0.048838
0.036815 -0.131625 0.053081
0.035942 -0.131277 0.048915
0.035526 -0.130305 0.051730
0.035881 -0.130643 0.050332
0.035888 -0.130678 0.049510
0.036066 -0.131027 0.049937
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
0 2 3
1 0 4
0 3 5
5 4 0
6 2 1
6 1 7
8 1 9
9 1 4
8 7 1
3 2 10
2 6 11
10 2 11
5 3 12
12 3 10
13 4 5
14 4 13
14 9 4
15 5 12
15 13 5
7 16 6
11 6 17
6 16 17
7 18 19
7 19 16
18 7 20
7 8 21
22 20 7
7 21 22
8 9 23
24 21 8
25 8 26
26 8 23
8 25 24
9 27 23
14 27 9
10 11 28
28 12 10
11 29 28
29 11 17
12 30 31
15 12 31
30 12 28
32 14 13
13 31 32
15 31 13
32 27 14
33 16 19
17 16 34
33 34 16
34 35 17
35 29 17
33 19 18
18 36 37
18 20 36
38 33 18
38 18 37
22 36 20
39 22 21
40 21 24
40 39 21
22 41 36
22 39 41
23 42 26
42 23 27
43 24 25
40 24 44
24 43 44
26 45 25
25 45 46
46 47 25
47 48 25
25 48 43
42 45 26
27 49 42
50 49 27
32 50 27
28 29 30
30 29 51
35 52 29
29 52 51
31 30 49
53 30 54
30 51 55
54 30 56
56 30 55
45 30 46
49 30 45
53 46 30
50 32 31
49 50 31
57 34 33
58 33 38
33 58 57
35 34 59
57 59 34
59 52 35
60 37 36
36 41 61
61 62 36
60 36 62
63 38 37
63 37 64
64 37 60
38 63 58
39 65 66
40 65 39
66 67 39
39 67 41
68 40 44
40 68 69
69 65 40
70 61 41
71 41 72
71 70 41
41 67 73
72 41 73
49 45 42
74 44 43
43 48 75
74 43 75
76 44 74
68 44 76
53 47 46
54 47 53
47 54 48
54 77 48
75 48 77
55 51 52
78 55 52
59 78 52
54 79 77
56 79 54
78 79 55
79 56 55
57 58 80
59 57 80
58 63 80
78 59 81
59 82 83
81 59 83
80 82 59
60 62 84
64 60 84
85 62 61
86 61 70
86 85 61
62 85 87
62 87 84
64 88 63
80 63 89
89 63 90
63 88 90
88 64 91
84 91 64
66 65 69
92 66 69
92 93 66
67 66 94
66 93 94
67 94 95
73 67 95
68 96 69
97 96 68
98 68 99
68 98 97
99 68 76
96 92 69
100 70 71
101 86 70
102 70 100
101 70 103
102 103 70
100 71 72
100 72 73
73 95 100
79 74 77
74 75 77
79 104 74
74 105 76
105 74 104
99 76 105
104 78 81
79 78 104
80 106 98
89 106 80
82 80 98
104 81 105
107 105 81
81 83 107
82 98 83
83 98 107
108 84 87
91 84 108
85 86 87
87 86 109
101 109 86
110 108 87
87 109 110
111 88 91
90 88 112
88 111 112
113 89 114
114 89 115
89 113 116
89 116 106
115 89 117
89 90 117
117 90 112
91 110 111
110 91 108
93 92 118
92 96 119
119 118 92
118 120 93
94 93 121
122 121 93
93 120 123
122 93 123
121 95 94
124 100 95
124 95 121
119 96 125
125 96 97
125 97 126
97 106 126
98 106 97
99 107 98
105 107 99
127 102 100
127 100 124
103 110 101
101 110 109
103 102 128
129 102 130
129 128 102
127 131 102
131 130 102
110 103 132
128 132 103
126 106 133
116 133 106
134 111 110
110 132 134
134 112 111
134 111 135
111 134 135
117 112 136
135 112 134
112 135 136
114 137 113
113 138 116
138 113 139
113 137 139
140 114 115
140 137 114
115 141 142
140 115 142
141 115 117
116 138 133
136 141 117
118 119 143
144 118 143
145 120 118
144 145 118
125 143 119
120 145 123
121 122 124
146 122 147
148 122 123
122 146 124
147 122 148
149 148 123
149 123 150
123 145 150
124 151 152
124 152 127
151 124 146
126 153 125
125 153 143
153 126 133
131 127 152
128 135 132
129 135 128
129 130 136
136 135 129
136 130 141
141 130 154
131 154 130
151 131 152
131 151 154
135 134 132
133 139 150
133 138 139
153 133 145
150 145 133
137 150 139
137 155 150
137 140 155
146 155 140
140 156 146
140 142 141
157 140 141
140 157 156
157 141 154
144 143 153
153 145 144
149 146 147
149 155 146
146 156 158
151 146 158
147 148 149
150 155 149
151 158 157
157 154 151
156 157 158
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444 447 450 453 456 459 462 465 468 471 474 477 480 483 486 489 492 495 498 501 504 507 510 513 516 519 522 525 528 531 534 537 540 543 546 549 552 555 558 561 564 567 570 573 576 579 582 585 588 591 594 597 600 603 606 609 612 615 618 621 624 627 630 633 636 639 642 645 648 651 654 657 660 663 666 669 672 675 678 681 684 687 690 693 696 699 702 705 708 711 714 717 720 723 726 729 732 735 738 741 744 747 750 753 756 759 762 765 768 771 774 777 780 783 786 789 792 795 798 801 804 807 810 813 816 819 822 825 828 831 834 837 840 843 846 849 852 855 858 861 864 867 870 873 876 879 882 885 888 891 894 897 900 903 906 909 912 915 918 921 924 927 930 933 936 939 942 945 948
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,656 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="159" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="316">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
-0.260028 -0.438535 0.860275
-0.332368 -0.831904 0.444374
-0.137584 -0.680260 0.719942
0.254401 -0.088771 0.963016
0.157900 0.201653 0.966646
-0.222066 -0.475620 0.851159
-0.131622 0.147208 0.980309
-0.184031 -0.807404 0.560564
-0.023687 -0.927680 0.372625
0.005004 -0.987266 0.158997
-0.278064 -0.959641 0.042073
0.571309 -0.209151 0.793638
0.641886 0.635647 0.428876
0.320821 0.746286 0.583208
-0.069069 -0.340197 0.937814
-0.096958 0.363920 0.926370
0.063455 0.964792 0.255245
-0.031146 -0.590660 0.806319
0.043951 -0.568500 0.821509
-0.101811 -0.859636 0.500660
-0.365751 -0.929273 -0.051750
-0.222437 -0.947076 0.231451
0.977518 -0.035255 0.207883
0.728188 -0.684818 -0.027693
0.113316 -0.993424 -0.016404
0.894641 -0.403902 -0.190997
-0.339484 -0.793477 -0.505119
-0.128578 -0.874206 -0.468222
-0.289637 -0.669699 -0.683823
0.869129 0.468244 0.159253
0.765791 0.631002 -0.124097
0.519243 0.792775 -0.319209
0.213235 -0.008264 0.976966
0.083815 0.649812 0.755460
-0.042754 0.976579 0.210870
0.225247 0.965682 -0.129314
0.078789 0.994378 -0.070745
0.365481 -0.228200 0.902412
0.149857 -0.792749 0.590840
0.430512 0.000216 0.902585
-0.264343 -0.953420 -0.145306
-0.269988 -0.755789 -0.596565
-0.238489 -0.932204 0.272246
0.931278 0.333442 -0.146758
0.624948 -0.546439 -0.557534
0.794536 0.443584 -0.414663
0.905884 0.343803 -0.247333
-0.402244 -0.592432 -0.698014
-0.246779 -0.525466 -0.814239
0.330122 -0.214439 -0.919258
0.258789 -0.027976 -0.965529
0.001034 0.004832 -0.999988
-0.347469 -0.277703 -0.895626
0.243231 0.655484 -0.714968
0.405692 0.481988 -0.776596
0.093839 0.991336 0.091908
0.293253 0.955371 -0.035626
0.475742 0.714640 0.512796
0.641773 0.540551 0.543996
0.345237 0.935128 -0.079673
0.114586 0.991891 0.054974
0.521944 -0.375060 0.766097
0.714457 0.520156 0.467963
0.667175 0.204835 0.716185
-0.185996 -0.673822 0.715101
0.445245 -0.504498 0.739756
-0.086160 -0.846809 -0.524873
-0.137241 -0.837392 -0.529092
-0.651893 -0.730758 -0.202552
0.044626 -0.199452 -0.978891
-0.005188 -0.540976 -0.841022
-0.911391 0.123677 0.392517
-0.920378 -0.041218 0.388852
-0.863403 0.091850 0.496083
-0.934502 0.329037 0.135796
-0.321231 0.196706 -0.926346
-0.501111 -0.304230 -0.810143
-0.145035 0.032031 -0.988908
-0.277200 0.427470 -0.860482
-0.024054 0.995597 -0.090600
0.618183 0.786030 0.002412
0.214875 0.963514 -0.159591
0.488828 0.735307 -0.469437
0.504152 0.805860 -0.310517
0.019831 0.978646 -0.204594
0.612142 -0.075312 0.787153
0.410866 0.741748 0.530093
0.416200 0.908626 0.034297
0.534313 0.814137 0.227356
0.281167 0.549967 0.786436
-0.134266 -0.205426 0.969419
-0.709858 0.189350 0.678416
0.113051 0.019739 0.993393
0.139567 -0.690604 -0.709639
-0.770958 -0.203351 -0.603550
-0.896532 0.110217 -0.429048
-0.621636 0.781191 0.057523
0.298644 -0.293567 -0.908091
0.522874 0.100198 -0.846500
0.131994 0.337629 -0.931979
0.590292 0.392991 -0.705063
-0.623074 0.779075 0.069436
-0.951816 0.270978 0.143588
-0.932246 0.358458 0.049244
-0.983453 0.179258 0.026201
0.018145 0.767337 -0.640988
0.643165 0.671438 -0.368118
0.370646 0.682546 -0.629883
0.206250 0.217612 0.953995
-0.286711 0.770224 0.569695
-0.131989 0.925322 0.355469
-0.041979 0.995609 -0.083668
0.123443 0.973908 -0.190432
-0.245683 0.968324 -0.044604
0.261171 0.913640 -0.311531
-0.121653 0.978531 0.166364
-0.744034 0.277970 0.607575
-0.649493 0.269958 0.710831
0.138806 -0.595171 -0.791520
0.499357 -0.511135 -0.699559
-0.525454 -0.123128 -0.841865
-0.842542 0.536703 0.045531
-0.852205 0.506782 0.130073
-0.831711 0.420405 -0.362652
-0.797302 0.588412 0.134465
0.544291 -0.131315 -0.828555
0.566953 0.272406 -0.777405
-0.896476 0.441109 -0.041879
-0.994134 -0.017797 -0.106683
-0.990898 0.016966 0.133543
-0.989679 -0.094962 0.107318
-0.967900 0.250638 -0.018689
-0.995475 -0.092035 -0.023639
0.257288 0.605612 -0.753019
-0.812059 0.492432 0.313164
-0.982030 0.154040 0.109040
-0.920297 0.297546 0.254008
-0.316065 0.916422 -0.245506
-0.984085 0.177638 0.004588
0.207768 0.858700 -0.468472
0.025532 0.879211 -0.475749
-0.728777 0.675099 -0.114571
-0.997834 0.063554 0.016996
0.547934 -0.368901 -0.750786
0.341227 -0.364178 -0.866567
-0.040730 0.069976 -0.996717
-0.845576 0.437900 0.305360
-0.941912 0.182155 0.282173
-0.900578 0.415776 0.126845
-0.954798 0.277067 0.107679
-0.469928 0.636239 -0.611856
-0.959859 0.270991 -0.072344
-0.963900 0.264831 -0.027586
0.434099 0.037949 -0.900065
-0.997964 0.046600 -0.043557
-0.944672 0.310986 -0.104319
-0.920768 -0.344540 0.182971
-0.957429 -0.266193 -0.111678
-0.998809 -0.033925 -0.035061
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
0.045478 -0.135995 -0.047091
0.046574 -0.137410 -0.048256
0.047332 -0.137461 -0.047591
0.047736 -0.136511 -0.047157
0.046315 -0.135589 -0.046955
0.044990 -0.135838 -0.047248
0.045107 -0.135242 -0.047069
0.041890 -0.136109 -0.048180
0.047778 -0.138007 -0.048268
0.047843 -0.138106 -0.049663
0.044300 -0.137533 -0.049516
0.048838 -0.137386 -0.047819
0.048195 -0.136295 -0.047588
0.046023 -0.134823 -0.047212
0.042775 -0.135368 -0.047268
0.044082 -0.135108 -0.047173
0.045220 -0.134492 -0.047530
0.042070 -0.135472 -0.047419
0.039359 -0.134254 -0.046548
0.038552 -0.134723 -0.047148
0.038719 -0.135358 -0.049182
0.037789 -0.134715 -0.047522
0.049128 -0.137643 -0.048199
0.049182 -0.137836 -0.049069
0.047820 -0.138323 -0.050425
0.048863 -0.137831 -0.050144
0.042746 -0.136686 -0.050292
0.047278 -0.138138 -0.050974
0.045061 -0.136642 -0.052010
0.048822 -0.136855 -0.048246
0.048571 -0.136550 -0.048598
0.047413 -0.136191 -0.051508
0.041833 -0.135017 -0.047221
0.043083 -0.134947 -0.047297
0.044150 -0.134666 -0.047851
0.045489 -0.134974 -0.049589
0.044719 -0.134925 -0.049546
0.039413 -0.133281 -0.046109
0.037385 -0.134359 -0.046495
0.040528 -0.133916 -0.046558
0.036832 -0.134491 -0.049727
0.039575 -0.135068 -0.050728
0.035580 -0.134152 -0.045759
0.048898 -0.137325 -0.049804
0.048632 -0.137808 -0.051368
0.048324 -0.136997 -0.051285
0.048761 -0.137228 -0.050334
0.042796 -0.135489 -0.051437
0.041087 -0.135468 -0.051002
0.048257 -0.137593 -0.051656
0.046615 -0.136603 -0.052256
0.045403 -0.135948 -0.052423
0.043234 -0.135298 -0.052047
0.044845 -0.134992 -0.052147
0.046341 -0.135826 -0.052119
0.044713 -0.134851 -0.050301
0.044168 -0.134567 -0.051519
0.042222 -0.134214 -0.047717
0.041464 -0.133716 -0.047445
0.043482 -0.134536 -0.049355
0.044206 -0.134909 -0.050339
0.038138 -0.132566 -0.045237
0.039748 -0.132429 -0.046504
0.038235 -0.131478 -0.045159
0.035960 -0.133357 -0.044354
0.036585 -0.133004 -0.044259
0.036309 -0.134050 -0.051043
0.036853 -0.134159 -0.050903
0.033491 -0.133732 -0.050058
0.039991 -0.134370 -0.051236
0.037181 -0.133361 -0.051639
0.035260 -0.133493 -0.044862
0.034179 -0.133810 -0.046565
0.034514 -0.133458 -0.045813
0.033486 -0.133715 -0.048311
0.042139 -0.134957 -0.051515
0.042729 -0.134933 -0.051864
0.041306 -0.134850 -0.051337
0.043136 -0.134575 -0.052079
0.043651 -0.134509 -0.051894
0.040692 -0.132971 -0.048702
0.042597 -0.134530 -0.050523
0.041794 -0.134128 -0.050352
0.041904 -0.133881 -0.049764
0.042400 -0.134439 -0.051053
0.037451 -0.132071 -0.044501
0.037255 -0.130289 -0.045148
0.037414 -0.129771 -0.049893
0.037804 -0.130251 -0.045891
0.037164 -0.130703 -0.044656
0.036056 -0.132757 -0.043935
0.035769 -0.132367 -0.044222
0.036721 -0.132301 -0.044056
0.036150 -0.133589 -0.051581
0.034660 -0.132858 -0.052242
0.034383 -0.133165 -0.051813
0.034215 -0.133315 -0.050977
0.038260 -0.132032 -0.051991
0.038655 -0.131563 -0.051880
0.040698 -0.134314 -0.051120
0.039921 -0.133006 -0.051394
0.035236 -0.132770 -0.048525
0.035957 -0.131811 -0.044723
0.035829 -0.132079 -0.047448
0.035853 -0.131519 -0.045782
0.041718 -0.134514 -0.051323
0.037986 -0.130026 -0.051477
0.041288 -0.134251 -0.050877
0.036807 -0.131599 -0.044032
0.036060 -0.130308 -0.045242
0.036759 -0.129839 -0.045953
0.036552 -0.129552 -0.050606
0.036914 -0.129770 -0.051396
0.036033 -0.129555 -0.049827
0.037487 -0.129792 -0.051450
0.036416 -0.129580 -0.046651
0.036052 -0.131292 -0.044368
0.036045 -0.131810 -0.044217
0.036307 -0.132497 -0.052912
0.037456 -0.132117 -0.052413
0.035155 -0.131835 -0.052905
0.034646 -0.132631 -0.051282
0.034838 -0.132247 -0.051578
0.035336 -0.131357 -0.052904
0.035545 -0.132485 -0.049115
0.037867 -0.131635 -0.052297
0.037750 -0.130780 -0.052348
0.035629 -0.132282 -0.048350
0.036073 -0.130777 -0.046477
0.035938 -0.131264 -0.048220
0.036110 -0.131246 -0.047499
0.035756 -0.131638 -0.048560
0.035882 -0.130961 -0.045504
0.037263 -0.130464 -0.052496
0.035779 -0.130191 -0.045825
0.035734 -0.129968 -0.046433
0.035589 -0.129882 -0.047593
0.036041 -0.129700 -0.051292
0.035519 -0.129971 -0.050650
0.037152 -0.129991 -0.051975
0.036651 -0.129827 -0.051871
0.035330 -0.129978 -0.050151
0.035446 -0.129884 -0.048539
0.037159 -0.131869 -0.052802
0.036562 -0.132087 -0.053078
0.036164 -0.131792 -0.053236
0.035500 -0.131309 -0.051498
0.035919 -0.131254 -0.050584
0.035308 -0.131404 -0.051984
0.035464 -0.130926 -0.051968
0.035702 -0.130576 -0.052577
0.035786 -0.132065 -0.048838
0.035865 -0.131645 -0.049798
0.036815 -0.131625 -0.053081
0.035942 -0.131277 -0.048915
0.035526 -0.130305 -0.051730
0.035881 -0.130643 -0.050332
0.035888 -0.130678 -0.049510
0.036066 -0.131027 -0.049937
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
3 0 2
4 0 3
1 0 5
6 5 0
6 0 4
7 1 5
8 2 1
9 1 10
8 1 9
1 7 10
11 3 2
2 8 11
12 3 11
4 3 12
13 6 4
4 12 13
5 14 7
15 5 6
15 14 5
13 16 6
15 6 16
17 18 7
14 17 7
19 7 18
20 10 7
7 19 21
21 20 7
11 8 22
22 8 23
8 9 23
24 9 10
24 25 9
9 25 23
10 20 26
27 10 28
24 10 27
26 28 10
12 11 29
11 22 29
30 31 12
30 12 29
13 12 31
31 16 13
17 14 32
33 14 15
14 33 32
15 34 33
15 16 34
35 16 31
16 36 34
35 36 16
18 17 32
37 38 18
38 19 18
18 32 39
37 18 39
19 38 21
20 21 40
26 20 41
20 40 41
38 42 21
42 40 21
22 23 43
43 30 22
22 30 29
23 25 43
27 44 24
25 24 44
44 45 25
25 45 46
25 46 43
28 26 47
48 26 41
48 47 26
27 49 44
28 49 27
50 49 28
28 51 50
28 52 51
47 52 28
45 31 30
30 43 46
30 46 45
53 31 54
55 35 31
56 31 53
55 31 56
50 31 49
49 31 45
31 50 54
32 33 57
39 32 58
57 58 32
59 33 34
33 59 57
34 36 59
36 35 55
36 55 60
36 60 59
38 37 61
37 39 62
63 37 62
61 37 63
64 42 38
38 65 64
65 38 61
58 62 39
66 67 40
40 67 41
40 68 66
42 68 40
48 41 69
70 69 41
41 67 70
42 64 71
72 42 73
42 71 73
74 68 42
74 42 72
44 49 45
47 48 75
76 52 47
76 47 75
75 48 77
77 48 69
50 51 54
54 51 53
52 53 51
52 78 53
78 52 76
78 79 53
53 79 56
55 79 60
55 56 79
80 58 57
80 57 59
80 62 58
81 59 60
82 83 59
82 59 81
59 83 80
81 60 84
84 60 79
85 65 61
85 61 63
62 86 63
87 62 80
88 62 87
88 86 62
89 63 86
63 89 85
64 65 90
71 64 91
64 90 91
92 90 65
85 92 65
70 67 66
70 66 93
66 94 93
95 66 68
95 94 66
96 95 68
96 68 74
70 97 69
69 97 98
99 69 100
98 100 69
77 69 99
70 93 97
73 71 101
71 91 102
101 71 103
104 71 102
71 104 103
72 73 101
74 72 101
101 96 74
78 75 79
78 76 75
75 84 79
77 105 75
84 75 105
105 77 99
100 106 80
80 106 87
100 80 83
105 81 84
81 105 107
107 82 81
82 100 83
107 100 82
92 85 108
108 85 89
89 86 109
110 86 88
110 109 86
111 87 112
113 87 111
114 112 87
106 114 87
115 87 113
115 88 87
110 88 115
109 116 89
108 89 116
92 91 90
117 91 92
91 117 102
92 108 116
116 117 92
118 93 94
119 97 93
93 118 119
94 120 118
121 94 95
94 121 122
123 120 94
123 94 122
95 96 121
96 101 124
121 96 124
125 97 119
98 97 125
126 98 125
126 106 98
98 106 100
100 107 99
99 107 105
101 103 127
124 101 127
102 116 104
117 116 102
128 103 104
129 103 130
103 128 130
103 131 127
103 129 131
132 104 116
104 132 128
133 106 126
106 133 114
109 110 134
116 109 134
135 109 134
135 134 109
136 110 115
134 110 135
136 135 110
112 137 111
113 111 138
111 137 138
114 139 112
140 112 139
140 137 112
141 142 113
141 113 138
115 113 142
133 139 114
115 142 136
134 132 116
143 119 118
143 118 144
118 120 145
118 145 144
119 143 125
123 145 120
124 122 121
146 122 147
123 122 148
124 147 122
148 122 146
123 148 149
150 123 149
150 145 123
151 152 124
127 151 124
147 124 152
125 153 126
143 153 125
133 126 153
151 127 131
132 135 128
128 135 130
142 129 136
154 129 142
136 129 130
129 154 131
130 135 136
151 131 152
154 152 131
132 134 135
150 140 133
140 139 133
145 133 153
133 145 150
140 150 137
150 155 137
155 138 137
138 155 147
147 156 138
142 141 138
142 138 157
156 157 138
154 142 157
153 143 144
144 145 153
146 147 149
149 148 146
147 155 149
158 156 147
158 147 152
149 155 150
157 158 152
152 154 157
158 157 156
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444 447 450 453 456 459 462 465 468 471 474 477 480 483 486 489 492 495 498 501 504 507 510 513 516 519 522 525 528 531 534 537 540 543 546 549 552 555 558 561 564 567 570 573 576 579 582 585 588 591 594 597 600 603 606 609 612 615 618 621 624 627 630 633 636 639 642 645 648 651 654 657 660 663 666 669 672 675 678 681 684 687 690 693 696 699 702 705 708 711 714 717 720 723 726 729 732 735 738 741 744 747 750 753 756 759 762 765 768 771 774 777 780 783 786 789 792 795 798 801 804 807 810 813 816 819 822 825 828 831 834 837 840 843 846 849 852 855 858 861 864 867 870 873 876 879 882 885 888 891 894 897 900 903 906 909 912 915 918 921 924 927 930 933 936 939 942 945 948
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,498 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="120" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="236">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
-0.089696 -0.991704 0.092072
-0.678767 -0.732475 0.052485
-0.511516 -0.714234 -0.477726
-0.290551 -0.775650 -0.560310
-0.578109 -0.740472 0.342771
0.113149 -0.867220 -0.484899
0.138219 -0.975902 0.168854
0.815647 -0.573777 0.074162
0.869331 -0.491729 0.049667
-0.688751 -0.667530 -0.282887
-0.698484 -0.705807 0.118142
-0.383266 -0.466702 -0.797055
-0.566037 -0.531127 -0.630481
0.023879 -0.387600 -0.921518
0.098508 -0.788695 0.606842
-0.683307 -0.585510 0.436200
-0.656081 -0.332792 0.677352
-0.341480 -0.347931 0.873118
0.479208 -0.617168 -0.624071
0.912620 0.408647 0.011483
0.996887 0.078655 0.005492
0.713334 -0.476794 0.513636
0.970883 0.011778 -0.239264
0.967272 0.202583 0.152791
-0.562953 -0.654210 -0.505068
-0.655413 -0.734351 0.176528
-0.357926 -0.230154 -0.904941
-0.290450 0.036761 -0.956184
0.674297 -0.228445 -0.702236
-0.035610 0.068456 -0.997018
0.320857 0.126639 -0.938623
0.767155 0.404018 -0.498240
0.211715 -0.018397 0.977158
-0.367670 -0.253127 0.894844
-0.480899 -0.243105 0.842399
-0.530583 0.088236 0.843028
-0.304993 -0.141117 0.941842
-0.408884 0.025215 0.912238
0.776479 0.628003 -0.051886
0.569984 0.819308 -0.062066
0.576230 0.817243 0.008573
0.819641 0.572155 0.028767
0.796367 0.398546 0.454929
0.850760 0.032052 0.524576
-0.291516 -0.635154 -0.715260
-0.473073 -0.803430 -0.361529
-0.199872 -0.442334 -0.874295
-0.603917 -0.795305 0.052667
-0.581022 -0.692301 0.427940
-0.315433 -0.393083 0.863706
0.588317 0.495714 -0.638867
0.029496 0.632561 -0.773948
-0.030437 0.812429 -0.582265
0.419522 0.723239 -0.548568
0.224877 0.323178 0.919231
-0.098500 0.334305 0.937304
0.233610 0.411757 0.880842
-0.224376 0.621158 0.750878
0.120111 0.801850 0.585329
-0.156508 0.325263 0.932582
0.053099 0.471827 0.880091
0.581992 0.678756 0.447856
0.294485 0.905268 0.306218
0.411213 0.911058 0.029608
-0.020566 -0.561920 -0.826936
0.217316 -0.194897 -0.956446
0.096619 -0.547079 -0.831486
-0.378859 -0.688102 -0.618855
-0.635574 -0.727013 -0.259802
-0.670658 -0.718930 0.182641
-0.628881 -0.486693 0.606333
-0.262896 -0.232843 0.936306
0.128183 0.027408 0.991372
0.536161 0.518585 0.666033
0.261271 0.929148 -0.261576
0.825040 0.560584 0.071091
0.735502 0.392446 -0.552289
0.606225 -0.104411 -0.788409
0.476707 -0.045370 -0.877891
-0.139703 -0.396576 -0.907310
0.391799 -0.108317 -0.913653
-0.869332 0.317033 -0.379146
-0.910693 -0.370034 -0.183614
-0.682538 0.663880 -0.305622
-0.666647 0.743332 -0.055126
-0.924858 0.102297 0.366297
-0.823924 0.477764 0.304780
-0.735846 0.408824 0.539809
0.020563 0.226311 0.973838
0.633444 0.427172 0.645192
0.313886 0.456446 0.832546
0.677028 0.654919 0.335731
0.713344 0.670086 -0.205245
0.877328 0.356408 -0.321354
0.713178 0.252754 -0.653829
-0.370503 0.135154 -0.918945
0.006542 0.172549 -0.984979
0.203244 0.360204 -0.910464
-0.600221 0.584124 -0.546383
-0.860045 0.509892 -0.018243
-0.882773 0.414913 -0.220359
-0.956235 0.274165 -0.102216
-0.470774 0.881305 -0.040910
-0.711895 0.693592 -0.110161
-0.460729 0.876808 -0.137614
-0.398436 0.899811 -0.177733
-0.440562 0.706264 0.554163
-0.795438 0.555348 -0.242624
-0.206093 0.875000 0.438065
-0.795656 0.605214 0.025437
-0.633992 0.732689 -0.247429
0.463322 0.614436 -0.638593
-0.583051 0.759262 -0.289090
-0.072469 0.903271 -0.422907
-0.339595 0.692203 -0.636812
-0.944532 0.012440 -0.328184
-0.809071 0.559171 -0.180917
-0.974744 0.017859 -0.222611
-0.913790 0.379899 -0.143755
-0.814231 0.565792 -0.130028
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
0.033384 -0.133430 0.046929
0.030906 -0.131724 0.046719
0.031547 -0.132250 0.045774
0.033132 -0.133203 0.045935
0.032556 -0.132318 0.051070
0.033701 -0.133297 0.045882
0.033290 -0.133002 0.048849
0.034730 -0.132038 0.048507
0.035028 -0.132689 0.046251
0.029985 -0.130611 0.045603
0.029923 -0.130544 0.047012
0.030553 -0.130215 0.044688
0.030091 -0.130211 0.045145
0.034343 -0.130799 0.044425
0.033591 -0.132680 0.051344
0.029788 -0.129707 0.049626
0.030514 -0.130069 0.050694
0.033123 -0.131996 0.051645
0.034661 -0.132731 0.045510
0.034600 -0.130472 0.048188
0.035137 -0.130914 0.049886
0.034478 -0.132063 0.051550
0.035219 -0.131331 0.045492
0.034999 -0.130567 0.046674
0.028352 -0.128582 0.045321
0.026151 -0.127343 0.048065
0.029851 -0.129287 0.044698
0.030905 -0.129261 0.044227
0.034822 -0.131879 0.044982
0.032012 -0.129361 0.044005
0.033341 -0.129915 0.044109
0.034683 -0.130225 0.044910
0.034338 -0.130663 0.051907
0.026589 -0.126486 0.049550
0.029500 -0.128792 0.050212
0.030364 -0.128927 0.050812
0.031311 -0.130396 0.051128
0.031157 -0.129392 0.051284
0.034498 -0.129552 0.049628
0.033194 -0.128941 0.047808
0.033488 -0.128983 0.046086
0.034782 -0.130065 0.046387
0.034630 -0.130218 0.051473
0.034831 -0.130902 0.051545
0.026191 -0.126102 0.043915
0.023801 -0.124851 0.044249
0.028618 -0.128265 0.044723
0.022455 -0.124133 0.047608
0.021730 -0.123323 0.048203
0.020694 -0.121411 0.049291
0.029354 -0.127576 0.044609
0.030401 -0.128480 0.044928
0.031404 -0.128384 0.044599
0.033310 -0.129100 0.044366
0.033776 -0.129639 0.051820
0.029290 -0.127964 0.050020
0.028822 -0.127000 0.049700
0.031092 -0.128065 0.050751
0.029792 -0.127710 0.049828
0.031725 -0.128808 0.051394
0.032696 -0.128939 0.051582
0.034277 -0.129547 0.051377
0.032701 -0.128462 0.051039
0.029924 -0.127448 0.048745
0.024440 -0.124325 0.042895
0.027768 -0.126547 0.044091
0.020997 -0.120911 0.040011
0.020002 -0.121340 0.040567
0.017999 -0.120751 0.042263
0.017661 -0.121020 0.046200
0.018003 -0.119767 0.048821
0.019078 -0.119467 0.049694
0.022052 -0.120962 0.049501
0.023217 -0.121677 0.049451
0.030528 -0.128046 0.046048
0.023749 -0.121178 0.044723
0.025445 -0.123350 0.043461
0.022709 -0.121271 0.041053
0.025142 -0.123962 0.042868
0.020213 -0.119994 0.039516
0.021345 -0.119317 0.039583
0.018440 -0.119941 0.040670
0.016517 -0.119801 0.044385
0.017325 -0.119998 0.042567
0.016458 -0.119393 0.046474
0.016657 -0.119386 0.047116
0.017253 -0.119041 0.048201
0.018130 -0.118333 0.049431
0.019740 -0.118771 0.049771
0.022064 -0.120211 0.049293
0.020539 -0.117974 0.049287
0.021276 -0.117629 0.048342
0.021669 -0.117220 0.041519
0.023495 -0.120827 0.042094
0.022097 -0.118948 0.040147
0.019631 -0.118983 0.039364
0.020476 -0.119261 0.039364
0.020730 -0.118559 0.039505
0.019863 -0.118184 0.039927
0.020261 -0.117256 0.041229
0.019951 -0.118038 0.044262
0.020279 -0.117730 0.043343
0.018733 -0.119179 0.044518
0.019406 -0.118800 0.044248
0.018583 -0.119328 0.045342
0.018057 -0.118925 0.047232
0.018517 -0.117422 0.049057
0.019428 -0.118141 0.046511
0.019499 -0.116860 0.048670
0.019665 -0.116296 0.047604
0.020246 -0.116158 0.043152
0.021377 -0.117952 0.040138
0.020539 -0.116478 0.041844
0.020526 -0.116995 0.040868
0.020226 -0.117217 0.040365
0.020110 -0.117601 0.043979
0.019497 -0.118362 0.044610
0.019880 -0.117122 0.044489
0.019861 -0.118019 0.044910
0.019309 -0.118838 0.044923
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
2 3 0
4 1 0
3 5 0
4 0 6
0 7 6
0 8 7
0 5 8
1 9 2
10 1 4
1 10 9
11 2 12
3 2 13
13 2 11
12 2 9
13 5 3
6 14 4
4 15 10
15 4 16
16 4 17
4 14 17
13 18 5
5 18 8
14 6 7
19 7 8
19 20 7
21 7 20
21 14 7
8 18 22
23 8 22
19 8 23
24 12 9
9 10 25
25 24 9
10 15 25
12 26 11
27 11 26
13 11 27
26 12 24
13 28 18
13 29 30
13 27 29
30 31 13
28 13 31
21 32 14
14 32 17
33 25 15
15 34 33
15 16 35
35 34 15
16 36 37
35 16 37
16 17 36
17 32 36
18 28 22
19 38 20
39 38 19
40 19 41
40 39 19
19 23 41
20 42 43
38 42 20
21 20 43
32 21 43
28 31 22
41 22 31
22 41 23
44 24 45
24 25 45
24 46 26
24 44 46
47 45 25
47 25 48
49 25 33
49 48 25
26 50 51
50 26 46
26 51 27
29 27 52
52 27 51
53 30 29
52 53 29
53 31 30
31 40 41
40 31 53
54 36 32
32 42 54
42 32 43
34 55 33
33 56 49
55 56 33
34 35 55
35 37 57
35 57 58
55 35 58
59 37 36
59 36 60
60 36 54
59 57 37
61 42 38
38 62 61
38 39 62
63 39 40
62 39 63
63 40 53
42 61 54
44 45 64
65 46 44
64 65 44
66 45 67
64 45 66
68 67 45
68 45 47
46 65 50
47 48 69
47 69 68
69 48 70
70 48 49
71 70 49
72 71 49
73 72 49
49 56 73
50 74 51
75 73 50
50 73 63
63 74 50
76 75 50
50 65 76
74 52 51
53 52 63
52 74 63
61 60 54
55 58 56
63 73 56
63 56 58
59 62 57
62 58 57
58 62 63
59 60 62
60 61 62
77 64 66
64 77 78
64 78 65
65 78 76
79 66 67
80 66 79
80 77 66
67 68 81
79 67 81
82 68 69
82 83 68
81 68 83
84 82 69
69 70 85
84 69 85
86 70 87
70 86 85
70 71 87
88 87 71
88 71 72
72 73 89
89 90 72
90 88 72
75 89 73
91 89 75
91 75 92
76 93 75
75 93 92
76 78 77
77 93 76
93 77 94
94 77 80
95 79 81
79 95 96
96 80 79
97 80 96
94 80 97
98 81 99
100 101 81
95 81 98
81 83 102
99 81 101
103 81 102
81 103 100
84 83 82
84 104 83
83 104 102
85 105 84
84 105 104
85 86 105
86 87 105
106 87 88
87 107 105
87 106 107
88 90 106
90 89 91
90 91 108
106 90 108
109 108 91
91 110 109
92 110 91
94 111 92
110 92 112
92 93 94
113 92 111
92 113 112
111 94 97
98 96 95
98 114 96
114 97 96
114 111 97
114 98 99
99 101 112
113 99 112
99 113 114
100 115 101
116 100 103
100 117 115
117 100 118
116 118 100
101 110 112
110 101 115
103 102 104
104 119 103
116 103 119
104 105 107
119 104 107
107 106 108
107 108 109
118 107 109
116 119 107
116 107 118
117 109 110
118 109 117
117 110 115
111 114 113
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444 447 450 453 456 459 462 465 468 471 474 477 480 483 486 489 492 495 498 501 504 507 510 513 516 519 522 525 528 531 534 537 540 543 546 549 552 555 558 561 564 567 570 573 576 579 582 585 588 591 594 597 600 603 606 609 612 615 618 621 624 627 630 633 636 639 642 645 648 651 654 657 660 663 666 669 672 675 678 681 684 687 690 693 696 699 702 705 708
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,498 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="120" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="236">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
-0.511516 -0.714234 0.477726
-0.678767 -0.732475 -0.052485
-0.089696 -0.991704 -0.092072
-0.566037 -0.531127 0.630481
-0.383266 -0.466702 0.797055
-0.688751 -0.667530 0.282887
0.023879 -0.387600 0.921518
-0.290551 -0.775650 0.560310
-0.578109 -0.740472 -0.342771
-0.698484 -0.705807 -0.118142
0.113149 -0.867220 0.484899
0.138219 -0.975902 -0.168854
0.815647 -0.573777 -0.074162
0.869331 -0.491729 -0.049667
-0.562953 -0.654210 0.505068
-0.357926 -0.230154 0.904941
-0.290450 0.036761 0.956184
-0.655413 -0.734351 -0.176528
0.479208 -0.617168 0.624071
0.674297 -0.228445 0.702236
0.320857 0.126639 0.938623
-0.035610 0.068456 0.997018
0.767155 0.404018 0.498240
0.098508 -0.788695 -0.606842
-0.683307 -0.585510 -0.436200
-0.656081 -0.332792 -0.677352
-0.341480 -0.347931 -0.873118
0.912620 0.408647 -0.011483
0.996887 0.078655 -0.005492
0.713334 -0.476794 -0.513636
0.970883 0.011778 0.239264
0.967272 0.202583 -0.152791
-0.473073 -0.803430 0.361529
-0.291516 -0.635154 0.715260
-0.199872 -0.442334 0.874295
0.029496 0.632561 0.773948
0.588317 0.495714 0.638867
-0.030437 0.812429 0.582265
-0.367670 -0.253127 -0.894844
-0.603917 -0.795305 -0.052667
-0.581022 -0.692301 -0.427940
-0.315433 -0.393083 -0.863706
0.419522 0.723239 0.548568
0.819641 0.572155 -0.028767
0.576230 0.817243 -0.008573
0.211715 -0.018397 -0.977158
-0.480899 -0.243105 -0.842399
-0.530583 0.088236 -0.843028
-0.408884 0.025215 -0.912238
-0.304993 -0.141117 -0.941842
0.776479 0.628003 0.051886
0.569984 0.819308 0.062066
0.850760 0.032052 -0.524576
0.796367 0.398546 -0.454929
-0.020566 -0.561920 0.826936
-0.378859 -0.688102 0.618855
0.096619 -0.547079 0.831486
-0.635574 -0.727013 0.259802
0.217316 -0.194897 0.956446
0.261271 0.929148 0.261576
0.536161 0.518585 -0.666033
0.825040 0.560584 -0.071091
0.411213 0.911058 -0.029608
0.735502 0.392446 0.552289
-0.098500 0.334305 -0.937304
0.233610 0.411757 -0.880842
-0.670658 -0.718930 -0.182641
-0.628881 -0.486693 -0.606333
-0.262896 -0.232843 -0.936306
0.128183 0.027408 -0.991372
0.224877 0.323178 -0.919231
-0.224376 0.621158 -0.750878
0.120111 0.801850 -0.585329
-0.156508 0.325263 -0.932582
0.053099 0.471827 -0.880091
0.581992 0.678756 -0.447856
0.294485 0.905268 -0.306218
0.606225 -0.104411 0.788409
0.476707 -0.045370 0.877891
-0.869332 0.317033 0.379146
-0.139703 -0.396576 0.907310
0.391799 -0.108317 0.913653
-0.910693 -0.370034 0.183614
-0.682538 0.663880 0.305622
0.633444 0.427172 -0.645192
0.677028 0.654919 -0.335731
0.713344 0.670086 0.205245
0.877328 0.356408 0.321354
-0.666647 0.743332 0.055126
-0.924858 0.102297 -0.366297
-0.735846 0.408824 -0.539809
-0.823924 0.477764 -0.304780
0.020563 0.226311 -0.973838
0.313886 0.456446 -0.832546
0.713178 0.252754 0.653829
-0.860045 0.509892 0.018243
-0.600221 0.584124 0.546383
-0.956235 0.274165 0.102216
-0.882773 0.414913 0.220359
-0.370503 0.135154 0.918945
-0.470774 0.881305 0.040910
-0.711895 0.693592 0.110161
0.006542 0.172549 0.984979
0.203244 0.360204 0.910464
-0.460729 0.876808 0.137614
-0.206093 0.875000 -0.438065
-0.795656 0.605214 -0.025437
-0.633992 0.732689 0.247429
0.463322 0.614436 0.638593
-0.583051 0.759262 0.289090
-0.072469 0.903271 0.422907
-0.398436 0.899811 0.177733
-0.440562 0.706264 -0.554163
-0.795438 0.555348 0.242624
-0.339595 0.692203 0.636812
-0.944532 0.012440 0.328184
-0.809071 0.559171 0.180917
-0.974744 0.017859 0.222611
-0.913790 0.379899 0.143755
-0.814231 0.565792 0.130028
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
0.031547 -0.132250 -0.045774
0.030906 -0.131724 -0.046719
0.033384 -0.133430 -0.046929
0.030091 -0.130211 -0.045145
0.030553 -0.130215 -0.044688
0.029985 -0.130611 -0.045603
0.034343 -0.130799 -0.044425
0.033132 -0.133203 -0.045935
0.032556 -0.132318 -0.051070
0.029923 -0.130544 -0.047012
0.033701 -0.133297 -0.045882
0.033290 -0.133002 -0.048849
0.034730 -0.132038 -0.048507
0.035028 -0.132689 -0.046251
0.028352 -0.128582 -0.045321
0.029851 -0.129287 -0.044698
0.030905 -0.129261 -0.044227
0.026151 -0.127343 -0.048065
0.034661 -0.132731 -0.045510
0.034822 -0.131879 -0.044982
0.033341 -0.129915 -0.044109
0.032012 -0.129361 -0.044005
0.034683 -0.130225 -0.044910
0.033591 -0.132680 -0.051344
0.029788 -0.129707 -0.049626
0.030514 -0.130069 -0.050694
0.033123 -0.131996 -0.051645
0.034600 -0.130472 -0.048188
0.035137 -0.130914 -0.049886
0.034478 -0.132063 -0.051550
0.035219 -0.131331 -0.045492
0.034999 -0.130567 -0.046674
0.023801 -0.124851 -0.044249
0.026191 -0.126102 -0.043915
0.028618 -0.128265 -0.044723
0.030401 -0.128480 -0.044928
0.029354 -0.127576 -0.044609
0.031404 -0.128384 -0.044599
0.026589 -0.126486 -0.049550
0.022455 -0.124133 -0.047608
0.021730 -0.123323 -0.048203
0.020694 -0.121411 -0.049291
0.033310 -0.129100 -0.044366
0.034782 -0.130065 -0.046387
0.033488 -0.128983 -0.046086
0.034338 -0.130663 -0.051907
0.029500 -0.128792 -0.050212
0.030364 -0.128927 -0.050812
0.031157 -0.129392 -0.051284
0.031311 -0.130396 -0.051128
0.034498 -0.129552 -0.049628
0.033194 -0.128941 -0.047808
0.034831 -0.130902 -0.051545
0.034630 -0.130218 -0.051473
0.024440 -0.124325 -0.042895
0.020002 -0.121340 -0.040567
0.020997 -0.120911 -0.040011
0.017999 -0.120751 -0.042263
0.027768 -0.126547 -0.044091
0.030528 -0.128046 -0.046048
0.023217 -0.121677 -0.049451
0.023749 -0.121178 -0.044723
0.029924 -0.127448 -0.048745
0.025445 -0.123350 -0.043461
0.029290 -0.127964 -0.050020
0.028822 -0.127000 -0.049700
0.017661 -0.121020 -0.046200
0.018003 -0.119767 -0.048821
0.019078 -0.119467 -0.049694
0.022052 -0.120962 -0.049501
0.033776 -0.129639 -0.051820
0.031092 -0.128065 -0.050751
0.029792 -0.127710 -0.049828
0.031725 -0.128808 -0.051394
0.032696 -0.128939 -0.051582
0.034277 -0.129547 -0.051377
0.032701 -0.128462 -0.051039
0.022709 -0.121271 -0.041053
0.025142 -0.123962 -0.042868
0.018440 -0.119941 -0.040670
0.020213 -0.119994 -0.039516
0.021345 -0.119317 -0.039583
0.016517 -0.119801 -0.044385
0.017325 -0.119998 -0.042567
0.022064 -0.120211 -0.049293
0.021276 -0.117629 -0.048342
0.021669 -0.117220 -0.041519
0.023495 -0.120827 -0.042094
0.016458 -0.119393 -0.046474
0.016657 -0.119386 -0.047116
0.018130 -0.118333 -0.049431
0.017253 -0.119041 -0.048201
0.019740 -0.118771 -0.049771
0.020539 -0.117974 -0.049287
0.022097 -0.118948 -0.040147
0.020261 -0.117256 -0.041229
0.019863 -0.118184 -0.039927
0.020279 -0.117730 -0.043343
0.019951 -0.118038 -0.044262
0.019631 -0.118983 -0.039364
0.018733 -0.119179 -0.044518
0.019406 -0.118800 -0.044248
0.020476 -0.119261 -0.039364
0.020730 -0.118559 -0.039505
0.018583 -0.119328 -0.045342
0.019499 -0.116860 -0.048670
0.019665 -0.116296 -0.047604
0.020246 -0.116158 -0.043152
0.021377 -0.117952 -0.040138
0.020539 -0.116478 -0.041844
0.020526 -0.116995 -0.040868
0.018057 -0.118925 -0.047232
0.018517 -0.117422 -0.049057
0.019428 -0.118141 -0.046511
0.020226 -0.117217 -0.040365
0.020110 -0.117601 -0.043979
0.019497 -0.118362 -0.044610
0.019880 -0.117122 -0.044489
0.019861 -0.118019 -0.044910
0.019309 -0.118838 -0.044923
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
3 0 4
0 5 1
6 0 7
4 0 6
2 7 0
5 0 3
2 1 8
8 1 9
5 9 1
2 10 7
11 2 8
11 12 2
12 13 2
13 10 2
14 3 15
4 15 3
5 3 14
15 4 16
16 4 6
17 9 5
5 14 17
7 10 6
10 18 6
18 19 6
20 21 6
21 16 6
6 22 20
22 6 19
8 23 11
9 24 8
25 8 24
26 8 25
26 23 8
17 24 9
13 18 10
12 11 23
13 12 27
12 28 27
28 12 29
12 23 29
30 18 13
30 13 31
31 13 27
32 14 33
32 17 14
15 34 14
34 33 14
35 36 15
34 15 36
16 35 15
37 16 21
35 16 37
24 17 38
17 32 39
40 17 39
38 17 41
17 40 41
30 19 18
30 22 19
21 20 42
20 22 42
21 42 37
43 44 22
22 30 43
42 22 44
23 45 29
26 45 23
38 46 24
47 25 24
24 46 47
48 49 25
48 25 47
49 26 25
49 45 26
28 50 27
27 50 51
43 27 44
27 51 44
43 31 27
52 53 28
28 53 50
52 28 29
52 29 45
31 43 30
54 32 33
55 32 56
56 32 54
32 55 57
39 32 57
33 34 58
33 58 54
36 58 34
35 59 36
35 37 59
36 60 61
62 60 36
36 59 62
36 61 63
63 58 36
62 37 42
62 59 37
38 64 46
41 65 38
38 65 64
66 40 39
57 66 39
67 40 66
41 40 67
41 67 68
41 68 69
41 69 60
60 65 41
42 44 62
44 51 62
45 49 70
70 53 45
52 45 53
64 47 46
71 48 47
72 71 47
72 47 64
48 71 73
49 48 73
74 49 73
70 49 74
50 53 75
75 76 50
76 51 50
62 51 76
70 75 53
56 54 77
78 77 54
58 78 54
79 57 55
79 55 80
55 56 80
80 56 81
56 77 81
66 57 82
57 83 82
83 57 79
63 78 58
84 60 69
65 60 62
60 84 61
61 84 85
86 61 85
61 87 63
86 87 61
62 76 72
72 65 62
77 78 63
63 87 77
65 72 64
66 82 88
89 67 66
89 66 88
90 67 91
89 91 67
90 68 67
68 90 92
69 68 92
69 93 84
69 92 93
70 74 75
71 76 73
71 72 76
76 74 73
76 75 74
94 77 87
81 77 94
95 79 96
79 97 98
96 79 99
79 80 99
100 83 79
97 79 95
100 79 101
98 101 79
102 99 80
80 81 102
102 81 103
103 81 94
82 83 88
83 104 88
100 104 83
85 84 93
105 85 93
85 105 106
106 107 85
85 107 86
86 108 94
109 86 107
94 87 86
108 86 110
109 110 86
88 111 89
104 111 88
111 91 89
92 90 112
111 90 91
111 113 90
113 112 90
112 93 92
105 93 112
103 94 108
109 97 95
109 95 110
114 110 95
95 96 114
99 102 96
102 114 96
97 115 98
109 107 97
115 97 107
101 98 116
115 117 98
118 98 117
98 118 116
104 100 101
101 119 104
119 101 116
102 103 114
103 108 114
113 111 104
113 104 119
106 105 113
105 112 113
107 106 117
106 113 118
117 106 118
115 107 117
110 114 108
113 119 116
118 113 116
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444 447 450 453 456 459 462 465 468 471 474 477 480 483 486 489 492 495 498 501 504 507 510 513 516 519 522 525 528 531 534 537 540 543 546 549 552 555 558 561 564 567 570 573 576 579 582 585 588 591 594 597 600 603 606 609 612 615 618 621 624 627 630 633 636 639 642 645 648 651 654 657 660 663 666 669 672 675 678 681 684 687 690 693 696 699 702 705 708
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,566 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="137" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="270">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
-0.200079 -0.374467 -0.905397
0.145013 -0.243089 -0.959103
-0.010725 -0.512819 -0.858429
-0.469645 -0.416352 -0.778515
0.020614 -0.005991 -0.999770
-0.235307 -0.204963 -0.950064
0.541930 -0.544645 -0.640058
0.648075 0.457977 -0.608487
0.897174 -0.015783 -0.441394
-0.525903 -0.626268 -0.575512
-0.181907 -0.939706 -0.289590
0.481676 -0.874666 0.054297
-0.827824 -0.560931 0.008001
-0.786406 -0.476822 -0.392691
-0.048902 0.652865 -0.755894
-0.299317 0.418511 -0.857472
0.316671 0.844111 -0.432662
0.161236 0.692562 -0.703108
-0.279310 -0.331937 -0.901001
0.184465 -0.141882 -0.972544
0.877742 -0.448693 -0.168057
0.784476 0.619178 -0.034863
0.988706 0.073502 0.130604
-0.664370 -0.746178 -0.042789
-0.259746 -0.959024 0.113154
0.865042 -0.431563 0.255844
0.535628 -0.839125 0.094722
0.016260 -0.984672 0.173658
-0.890502 -0.451704 0.054495
-0.871103 -0.487760 -0.057177
-0.638751 -0.571714 -0.514917
-0.304439 -0.366779 -0.879085
-0.883263 -0.438734 0.165403
0.503599 0.863926 -0.004426
0.592825 0.790447 -0.154118
0.770310 0.260103 -0.582210
0.211048 -0.159029 -0.964453
0.809940 0.585714 0.030613
0.980350 -0.187729 0.060597
-0.742702 -0.667698 0.050722
-0.470572 -0.866354 0.167311
0.871958 -0.489573 0.002747
0.581749 -0.794896 0.172362
0.228689 -0.940958 0.249599
-0.185357 -0.979305 0.081264
-0.798924 -0.549216 -0.245117
-0.718762 -0.269582 0.640864
-0.880553 -0.448710 0.152597
-0.134239 -0.463976 -0.875618
-0.648425 -0.561607 -0.513948
-0.813971 -0.560939 -0.150993
0.706866 0.037418 -0.706357
-0.740167 -0.571461 0.354380
-0.938858 -0.291167 0.183758
-0.838957 -0.268199 0.473519
0.544095 0.838835 -0.017818
0.617275 0.423426 0.663085
0.641989 0.766670 0.008177
0.991050 0.133294 0.007291
0.656243 0.729769 0.191787
0.801606 -0.418382 0.427065
0.432910 -0.694637 0.574515
-0.245435 -0.800465 0.546825
0.135556 -0.661513 0.737580
-0.762057 -0.328440 0.558029
-0.441553 -0.015224 0.897106
-0.301910 -0.125529 0.945036
-0.975764 -0.214814 -0.041717
-0.898726 -0.370399 0.234726
0.130657 -0.564069 -0.815325
-0.485515 -0.588389 -0.646586
0.470366 -0.318601 -0.822951
0.363039 -0.211372 -0.907483
-0.825230 -0.469290 -0.314266
0.940338 0.194955 0.278848
0.876176 -0.091949 -0.473140
-0.804008 -0.232787 0.547157
-0.371373 -0.286039 0.883326
-0.910519 -0.176595 0.373858
-0.714922 -0.206154 0.668122
-0.704072 -0.125575 0.698937
0.271640 0.661321 0.699189
0.354833 0.217792 0.909209
0.190717 0.809912 0.554680
0.761787 0.199592 0.616314
0.157179 0.361720 0.918942
0.204837 -0.245609 0.947480
-0.909118 -0.159733 0.384695
-0.455788 -0.248163 0.854793
-0.344293 0.283288 0.895103
-0.037318 -0.096764 0.994607
-0.788806 -0.379673 -0.483358
-0.928623 -0.233540 0.288302
-0.985747 0.117975 0.119934
-0.833691 0.529107 -0.158132
-0.977564 -0.072447 0.197787
-0.892141 0.364578 -0.266772
-0.920264 -0.234939 0.312918
-0.364708 -0.566470 -0.738986
0.072600 -0.509010 -0.857694
0.386742 -0.218700 -0.895880
0.668323 -0.298358 -0.681415
0.975524 0.090969 -0.200194
0.416409 0.088545 0.904855
0.837800 0.282274 0.467346
-0.416865 -0.076093 0.905778
-0.291704 0.150400 0.944610
0.174110 0.145493 0.973919
-0.927646 0.312259 0.204862
-0.708360 -0.004637 0.705836
-0.111048 -0.051963 0.992456
-0.700584 -0.150543 -0.697509
-0.733716 0.668196 0.123186
-0.194244 0.969122 -0.151895
-0.714223 0.260335 -0.649701
-0.530873 0.769201 -0.355673
-0.310431 -0.297597 -0.902812
-0.111443 -0.029653 -0.993328
0.445879 0.419411 -0.790751
0.005782 0.307202 -0.951627
0.746449 0.002703 -0.665437
0.787804 0.566807 -0.241029
0.234214 0.509775 0.827812
0.619571 0.687671 0.378470
0.742795 0.666361 0.064948
-0.468979 0.240997 0.849693
-0.132503 0.365550 0.921312
-0.473259 0.083406 -0.876966
-0.194491 0.973297 -0.121928
-0.364471 0.778065 0.511640
-0.314240 0.931314 -0.184139
0.422042 0.906073 -0.030198
0.150152 0.877455 -0.455551
-0.386403 0.388286 -0.836616
-0.173413 0.717276 -0.674865
0.012641 0.940852 0.338581
0.385873 0.905718 0.175435
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
0.015775 -0.116212 0.040419
0.017964 -0.115112 0.038993
0.017104 -0.118801 0.040698
0.012575 -0.116619 0.040680
0.016220 -0.113480 0.038647
0.012883 -0.113091 0.039166
0.018001 -0.117695 0.040090
0.018411 -0.113550 0.039467
0.019205 -0.115383 0.040075
0.013766 -0.118370 0.041032
0.015253 -0.119120 0.041025
0.017521 -0.118845 0.041714
0.013068 -0.117739 0.041662
0.008726 -0.109109 0.040509
0.014445 -0.112588 0.038843
0.013759 -0.112848 0.038864
0.016335 -0.112182 0.039608
0.014551 -0.112054 0.039768
0.009335 -0.106533 0.038169
0.010289 -0.106414 0.038156
0.018898 -0.117153 0.040767
0.018591 -0.113437 0.041783
0.019333 -0.115213 0.042131
0.013584 -0.118333 0.041684
0.014899 -0.119126 0.042502
0.018888 -0.116730 0.042743
0.017059 -0.117859 0.044672
0.014928 -0.118401 0.044815
0.013067 -0.117364 0.042349
0.004112 -0.102624 0.041538
0.002863 -0.097950 0.037875
0.007264 -0.101823 0.037071
0.012696 -0.116797 0.044479
0.016820 -0.112096 0.041441
0.015110 -0.111486 0.041543
0.012172 -0.107777 0.038878
0.010169 -0.103958 0.037439
0.018068 -0.113276 0.044020
0.018569 -0.115656 0.044412
0.013379 -0.118239 0.042493
0.013915 -0.118081 0.044722
0.018764 -0.116366 0.046591
0.017117 -0.117938 0.047375
0.016106 -0.118234 0.047634
0.014877 -0.118458 0.045983
0.002244 -0.098009 0.038969
0.006262 -0.104716 0.044079
0.002044 -0.097902 0.041162
0.005466 -0.097050 0.035345
0.000493 -0.094776 0.036094
0.000042 -0.094687 0.037366
0.009257 -0.101610 0.037059
0.013968 -0.117317 0.047729
0.012585 -0.114317 0.046657
0.012198 -0.112799 0.046861
0.017203 -0.112625 0.043904
0.009681 -0.102042 0.045860
0.014819 -0.110719 0.045573
0.019136 -0.114417 0.046403
0.017463 -0.112269 0.048262
0.018247 -0.116248 0.048712
0.017633 -0.117004 0.048531
0.015166 -0.118092 0.048143
0.016036 -0.117950 0.048238
-0.000972 -0.090814 0.042414
0.009651 -0.107251 0.046526
0.002327 -0.092522 0.044097
-0.002322 -0.090140 0.038480
-0.001579 -0.091279 0.040130
0.003417 -0.091494 0.032172
0.000515 -0.093337 0.035177
0.006105 -0.093147 0.033949
0.007212 -0.096587 0.035468
-0.000558 -0.093474 0.036839
0.007640 -0.094211 0.042567
0.007693 -0.091829 0.035175
0.012643 -0.114400 0.047224
0.015041 -0.117052 0.048676
0.012401 -0.113087 0.047330
0.012135 -0.111749 0.047295
0.012501 -0.111893 0.047704
0.013683 -0.110335 0.047090
0.006777 -0.095011 0.044629
0.015307 -0.110743 0.047795
0.018690 -0.114321 0.048665
0.016800 -0.112654 0.048922
0.017713 -0.115804 0.049269
-0.001706 -0.089035 0.042147
0.001034 -0.090155 0.044354
0.012451 -0.110961 0.047712
0.004729 -0.091802 0.044466
-0.000546 -0.091485 0.034050
-0.002245 -0.090037 0.039999
-0.002037 -0.087042 0.041164
-0.002147 -0.087768 0.039251
-0.002129 -0.088490 0.040638
-0.001705 -0.087510 0.035879
-0.001739 -0.089451 0.041148
0.001125 -0.090478 0.031652
0.003112 -0.090636 0.031389
0.004974 -0.088174 0.030971
0.006875 -0.090026 0.033016
0.007731 -0.086612 0.034098
0.005655 -0.091526 0.044355
0.006116 -0.085388 0.043655
0.013267 -0.113701 0.047975
0.013594 -0.111910 0.048380
0.017896 -0.114252 0.049258
-0.001534 -0.085783 0.042384
-0.001111 -0.087389 0.043515
0.002087 -0.088629 0.045054
0.000695 -0.089577 0.031570
-0.000306 -0.084109 0.043322
0.005782 -0.083612 0.034675
0.000076 -0.087259 0.032333
0.001109 -0.085663 0.032572
0.001712 -0.089581 0.031011
0.002581 -0.088828 0.030605
0.005942 -0.085599 0.031620
0.004394 -0.086368 0.030926
0.006500 -0.087790 0.031795
0.007129 -0.084844 0.033918
0.003513 -0.083542 0.044499
0.005149 -0.083614 0.043458
0.006630 -0.084295 0.036356
0.000230 -0.085293 0.044427
0.002564 -0.083816 0.044649
0.001426 -0.088693 0.031029
0.002827 -0.082567 0.042154
0.001076 -0.083175 0.043646
0.003969 -0.084338 0.033043
0.005016 -0.083089 0.038220
0.005062 -0.084123 0.032882
0.001089 -0.086915 0.031775
0.003836 -0.084749 0.031965
0.002746 -0.082627 0.043491
0.003949 -0.082713 0.042545
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
2 3 0
1 0 4
0 5 4
0 3 5
2 1 6
7 1 4
7 8 1
6 1 8
2 9 3
2 10 9
10 2 11
11 2 6
3 9 12
13 3 12
5 3 13
14 4 15
4 14 16
15 4 5
4 16 7
5 17 15
13 18 5
19 5 18
19 17 5
6 8 20
11 6 20
21 8 7
21 7 16
8 21 22
22 20 8
12 9 23
23 9 10
23 10 24
24 10 11
25 11 20
25 26 11
27 11 26
24 11 27
28 12 23
28 13 12
13 29 30
13 31 18
31 13 30
32 13 28
13 32 29
15 17 14
16 14 17
33 21 16
34 16 17
16 34 33
34 17 35
19 35 17
18 36 19
36 18 31
19 36 35
20 22 25
33 37 21
22 21 37
38 25 22
38 22 37
23 39 28
23 24 39
40 39 24
24 27 40
38 26 25
38 41 26
42 26 41
43 44 26
42 43 26
26 44 27
44 40 27
28 39 32
30 29 45
46 47 29
47 45 29
46 29 32
31 30 48
48 30 49
30 45 50
49 30 50
31 48 51
51 36 31
52 53 32
39 52 32
54 46 32
32 53 54
55 33 34
33 55 37
34 56 57
56 34 35
55 34 57
56 35 51
35 36 51
37 58 38
55 59 37
58 37 59
38 58 41
52 39 40
44 52 40
58 60 41
42 41 60
61 43 42
61 42 60
44 43 62
43 61 63
62 43 63
52 44 62
45 47 50
47 46 64
65 56 46
66 64 46
46 56 66
65 46 54
50 47 67
47 68 67
68 47 64
69 48 70
48 49 70
48 69 71
48 71 72
51 48 72
73 70 49
49 50 73
73 50 67
74 51 75
51 74 56
75 51 72
76 53 52
76 52 77
52 62 77
78 53 76
53 78 54
79 65 54
54 78 80
79 54 80
59 55 57
81 57 56
82 66 56
65 81 56
82 56 74
83 59 57
57 81 83
84 60 58
58 59 84
59 85 84
85 59 83
84 86 60
86 61 60
86 63 61
62 63 77
63 86 77
68 64 87
87 64 88
88 64 66
79 89 65
89 81 65
82 90 66
66 90 88
73 67 91
68 92 67
93 94 67
95 67 92
95 93 67
96 67 94
96 91 67
87 97 68
97 92 68
69 70 98
98 99 69
69 99 100
101 69 100
101 71 69
70 73 91
91 98 70
72 71 75
75 71 101
74 75 102
82 74 103
104 103 74
102 104 74
102 75 101
80 78 76
76 77 105
80 76 105
105 77 86
79 80 89
106 89 80
106 80 105
89 83 81
90 82 103
89 106 83
83 106 85
84 85 107
86 84 107
85 105 107
85 106 105
105 86 107
95 87 93
87 108 93
95 97 87
88 109 87
87 109 108
90 110 88
110 109 88
103 110 90
98 91 111
111 91 96
92 97 95
94 93 108
108 112 94
113 96 94
112 113 94
114 111 96
113 115 96
114 96 115
98 111 116
116 99 98
117 99 116
100 99 117
118 100 119
120 101 100
119 100 117
100 118 120
120 102 101
121 104 102
120 121 102
103 104 122
110 103 122
104 123 122
104 124 123
124 104 121
108 109 112
112 109 125
110 125 109
125 110 126
110 122 126
111 114 127
116 111 127
113 112 128
125 129 112
112 129 128
113 130 115
131 121 113
121 132 113
128 131 113
130 113 132
133 114 115
127 114 133
133 115 134
130 134 115
116 127 117
133 117 127
117 133 119
134 118 119
118 134 132
120 118 121
132 121 118
134 119 133
121 131 124
122 129 126
129 122 135
122 136 135
136 122 123
124 136 123
136 124 131
125 126 129
135 128 129
135 136 128
128 136 131
130 132 134
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444 447 450 453 456 459 462 465 468 471 474 477 480 483 486 489 492 495 498 501 504 507 510 513 516 519 522 525 528 531 534 537 540 543 546 549 552 555 558 561 564 567 570 573 576 579 582 585 588 591 594 597 600 603 606 609 612 615 618 621 624 627 630 633 636 639 642 645 648 651 654 657 660 663 666 669 672 675 678 681 684 687 690 693 696 699 702 705 708 711 714 717 720 723 726 729 732 735 738 741 744 747 750 753 756 759 762 765 768 771 774 777 780 783 786 789 792 795 798 801 804 807 810
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,566 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="137" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="270">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
-0.010725 -0.512819 0.858429
0.145013 -0.243089 0.959103
-0.200079 -0.374467 0.905397
-0.469645 -0.416352 0.778515
-0.525903 -0.626268 0.575512
-0.181907 -0.939706 0.289590
0.541930 -0.544645 0.640058
0.481676 -0.874666 -0.054297
0.020614 -0.005991 0.999770
0.648075 0.457977 0.608487
0.897174 -0.015783 0.441394
-0.235307 -0.204963 0.950064
-0.827824 -0.560931 -0.008001
-0.786406 -0.476822 0.392691
-0.664370 -0.746178 0.042789
-0.259746 -0.959024 -0.113154
0.877742 -0.448693 0.168057
0.865042 -0.431563 -0.255844
0.535628 -0.839125 -0.094722
0.016260 -0.984672 -0.173658
-0.299317 0.418511 0.857472
-0.048902 0.652865 0.755894
0.316671 0.844111 0.432662
0.784476 0.619178 0.034863
0.988706 0.073502 -0.130604
0.161236 0.692562 0.703108
-0.279310 -0.331937 0.901001
0.184465 -0.141882 0.972544
-0.890502 -0.451704 -0.054495
-0.638751 -0.571714 0.514917
-0.871103 -0.487760 0.057177
-0.304439 -0.366779 0.879085
-0.883263 -0.438734 -0.165403
-0.742702 -0.667698 -0.050722
-0.470572 -0.866354 -0.167311
0.980350 -0.187729 -0.060597
0.871958 -0.489573 -0.002747
0.581749 -0.794896 -0.172362
-0.185357 -0.979305 -0.081264
0.228689 -0.940958 -0.249599
0.503599 0.863926 0.004426
0.592825 0.790447 0.154118
0.809940 0.585714 -0.030613
0.770310 0.260103 0.582210
0.211048 -0.159029 0.964453
-0.134239 -0.463976 0.875618
-0.648425 -0.561607 0.513948
-0.798924 -0.549216 0.245117
-0.813971 -0.560939 0.150993
-0.880553 -0.448710 -0.152597
-0.718762 -0.269582 -0.640864
0.706866 0.037418 0.706357
-0.938858 -0.291167 -0.183758
-0.740167 -0.571461 -0.354380
-0.838957 -0.268199 -0.473519
0.991050 0.133294 -0.007291
0.801606 -0.418382 -0.427065
0.432910 -0.694637 -0.574515
-0.245435 -0.800465 -0.546825
0.135556 -0.661513 -0.737580
0.544095 0.838835 0.017818
0.641989 0.766670 -0.008177
0.617275 0.423426 -0.663085
0.656243 0.729769 -0.191787
-0.485515 -0.588389 0.646586
0.130657 -0.564069 0.815325
0.470366 -0.318601 0.822951
0.363039 -0.211372 0.907483
-0.825230 -0.469290 0.314266
-0.975764 -0.214814 0.041717
-0.898726 -0.370399 -0.234726
-0.762057 -0.328440 -0.558029
-0.441553 -0.015224 -0.897106
-0.301910 -0.125529 -0.945036
0.876176 -0.091949 0.473140
0.940338 0.194955 -0.278848
-0.804008 -0.232787 -0.547157
-0.910519 -0.176595 -0.373858
-0.371373 -0.286039 -0.883326
-0.714922 -0.206154 -0.668122
-0.704072 -0.125575 -0.698937
0.761787 0.199592 -0.616314
0.204837 -0.245609 -0.947480
0.271640 0.661321 -0.699189
0.190717 0.809912 -0.554680
0.354833 0.217792 -0.909209
0.157179 0.361720 -0.918942
-0.364708 -0.566470 0.738986
-0.788806 -0.379673 0.483358
0.072600 -0.509010 0.857694
0.386742 -0.218700 0.895880
0.668323 -0.298358 0.681415
-0.928623 -0.233540 -0.288302
-0.833691 0.529107 0.158132
-0.985747 0.117975 -0.119934
-0.977564 -0.072447 -0.197787
-0.892141 0.364578 0.266772
-0.920264 -0.234939 -0.312918
-0.909118 -0.159733 -0.384695
-0.455788 -0.248163 -0.854793
-0.344293 0.283288 -0.895103
-0.037318 -0.096764 -0.994607
0.975524 0.090969 0.200194
0.416409 0.088545 -0.904855
0.837800 0.282274 -0.467346
-0.416865 -0.076093 -0.905778
-0.291704 0.150400 -0.944610
0.174110 0.145493 -0.973919
-0.700584 -0.150543 0.697509
-0.310431 -0.297597 0.902812
-0.111443 -0.029653 0.993328
0.005782 0.307202 0.951627
0.445879 0.419411 0.790751
0.746449 0.002703 0.665437
-0.733716 0.668196 -0.123186
-0.927646 0.312259 -0.204862
-0.194244 0.969122 0.151895
-0.714223 0.260335 0.649701
-0.530873 0.769201 0.355673
-0.708360 -0.004637 -0.705836
-0.111048 -0.051963 -0.992456
0.787804 0.566807 0.241029
0.234214 0.509775 -0.827812
0.619571 0.687671 -0.378470
0.742795 0.666361 -0.064948
-0.473259 0.083406 0.876966
-0.386403 0.388286 0.836616
-0.173413 0.717276 0.674865
0.150152 0.877455 0.455551
-0.194491 0.973297 0.121928
-0.468979 0.240997 -0.849693
-0.364471 0.778065 -0.511640
-0.314240 0.931314 0.184139
0.422042 0.906073 0.030198
-0.132503 0.365550 -0.921312
0.012641 0.940852 -0.338581
0.385873 0.905718 -0.175435
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
0.017104 -0.118801 -0.040698
0.017964 -0.115112 -0.038993
0.015775 -0.116212 -0.040419
0.012575 -0.116619 -0.040680
0.013766 -0.118370 -0.041032
0.015253 -0.119120 -0.041025
0.018001 -0.117695 -0.040090
0.017521 -0.118845 -0.041714
0.016220 -0.113480 -0.038647
0.018411 -0.113550 -0.039467
0.019205 -0.115383 -0.040075
0.012883 -0.113091 -0.039166
0.013068 -0.117739 -0.041662
0.008726 -0.109109 -0.040509
0.013584 -0.118333 -0.041684
0.014899 -0.119126 -0.042502
0.018898 -0.117153 -0.040767
0.018888 -0.116730 -0.042743
0.017059 -0.117859 -0.044672
0.014928 -0.118401 -0.044815
0.013759 -0.112848 -0.038864
0.014445 -0.112588 -0.038843
0.016335 -0.112182 -0.039608
0.018591 -0.113437 -0.041783
0.019333 -0.115213 -0.042131
0.014551 -0.112054 -0.039768
0.009335 -0.106533 -0.038169
0.010289 -0.106414 -0.038156
0.013067 -0.117364 -0.042349
0.002863 -0.097950 -0.037875
0.004112 -0.102624 -0.041538
0.007264 -0.101823 -0.037071
0.012696 -0.116797 -0.044479
0.013379 -0.118239 -0.042493
0.013915 -0.118081 -0.044722
0.018569 -0.115656 -0.044412
0.018764 -0.116366 -0.046591
0.017117 -0.117938 -0.047375
0.014877 -0.118458 -0.045983
0.016106 -0.118234 -0.047634
0.016820 -0.112096 -0.041441
0.015110 -0.111486 -0.041543
0.018068 -0.113276 -0.044020
0.012172 -0.107777 -0.038878
0.010169 -0.103958 -0.037439
0.005466 -0.097050 -0.035345
0.000493 -0.094776 -0.036094
0.002244 -0.098009 -0.038969
0.000042 -0.094687 -0.037366
0.002044 -0.097902 -0.041162
0.006262 -0.104716 -0.044079
0.009257 -0.101610 -0.037059
0.012585 -0.114317 -0.046657
0.013968 -0.117317 -0.047729
0.012198 -0.112799 -0.046861
0.019136 -0.114417 -0.046403
0.018247 -0.116248 -0.048712
0.017633 -0.117004 -0.048531
0.015166 -0.118092 -0.048143
0.016036 -0.117950 -0.048238
0.017203 -0.112625 -0.043904
0.014819 -0.110719 -0.045573
0.009681 -0.102042 -0.045860
0.017463 -0.112269 -0.048262
0.000515 -0.093337 -0.035177
0.003417 -0.091494 -0.032172
0.006105 -0.093147 -0.033949
0.007212 -0.096587 -0.035468
-0.000558 -0.093474 -0.036839
-0.002322 -0.090140 -0.038480
-0.001579 -0.091279 -0.040130
-0.000972 -0.090814 -0.042414
0.009651 -0.107251 -0.046526
0.002327 -0.092522 -0.044097
0.007693 -0.091829 -0.035175
0.007640 -0.094211 -0.042567
0.012643 -0.114400 -0.047224
0.012401 -0.113087 -0.047330
0.015041 -0.117052 -0.048676
0.012135 -0.111749 -0.047295
0.012501 -0.111893 -0.047704
0.018690 -0.114321 -0.048665
0.017713 -0.115804 -0.049269
0.013683 -0.110335 -0.047090
0.015307 -0.110743 -0.047795
0.006777 -0.095011 -0.044629
0.016800 -0.112654 -0.048922
0.001125 -0.090478 -0.031652
-0.000546 -0.091485 -0.034050
0.003112 -0.090636 -0.031389
0.004974 -0.088174 -0.030971
0.006875 -0.090026 -0.033016
-0.002245 -0.090037 -0.039999
-0.002147 -0.087768 -0.039251
-0.002037 -0.087042 -0.041164
-0.002129 -0.088490 -0.040638
-0.001705 -0.087510 -0.035879
-0.001739 -0.089451 -0.041148
-0.001706 -0.089035 -0.042147
0.001034 -0.090155 -0.044354
0.012451 -0.110961 -0.047712
0.004729 -0.091802 -0.044466
0.007731 -0.086612 -0.034098
0.005655 -0.091526 -0.044355
0.006116 -0.085388 -0.043655
0.013267 -0.113701 -0.047975
0.013594 -0.111910 -0.048380
0.017896 -0.114252 -0.049258
0.000695 -0.089577 -0.031570
0.001712 -0.089581 -0.031011
0.002581 -0.088828 -0.030605
0.004394 -0.086368 -0.030926
0.005942 -0.085599 -0.031620
0.006500 -0.087790 -0.031795
-0.000306 -0.084109 -0.043322
-0.001534 -0.085783 -0.042384
0.005782 -0.083612 -0.034675
0.000076 -0.087259 -0.032333
0.001109 -0.085663 -0.032572
-0.001111 -0.087389 -0.043515
0.002087 -0.088629 -0.045054
0.007129 -0.084844 -0.033918
0.003513 -0.083542 -0.044499
0.005149 -0.083614 -0.043458
0.006630 -0.084295 -0.036356
0.001426 -0.088693 -0.031029
0.001089 -0.086915 -0.031775
0.003836 -0.084749 -0.031965
0.005062 -0.084123 -0.032882
0.002827 -0.082567 -0.042154
0.000230 -0.085293 -0.044427
0.001076 -0.083175 -0.043646
0.003969 -0.084338 -0.033043
0.005016 -0.083089 -0.038220
0.002564 -0.083816 -0.044649
0.002746 -0.082627 -0.043491
0.003949 -0.082713 -0.042545
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
2 3 0
3 4 0
4 5 0
6 1 0
7 0 5
6 0 7
8 2 1
8 1 9
1 10 9
10 1 6
8 11 2
11 3 2
12 4 3
12 3 13
13 3 11
14 4 12
5 4 14
15 5 14
7 5 15
16 10 6
16 6 7
16 7 17
7 18 17
18 7 19
19 7 15
20 8 21
22 21 8
11 8 20
9 22 8
9 10 23
22 9 23
24 23 10
10 16 24
20 25 11
11 26 13
26 11 27
11 25 27
14 12 28
12 13 28
29 30 13
26 31 13
29 13 31
28 13 32
30 32 13
28 33 14
33 15 14
15 33 34
34 19 15
17 24 16
17 18 35
24 17 35
18 36 35
36 18 37
18 38 39
18 39 37
19 38 18
19 34 38
21 25 20
25 21 22
22 23 40
25 22 41
40 41 22
23 42 40
42 23 24
42 24 35
43 25 41
25 43 27
27 44 26
31 26 44
43 44 27
32 33 28
45 29 31
46 29 45
47 30 29
48 47 29
48 29 46
30 49 50
30 47 49
32 30 50
51 45 31
31 44 51
32 52 53
32 53 33
32 50 54
54 52 32
34 33 53
34 53 38
36 55 35
35 55 42
36 56 55
56 36 37
37 39 57
56 37 57
58 38 53
58 39 38
59 57 39
59 39 58
41 40 60
42 60 40
61 62 41
43 41 62
61 41 60
42 63 60
63 42 55
51 43 62
51 44 43
64 45 65
64 46 45
66 65 45
67 66 45
67 45 51
46 64 68
68 48 46
48 49 47
69 48 68
69 49 48
69 70 49
71 50 49
71 49 70
50 62 72
50 71 73
73 62 50
54 50 72
74 51 75
62 75 51
67 51 74
76 52 77
53 52 76
54 77 52
78 53 76
78 58 53
54 72 79
80 77 54
80 54 79
55 56 81
81 63 55
56 82 81
56 57 82
57 59 82
78 59 58
78 82 59
61 60 63
62 61 83
61 63 84
84 83 61
62 73 85
62 83 72
75 62 85
81 86 63
84 63 86
87 64 65
88 68 64
64 87 88
65 89 87
90 89 65
90 65 91
65 66 91
74 66 67
91 66 74
88 69 68
69 92 70
69 93 94
92 69 95
69 94 95
93 69 96
69 88 96
70 97 98
70 92 97
98 71 70
99 71 98
73 71 99
72 100 79
72 83 100
73 101 85
99 101 73
102 74 75
91 74 102
103 75 85
75 103 104
75 104 102
76 77 80
105 78 76
105 76 80
82 78 105
100 80 79
80 100 106
105 80 106
107 86 81
107 81 82
107 82 105
83 84 100
84 106 100
86 106 84
103 85 101
107 105 86
105 106 86
108 88 87
109 108 87
87 89 109
96 88 108
109 89 110
110 89 90
111 90 112
90 91 113
110 90 111
113 112 90
91 102 113
95 97 92
93 114 115
115 94 93
93 96 116
93 116 114
94 98 95
94 115 98
98 97 95
96 108 117
96 118 116
118 96 117
98 119 99
115 119 98
99 120 101
99 119 120
101 120 103
102 104 121
102 121 113
122 104 103
122 103 120
122 123 104
123 124 104
121 104 124
125 117 108
125 108 109
110 125 109
125 110 126
111 126 110
126 111 127
111 112 127
128 127 112
121 112 113
112 121 128
114 119 115
129 114 116
130 119 114
114 131 130
129 131 114
118 132 116
116 121 133
116 128 121
116 133 129
128 116 132
118 117 126
126 117 125
127 118 126
118 127 132
119 130 120
134 120 130
134 122 120
124 133 121
134 131 122
135 122 131
135 136 122
123 122 136
123 136 124
133 124 136
127 128 132
131 129 135
129 136 135
133 136 129
131 134 130
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444 447 450 453 456 459 462 465 468 471 474 477 480 483 486 489 492 495 498 501 504 507 510 513 516 519 522 525 528 531 534 537 540 543 546 549 552 555 558 561 564 567 570 573 576 579 582 585 588 591 594 597 600 603 606 609 612 615 618 621 624 627 630 633 636 639 642 645 648 651 654 657 660 663 666 669 672 675 678 681 684 687 690 693 696 699 702 705 708 711 714 717 720 723 726 729 732 735 738 741 744 747 750 753 756 759 762 765 768 771 774 777 780 783 786 789 792 795 798 801 804 807 810
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,870 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="212" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="424">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
0.444162 -0.895946 0.000000
0.684901 -0.716352 -0.133230
0.943990 -0.329974 0.000000
0.742867 -0.401784 -0.535461
0.447295 -0.232276 -0.863699
-0.769892 -0.638174 0.000000
-0.443640 -0.896053 0.016525
-0.771975 -0.565318 -0.290636
-0.046853 -0.404187 -0.913476
0.684902 -0.716351 0.133230
0.742868 -0.401778 0.535464
0.447290 -0.232272 0.863702
-0.443640 -0.896053 -0.016525
-0.771975 -0.565318 0.290636
-0.046853 -0.404187 0.913476
0.918152 0.277219 -0.283102
0.897923 0.440152 0.000000
0.918151 0.277222 0.283101
0.490149 0.466971 -0.735997
0.110146 0.340299 -0.933844
-0.963450 -0.257075 0.075337
-0.971114 -0.238617 0.000000
-0.963450 -0.257075 -0.075337
-0.763835 -0.283590 -0.579770
-0.432952 0.142118 -0.890143
-0.934607 -0.331908 0.127855
0.490144 0.466977 0.735996
0.110146 0.340299 0.933844
-0.432952 0.142118 0.890143
-0.763835 -0.283590 0.579770
-0.934607 -0.331908 -0.127855
0.808832 0.438501 -0.391800
0.885865 0.463942 0.000000
0.808832 0.438501 0.391800
0.525385 0.318879 -0.788851
0.151697 0.180298 -0.971844
-0.877602 -0.396947 0.268792
-0.890366 -0.455244 0.000000
-0.877602 -0.396947 -0.268792
0.069222 -0.575832 -0.814633
-0.088624 -0.069828 -0.993614
-0.515955 -0.714016 0.473256
0.525385 0.318879 0.788851
0.151697 0.180298 0.971844
-0.088624 -0.069828 0.993614
0.069223 -0.575831 0.814633
-0.515954 -0.714016 -0.473258
0.906634 0.178494 -0.382302
0.961769 0.273863 0.000000
0.906634 0.178494 0.382302
0.609393 -0.029497 -0.792319
0.299492 -0.175755 -0.937771
-0.873252 -0.404814 0.271213
-0.372606 -0.142237 0.917024
-0.920762 -0.390125 0.000000
-0.873252 -0.404814 -0.271213
-0.372606 -0.142237 -0.917024
0.138832 0.027212 -0.989942
0.109900 -0.255533 -0.960534
0.144987 -0.751471 -0.643638
0.321210 -0.910722 -0.259634
0.657521 -0.229251 -0.717711
0.607969 0.404154 0.683399
0.609393 -0.029497 0.792319
0.299492 -0.175755 0.937771
0.109900 -0.255533 0.960534
0.138832 0.027212 0.989942
0.321212 -0.910721 0.259632
0.144989 -0.751470 0.643639
0.657521 -0.229250 0.717712
0.607968 0.404153 -0.683400
0.933428 0.148368 -0.326648
0.978507 0.206215 0.000000
0.933428 0.148368 0.326648
0.635759 -0.013288 -0.771774
0.276994 -0.216822 -0.936089
-0.689842 0.608580 0.392109
-0.182048 -0.080407 0.979997
-0.893625 0.448814 0.000000
-0.689842 0.608580 -0.392109
-0.182048 -0.080407 -0.979997
-0.247814 0.137306 -0.959028
-0.013415 -0.193928 -0.980924
0.167091 0.769410 -0.616514
-0.241631 -0.744469 -0.622399
-0.514195 -0.518776 -0.682990
-0.132261 -0.882594 -0.451148
0.905953 -0.035163 -0.421916
0.191054 -0.976147 -0.103123
0.738142 0.286261 -0.610902
0.904132 0.138396 0.404218
0.816572 0.577244 0.000000
-0.744596 0.667516 0.000000
-0.527006 0.330416 0.783001
0.635759 -0.013288 0.771774
0.276994 -0.216822 0.936089
-0.013415 -0.193928 0.980924
-0.247814 0.137306 0.959028
0.167091 0.769410 0.616514
-0.514196 -0.518779 0.682987
-0.241630 -0.744469 0.622399
-0.132262 -0.882594 0.451149
0.905953 -0.035167 0.421915
0.738142 0.286261 0.610902
0.191055 -0.976147 0.103127
0.904132 0.138396 -0.404218
-0.527008 0.330417 -0.782999
0.482095 0.796198 -0.365586
0.663763 0.747943 0.000000
0.482095 0.796198 0.365586
0.168085 0.815861 -0.553279
0.035270 0.544804 -0.837822
-0.287828 0.386123 -0.876393
-0.012631 0.919382 -0.393164
-0.318667 0.926786 0.198793
-0.728226 0.374447 0.574000
-0.358784 0.933421 0.000000
-0.492467 0.767232 -0.410890
-0.318665 0.926787 -0.198794
-0.012631 0.919382 0.393164
-0.728228 0.374446 -0.573998
-0.492467 0.767232 0.410890
-0.469195 0.634660 -0.614054
0.139725 0.834491 -0.533012
-0.042569 0.000569 -0.999093
-0.858008 -0.050605 -0.511137
-0.226151 -0.673195 -0.704035
-0.489170 -0.622795 0.610606
-0.922043 -0.159713 0.352603
-0.282807 0.528934 -0.800156
-0.463850 0.492149 -0.736636
0.963097 0.124210 -0.238781
-0.003124 0.118607 -0.992936
-0.554928 -0.810284 -0.188400
0.329815 -0.063004 -0.941941
-0.973709 -0.091069 0.208801
0.886206 -0.065279 0.458669
0.998157 -0.060679 0.000000
-0.711509 0.393680 -0.582041
-0.838854 0.544356 0.000000
-0.949460 0.225493 -0.218354
-0.974249 0.071520 0.213830
-0.711509 0.393680 0.582041
-0.949460 0.225493 0.218354
-0.974249 0.071523 -0.213829
-0.785423 0.113810 0.608406
0.168085 0.815861 0.553279
0.035270 0.544804 0.837822
-0.287828 0.386123 0.876393
-0.469193 0.634660 0.614056
0.139726 0.834493 0.533009
-0.282812 0.528933 0.800154
-0.226150 -0.673195 0.704034
-0.463855 0.492147 0.736634
-0.858008 -0.050604 0.511138
-0.042571 0.000569 0.999093
-0.489167 -0.622794 -0.610609
-0.922043 -0.159709 -0.352604
0.963097 0.124210 0.238781
-0.003124 0.118607 0.992936
0.329819 -0.062998 0.941940
-0.554924 -0.810283 0.188414
-0.973711 -0.091074 -0.208789
0.886206 -0.065279 -0.458669
-0.785421 0.113813 -0.608408
-0.806557 0.238294 0.541000
-0.401058 0.167950 0.900525
-0.806557 0.238294 -0.541000
-0.401050 0.167949 -0.900529
-0.577635 -0.641084 -0.505321
-0.765701 -0.024294 -0.642738
-0.661378 -0.665758 -0.345464
-0.927886 0.223874 -0.298173
-0.636112 -0.098447 -0.765291
-0.656943 -0.749281 -0.083689
0.754599 -0.638609 -0.150859
0.631197 -0.624830 0.459542
0.951007 -0.309168 0.000000
0.631197 -0.624830 -0.459542
-0.723812 0.263292 -0.637788
-0.650890 0.258429 -0.713833
-0.788694 0.614786 0.000000
-0.723812 0.263292 0.637788
-0.650890 0.258429 0.713833
-0.927886 0.223874 0.298173
-0.636112 -0.098447 0.765291
-0.656943 -0.749281 0.083689
-0.765701 -0.024294 0.642738
-0.577635 -0.641084 0.505321
-0.661378 -0.665758 0.345464
0.754599 -0.638609 0.150859
-0.395352 -0.116991 -0.911049
-0.124179 -0.981334 0.146844
0.107565 -0.717024 -0.688699
0.665101 -0.746753 0.000000
-0.124179 -0.981334 -0.146844
0.107565 -0.717024 0.688699
-0.960628 0.277838 0.000000
-0.395352 -0.116991 0.911049
-0.093032 0.164230 -0.982025
-0.004825 -0.087795 -0.996127
0.333879 -0.533801 -0.776905
0.275477 -0.961308 0.000000
0.333879 -0.533801 0.776905
-0.004825 -0.087795 0.996127
-0.693554 -0.306439 -0.651980
-0.749634 -0.661853 0.000000
-0.693554 -0.306439 0.651980
-0.093032 0.164230 0.982025
-0.097518 -0.682709 -0.724154
-0.418708 -0.908121 0.000000
-0.097518 -0.682709 0.724154
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
0.000477 0.007348 0.000000
0.014288 0.014566 -0.008983
0.015190 0.014569 0.000000
0.009619 0.013082 -0.018384
0.002400 0.009881 -0.022961
-0.015475 0.000026 0.000000
-0.015211 -0.000247 -0.005395
-0.015704 -0.000123 -0.015981
-0.011618 0.003802 -0.023095
0.014288 0.014566 0.008983
0.009619 0.013082 0.018384
0.002400 0.009881 0.022961
-0.015211 -0.000247 0.005395
-0.015704 -0.000123 0.015981
-0.011618 0.003802 0.023095
0.014579 0.015903 -0.010789
0.014249 0.016540 0.000000
0.014579 0.015903 0.010789
0.007894 0.015663 -0.017755
-0.000640 0.015071 -0.021586
-0.016862 0.007630 -0.005046
-0.016781 0.007501 0.000000
-0.016862 0.007630 0.005046
-0.017464 0.009400 -0.016318
-0.011001 0.010075 -0.021747
-0.018330 0.008788 -0.009635
0.007894 0.015663 0.017755
-0.000640 0.015071 0.021586
-0.011001 0.010075 0.021747
-0.017464 0.009400 0.016318
-0.018330 0.008788 0.009635
0.010380 0.021241 -0.010502
0.011842 0.021323 0.000000
0.010380 0.021241 0.010502
0.004636 0.020300 -0.017309
-0.002241 0.019708 -0.019629
-0.019388 0.015698 -0.006481
-0.018914 0.015939 0.000000
-0.019388 0.015698 0.006481
-0.017722 0.014739 -0.019459
-0.012250 0.017369 -0.020577
-0.021428 0.015517 -0.009942
0.004636 0.020300 0.017309
-0.002241 0.019708 0.019629
-0.012250 0.017369 0.020577
-0.017722 0.014739 0.019459
-0.021428 0.015517 0.009942
0.007425 0.030310 -0.010130
0.008394 0.032102 0.000000
0.007425 0.030310 0.010130
0.001457 0.028397 -0.017974
-0.003442 0.026453 -0.019716
-0.023451 0.021580 -0.006696
-0.025561 0.021211 -0.010395
-0.022774 0.021997 0.000000
-0.023451 0.021580 0.006696
-0.025561 0.021211 0.010395
-0.018640 0.021625 -0.021130
-0.013575 0.022578 -0.020722
-0.021817 0.015928 -0.021499
-0.023587 0.011688 -0.017530
-0.025017 0.018690 -0.025716
-0.030394 0.014549 -0.003789
0.001457 0.028397 0.017974
-0.003442 0.026453 0.019716
-0.013575 0.022578 0.020722
-0.018640 0.021625 0.021130
-0.023587 0.011688 0.017530
-0.021817 0.015928 0.021499
-0.025017 0.018690 0.025716
-0.030394 0.014549 0.003789
0.007022 0.035882 -0.011210
0.007480 0.036566 0.000000
0.007022 0.035882 0.011210
0.002018 0.033258 -0.019027
-0.003857 0.030103 -0.021805
-0.026589 0.029103 -0.008549
-0.026715 0.026944 -0.011162
-0.024621 0.028813 0.000000
-0.026589 0.029103 0.008549
-0.026715 0.026944 0.011162
-0.021210 0.025875 -0.020416
-0.012941 0.028097 -0.022866
-0.027884 0.024546 -0.020468
-0.031623 0.013488 -0.017633
-0.034714 0.017451 -0.023741
-0.027711 0.012405 -0.025399
-0.024576 0.007973 -0.010789
-0.029423 0.014399 -0.029720
-0.029024 0.018111 -0.032692
-0.026414 0.002638 -0.005221
-0.030186 0.012915 0.000000
-0.039370 0.012822 0.000000
-0.034462 0.020288 -0.007892
0.002018 0.033258 0.019027
-0.003857 0.030103 0.021805
-0.012941 0.028097 0.022866
-0.021210 0.025875 0.020416
-0.027884 0.024546 0.020468
-0.034714 0.017451 0.023741
-0.031623 0.013488 0.017633
-0.027711 0.012405 0.025399
-0.024576 0.007973 0.010789
-0.029024 0.018111 0.032692
-0.029423 0.014399 0.029720
-0.026414 0.002638 0.005221
-0.034462 0.020288 0.007892
0.004999 0.040642 -0.011416
0.005731 0.041244 0.000000
0.004999 0.040642 0.011416
0.000109 0.038323 -0.019289
-0.006847 0.035605 -0.022860
-0.015603 0.031364 -0.023008
-0.028253 0.026602 -0.014452
-0.036099 0.030642 -0.016406
-0.035043 0.027800 -0.010300
-0.009445 0.035028 0.000000
-0.024533 0.029386 -0.017549
-0.036099 0.030642 0.016406
-0.028253 0.026602 0.014452
-0.035043 0.027800 0.010300
-0.024533 0.029386 0.017549
-0.032999 0.023209 -0.029174
-0.032976 0.026926 -0.018869
-0.032425 0.005509 -0.015879
-0.036323 0.002236 -0.012968
-0.040438 0.017183 -0.021653
-0.040527 0.015647 -0.014540
-0.037911 0.014924 -0.013000
-0.042885 0.026452 -0.019979
-0.036393 0.023848 -0.021835
-0.023497 0.000997 -0.012299
-0.034928 -0.002055 -0.017501
-0.033908 0.014130 -0.032981
-0.032967 0.017082 -0.036167
-0.037103 0.021392 -0.033444
-0.024986 -0.002927 -0.006855
-0.029806 0.002622 0.000000
-0.039353 0.008616 -0.005062
-0.046306 -0.000990 0.000000
-0.035157 0.008877 -0.008498
-0.036437 0.013546 -0.010659
-0.039353 0.008616 0.005062
-0.035157 0.008877 0.008498
-0.036437 0.013546 0.010659
-0.035702 0.020458 -0.011630
0.000109 0.038323 0.019289
-0.006847 0.035605 0.022860
-0.015603 0.031364 0.023008
-0.032999 0.023209 0.029174
-0.032976 0.026926 0.018869
-0.042885 0.026452 0.019979
-0.040438 0.017183 0.021653
-0.036393 0.023848 0.021835
-0.036323 0.002236 0.012968
-0.032425 0.005509 0.015879
-0.040527 0.015647 0.014540
-0.037911 0.014924 0.013000
-0.023497 0.000997 0.012299
-0.034928 -0.002055 0.017501
-0.032967 0.017082 0.036167
-0.033908 0.014130 0.032981
-0.037103 0.021392 0.033444
-0.024986 -0.002927 0.006855
-0.035702 0.020458 0.011630
-0.047503 0.021059 -0.016744
-0.040173 0.020995 -0.014277
-0.047503 0.021059 0.016744
-0.040173 0.020995 0.014277
-0.036704 -0.006553 -0.009958
-0.037875 -0.001656 -0.010524
-0.032885 -0.009098 -0.017254
-0.036805 0.004505 -0.009067
-0.045237 0.020136 -0.022146
-0.046334 0.017032 -0.017202
-0.024081 -0.011636 -0.013666
-0.026932 -0.006318 -0.005445
-0.030842 -0.003894 0.000000
-0.026932 -0.006318 0.005445
-0.041901 0.002710 -0.004274
-0.043840 -0.002431 -0.004160
-0.054573 -0.004416 0.000000
-0.041901 0.002710 0.004274
-0.043840 -0.002431 0.004160
-0.036805 0.004505 0.009067
-0.045237 0.020136 0.022146
-0.046334 0.017032 0.017202
-0.037875 -0.001656 0.010524
-0.036704 -0.006553 0.009958
-0.032885 -0.009098 0.017254
-0.024081 -0.011636 0.013666
-0.042743 -0.007087 -0.004343
-0.032062 -0.008120 -0.007826
-0.037547 -0.008540 -0.005095
-0.035921 -0.013747 0.000000
-0.032062 -0.008120 0.007826
-0.037547 -0.008540 0.005095
-0.055182 -0.010081 0.000000
-0.042743 -0.007087 0.004343
-0.045376 -0.011586 -0.004733
-0.041499 -0.012885 -0.004749
-0.041663 -0.017364 -0.003687
-0.043266 -0.018687 0.000000
-0.041663 -0.017364 0.003687
-0.041499 -0.012885 0.004749
-0.051860 -0.014453 -0.004792
-0.052301 -0.016283 0.000000
-0.051860 -0.014453 0.004792
-0.045376 -0.011586 0.004733
-0.049042 -0.017590 -0.005584
-0.047498 -0.019215 0.000000
-0.049042 -0.017590 0.005584
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
0 3 1
0 4 3
0 5 6
6 7 0
0 7 8
8 4 0
2 9 0
9 10 0
10 11 0
12 5 0
0 13 12
14 13 0
0 11 14
2 1 15
15 1 3
16 2 15
17 9 2
17 2 16
18 15 3
18 3 4
19 18 4
19 4 8
20 6 5
21 20 5
5 12 22
5 22 21
6 20 7
7 23 24
8 7 24
25 23 7
20 25 7
24 19 8
10 9 17
10 17 26
11 10 26
11 26 27
14 11 27
13 22 12
28 29 13
28 13 14
13 29 30
13 30 22
14 27 28
15 31 32
16 15 32
31 15 18
32 17 16
32 33 17
26 17 33
34 31 18
34 18 19
35 34 19
35 19 24
20 21 36
25 20 36
37 36 21
21 38 37
38 21 22
38 22 30
23 39 40
24 23 40
41 23 25
41 39 23
40 35 24
41 25 36
26 33 42
27 26 42
27 42 43
28 27 43
28 43 44
44 29 28
44 45 29
30 29 46
29 45 46
38 30 46
31 47 48
32 31 48
47 31 34
48 33 32
48 49 33
42 33 49
50 47 34
50 34 35
51 50 35
51 35 40
52 36 37
52 53 36
53 41 36
54 52 37
37 38 55
37 55 54
38 56 55
38 46 56
39 57 58
40 39 58
59 39 60
39 59 61
57 39 61
41 60 39
58 51 40
41 62 60
62 41 53
42 49 63
43 42 63
43 63 64
44 43 64
44 64 65
65 45 44
65 66 45
67 45 68
69 68 45
69 45 66
45 67 46
67 70 46
56 46 70
47 71 72
48 47 72
71 47 50
72 49 48
72 73 49
63 49 73
74 71 50
74 50 51
75 74 51
75 51 58
76 52 54
77 53 52
76 77 52
53 77 62
78 76 54
54 55 79
54 79 78
55 56 80
55 80 79
70 80 56
57 81 82
58 57 82
57 61 83
81 57 83
82 75 58
61 59 60
60 84 85
86 60 85
86 61 60
87 84 60
62 87 60
88 89 61
86 88 61
61 89 83
90 62 91
92 91 62
93 92 62
62 90 87
77 93 62
63 73 94
64 63 94
64 94 95
65 64 95
65 95 96
96 66 65
96 97 66
98 69 66
98 66 97
99 100 67
99 67 101
67 68 69
67 69 101
67 100 102
67 102 70
69 103 104
69 104 101
98 103 69
91 70 105
70 91 92
70 92 106
102 105 70
70 106 80
71 107 108
72 71 108
107 71 74
108 73 72
108 109 73
94 73 109
110 107 74
74 75 111
110 74 111
75 82 112
111 75 112
76 113 114
114 115 76
115 93 76
77 76 93
116 76 78
116 117 76
76 117 113
78 79 116
118 119 79
79 120 118
79 106 120
106 79 80
79 121 116
119 121 79
82 81 112
81 83 117
81 117 112
83 113 117
89 122 83
123 83 122
113 83 123
84 124 125
85 84 126
84 127 126
87 124 84
125 128 84
128 127 84
85 126 129
122 86 85
122 85 130
130 85 129
122 88 86
131 87 90
87 131 132
124 87 132
88 133 134
89 88 134
88 135 133
122 135 88
89 134 122
136 90 137
137 90 91
136 131 90
91 105 137
92 138 139
140 138 92
141 140 92
92 93 141
139 142 92
92 142 143
92 143 144
144 106 92
93 145 141
115 145 93
94 109 146
147 95 94
147 94 146
148 96 95
148 95 147
148 97 96
121 98 97
148 121 97
121 119 98
98 149 103
149 98 150
150 98 119
151 152 99
152 100 99
99 101 149
153 99 149
151 99 153
154 155 100
152 156 100
100 155 102
100 157 154
100 156 157
101 104 149
105 102 158
159 158 102
159 102 155
149 160 103
160 104 103
160 161 104
161 162 104
104 162 149
137 105 163
105 158 163
144 164 106
106 164 120
116 107 110
116 108 107
109 108 116
146 109 116
116 110 111
116 111 112
116 112 117
123 114 113
114 123 129
114 129 165
166 114 165
166 145 114
115 114 145
147 146 116
148 147 116
121 148 116
119 118 150
151 150 118
167 151 118
167 118 168
118 164 168
164 118 120
134 135 122
130 123 122
123 130 129
125 124 132
169 170 125
171 169 125
132 171 125
172 125 170
125 172 128
126 173 129
174 173 126
174 126 127
165 174 127
166 165 127
127 128 145
166 127 145
145 128 141
140 128 172
141 128 140
165 129 173
131 175 132
136 175 131
175 171 132
133 135 134
176 136 137
176 175 136
177 176 137
137 163 178
137 178 177
139 138 179
138 140 179
180 181 139
179 180 139
182 142 139
139 181 183
139 183 182
140 172 179
182 143 142
182 184 143
184 157 143
143 157 144
144 157 164
149 162 160
149 150 153
151 153 150
151 185 152
185 151 167
152 185 186
156 152 186
159 155 154
154 187 188
154 188 189
154 189 159
187 154 184
157 184 154
156 186 167
156 167 168
164 157 156
164 156 168
159 190 158
158 190 163
159 189 190
160 162 161
163 190 178
174 165 173
185 167 186
170 169 191
169 192 193
191 169 193
169 171 192
172 170 180
180 170 191
171 175 192
179 172 180
192 175 176
193 192 176
194 193 176
194 176 177
177 178 194
178 190 195
178 195 196
178 196 194
180 191 181
191 197 181
181 197 198
181 198 183
183 184 182
183 187 184
198 187 183
198 188 187
196 195 188
196 188 198
195 189 188
195 190 189
191 199 197
191 193 200
199 191 200
193 194 201
200 193 201
202 201 194
194 203 202
203 194 196
204 196 198
203 196 204
199 205 197
197 205 206
197 207 208
197 208 198
206 207 197
204 198 208
199 200 201
209 199 201
199 209 205
209 201 202
210 209 202
202 203 211
202 211 210
203 204 208
203 208 211
205 209 210
206 205 210
210 207 206
210 211 207
207 211 208
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444 447 450 453 456 459 462 465 468 471 474 477 480 483 486 489 492 495 498 501 504 507 510 513 516 519 522 525 528 531 534 537 540 543 546 549 552 555 558 561 564 567 570 573 576 579 582 585 588 591 594 597 600 603 606 609 612 615 618 621 624 627 630 633 636 639 642 645 648 651 654 657 660 663 666 669 672 675 678 681 684 687 690 693 696 699 702 705 708 711 714 717 720 723 726 729 732 735 738 741 744 747 750 753 756 759 762 765 768 771 774 777 780 783 786 789 792 795 798 801 804 807 810 813 816 819 822 825 828 831 834 837 840 843 846 849 852 855 858 861 864 867 870 873 876 879 882 885 888 891 894 897 900 903 906 909 912 915 918 921 924 927 930 933 936 939 942 945 948 951 954 957 960 963 966 969 972 975 978 981 984 987 990 993 996 999 1002 1005 1008 1011 1014 1017 1020 1023 1026 1029 1032 1035 1038 1041 1044 1047 1050 1053 1056 1059 1062 1065 1068 1071 1074 1077 1080 1083 1086 1089 1092 1095 1098 1101 1104 1107 1110 1113 1116 1119 1122 1125 1128 1131 1134 1137 1140 1143 1146 1149 1152 1155 1158 1161 1164 1167 1170 1173 1176 1179 1182 1185 1188 1191 1194 1197 1200 1203 1206 1209 1212 1215 1218 1221 1224 1227 1230 1233 1236 1239 1242 1245 1248 1251 1254 1257 1260 1263 1266 1269 1272
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,870 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="212" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="424">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
0.338322 -0.941030 0.000000
0.685755 -0.697749 -0.207090
0.883323 -0.468765 0.000000
0.753388 -0.384589 -0.533384
0.418669 -0.236539 -0.876793
-0.937672 -0.347522 0.000000
-0.650568 -0.759294 0.015326
-0.895403 -0.369406 -0.248583
-0.158849 -0.361598 -0.918702
0.685756 -0.697748 0.207090
0.753388 -0.384583 0.533387
0.418664 -0.236535 0.876796
-0.650568 -0.759294 -0.015326
-0.895403 -0.369406 0.248583
-0.158849 -0.361598 0.918702
0.937979 0.234184 -0.255645
0.983852 0.178983 0.000000
0.937978 0.234187 0.255644
0.476217 0.480497 -0.736437
0.091564 0.374933 -0.922519
-0.980399 -0.185491 0.066412
-0.929691 -0.368341 0.000000
-0.980399 -0.185491 -0.066412
-0.755735 -0.412787 -0.508401
-0.506580 0.208848 -0.836516
-0.866609 -0.487453 0.106670
0.476212 0.480503 0.736437
0.091564 0.374933 0.922519
-0.506580 0.208848 0.836516
-0.755736 -0.412785 0.508400
-0.866610 -0.487451 -0.106667
0.796086 0.460944 -0.392144
0.872518 0.488583 0.000000
0.796086 0.460944 0.392144
0.515851 0.333314 -0.789176
0.146224 0.184389 -0.971915
-0.762754 -0.603022 0.233603
-0.817127 -0.576458 0.000000
-0.762755 -0.603024 -0.233598
0.133301 -0.643472 -0.753773
-0.102893 -0.105615 -0.989070
-0.278996 -0.865241 0.416557
0.515851 0.333314 0.789176
0.146224 0.184389 0.971915
-0.102893 -0.105615 0.989070
0.133301 -0.643472 0.753774
-0.279003 -0.865242 -0.416549
0.901315 0.203417 -0.382430
0.953834 0.300333 0.000000
0.901315 0.203417 0.382430
0.610047 -0.012690 -0.792264
0.304650 -0.167365 -0.937645
-0.861546 -0.429031 0.271423
-0.368344 -0.152538 0.917090
-0.909538 -0.415622 0.000000
-0.861546 -0.429031 -0.271423
-0.368348 -0.152542 -0.917088
0.137952 0.031081 -0.989951
0.117580 -0.252337 -0.960469
0.167643 -0.746892 -0.643466
0.348219 -0.900797 -0.259440
0.663947 -0.210651 -0.717496
0.596022 0.421014 0.683743
0.610047 -0.012690 0.792264
0.304650 -0.167365 0.937645
0.117580 -0.252337 0.960469
0.137952 0.031081 0.989951
0.348218 -0.900797 0.259441
0.167643 -0.746892 0.643466
0.663947 -0.210651 0.717496
0.596021 0.421015 -0.683743
0.928964 0.174108 -0.326670
0.972446 0.233127 0.000000
0.928964 0.174108 0.326670
0.635956 0.004296 -0.771714
0.283404 -0.209022 -0.935944
-0.707521 0.588289 0.391575
-0.180019 -0.085220 0.979965
-0.906169 0.422915 0.000000
-0.707521 0.588289 -0.391575
-0.180019 -0.085220 -0.979965
-0.251861 0.130387 -0.958939
-0.007560 -0.194181 -0.980936
0.144160 0.773909 -0.616671
-0.219201 -0.751207 -0.622607
-0.498748 -0.533213 -0.683326
-0.106690 -0.886188 -0.450875
0.906690 -0.010209 -0.421675
0.219344 -0.970271 -0.102288
0.729457 0.307214 -0.611156
0.899945 0.163224 0.404297
0.799954 0.600061 0.000000
-0.746741 0.665115 0.000002
-0.536492 0.315742 0.782613
0.635956 0.004296 0.771714
0.283404 -0.209022 0.935944
-0.007560 -0.194181 0.980936
-0.251861 0.130387 0.958939
0.144160 0.773909 0.616671
-0.498750 -0.533215 0.683323
-0.219201 -0.751207 0.622607
-0.106690 -0.886188 0.450875
0.906690 -0.010209 0.421675
0.729457 0.307214 0.611156
0.219345 -0.970270 0.102293
0.899945 0.163224 -0.404297
-0.536494 0.315743 -0.782611
0.458988 0.809497 -0.366122
0.642400 0.766370 0.000000
0.458988 0.809497 0.366122
0.143872 0.820109 -0.553825
0.019031 0.545153 -0.838120
-0.299235 0.377613 -0.876280
-0.039679 0.918555 -0.393296
-0.345945 0.917083 0.198194
-0.738792 0.353899 0.573535
-0.386598 0.922249 0.000000
-0.514948 0.752481 -0.410611
-0.345943 0.917083 -0.198196
-0.039679 0.918555 0.393296
-0.738793 0.353898 -0.573533
-0.514948 0.752481 0.410611
-0.487676 0.620919 -0.613703
0.114717 0.838182 -0.533190
-0.042496 -0.000675 -0.999096
-0.856282 -0.074255 -0.511142
-0.205828 -0.679481 -0.704231
-0.470559 -0.636649 0.610943
-0.917259 -0.185198 0.352614
-0.298364 0.520559 -0.799998
-0.478308 0.478687 -0.736261
0.959291 0.150658 -0.238878
-0.006697 0.118364 -0.992948
-0.531530 -0.825818 -0.188418
0.331272 -0.053312 -0.942028
-0.970890 -0.117724 0.208597
0.887728 -0.040845 0.458554
0.999449 -0.033199 0.000000
-0.681775 0.379777 -0.625261
-0.882265 0.470753 0.000002
-0.955434 0.198921 -0.218118
-0.975878 0.044555 0.213719
-0.681777 0.379779 0.625259
-0.955435 0.198922 0.218115
-0.975879 0.044558 -0.213718
-0.788395 0.092128 0.608232
0.143872 0.820109 0.553825
0.019031 0.545153 0.838120
-0.299235 0.377613 0.876280
-0.487674 0.620919 0.613704
0.114717 0.838183 0.533187
-0.298368 0.520558 0.799997
-0.205828 -0.679481 0.704231
-0.478313 0.478685 0.736259
-0.856282 -0.074255 0.511142
-0.042496 -0.000675 0.999096
-0.470556 -0.636648 -0.610947
-0.917260 -0.185194 -0.352616
0.959291 0.150658 0.238878
-0.006697 0.118364 0.992948
0.331276 -0.053305 0.942027
-0.531526 -0.825817 0.188432
-0.970893 -0.117728 -0.208585
0.887728 -0.040845 -0.458554
-0.788393 0.092131 -0.608234
-0.813048 0.215575 0.540814
-0.405943 0.156776 0.900351
-0.813048 0.215575 -0.540814
-0.405936 0.156775 -0.900354
-0.558612 -0.657381 -0.505770
-0.764693 -0.045422 -0.642792
-0.641811 -0.684556 -0.345632
-0.933821 0.198074 -0.297901
-0.632931 -0.116258 -0.765430
-0.634935 -0.767993 -0.083933
0.772399 -0.616974 -0.150808
0.649172 -0.606540 0.459005
0.959241 -0.282587 0.000000
0.649172 -0.606540 -0.459005
-0.694880 0.226206 -0.682622
-0.627347 0.172309 -0.759438
-0.921180 0.389138 0.000000
-0.694881 0.226211 0.682619
-0.627347 0.172309 0.759438
-0.933821 0.198074 0.297901
-0.632931 -0.116258 0.765430
-0.634935 -0.767993 0.083933
-0.764693 -0.045422 0.642792
-0.558612 -0.657381 0.505770
-0.641811 -0.684556 0.345632
0.772399 -0.616974 0.150808
-0.391775 -0.127919 -0.911125
-0.094607 -0.984624 0.146852
0.129052 -0.713602 -0.688562
0.686537 -0.727095 0.000000
-0.094607 -0.984624 -0.146852
0.129052 -0.713602 0.688562
-0.968078 0.250649 0.000000
-0.391775 -0.127919 0.911125
-0.097941 0.161529 -0.981996
-0.002171 -0.087877 -0.996129
0.349634 -0.523961 -0.776673
0.304186 -0.952613 0.000000
0.349634 -0.523961 0.776673
-0.002171 -0.087877 0.996129
-0.684607 -0.325998 -0.651950
-0.730377 -0.683045 0.000000
-0.684607 -0.325998 0.651950
-0.097941 0.161529 0.981996
-0.077140 -0.685265 -0.724197
-0.391815 -0.920044 0.000000
-0.077140 -0.685265 0.724197
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
0.001762 0.006343 0.000000
0.014785 0.013410 -0.008983
0.013830 0.009016 0.000000
0.010159 0.011784 -0.018384
0.003032 0.008366 -0.022961
-0.015067 0.001624 0.000000
-0.014846 0.001312 -0.005395
-0.015316 0.001512 -0.015981
-0.010712 0.004746 -0.023095
0.014785 0.013410 0.008983
0.010159 0.011784 0.018384
0.003032 0.008366 0.022961
-0.014846 0.001312 0.005395
-0.015316 0.001512 0.015981
-0.010712 0.004746 0.023095
0.015039 0.014755 -0.010789
0.014692 0.015381 0.000000
0.015039 0.014755 0.010789
0.008364 0.014313 -0.017755
-0.000149 0.013462 -0.021586
-0.014005 0.007541 -0.005046
-0.013921 0.007415 0.000000
-0.014005 0.007541 0.005046
-0.014655 0.009293 -0.016318
-0.010367 0.008154 -0.021747
-0.015504 0.008654 -0.009635
0.008364 0.014313 0.017755
-0.000149 0.013462 0.021586
-0.010367 0.008154 0.021747
-0.014655 0.009293 0.016318
-0.015504 0.008654 0.009635
0.010695 0.019963 -0.010502
0.012155 0.020090 0.000000
0.010695 0.019963 0.010502
0.004981 0.018849 -0.017309
-0.001876 0.018050 -0.019629
-0.018904 0.013521 -0.006481
-0.018437 0.013777 0.000000
-0.018904 0.013521 0.006481
-0.017213 0.012613 -0.019459
-0.011816 0.015408 -0.020577
-0.020938 0.013278 -0.009942
0.004981 0.018849 0.017309
-0.001876 0.018050 0.019629
-0.011816 0.015408 0.020577
-0.017213 0.012613 0.019459
-0.020938 0.013278 0.009942
0.007493 0.028940 -0.010130
0.008412 0.030762 0.000000
0.007493 0.028940 0.010130
0.001581 0.026848 -0.017974
-0.003261 0.024756 -0.019716
-0.023126 0.019279 -0.006696
-0.025225 0.018846 -0.010395
-0.022461 0.019716 0.000000
-0.023126 0.019279 0.006696
-0.025225 0.018846 0.010395
-0.018319 0.019469 -0.021130
-0.013283 0.020575 -0.020722
-0.021338 0.013678 -0.021499
-0.022990 0.009386 -0.017530
-0.024612 0.016342 -0.025716
-0.029872 0.012040 -0.003789
0.001581 0.026848 0.017974
-0.003261 0.024756 0.019716
-0.013283 0.020575 0.020722
-0.018319 0.019469 0.021130
-0.022990 0.009386 0.017530
-0.021338 0.013678 0.021499
-0.024612 0.016342 0.025716
-0.029872 0.012040 0.003789
0.006938 0.034499 -0.011210
0.007376 0.035197 0.000000
0.006938 0.034499 0.011210
0.002008 0.031725 -0.019027
-0.003777 0.028392 -0.021805
-0.026469 0.026705 -0.008549
-0.026536 0.024542 -0.011162
-0.024494 0.026474 0.000000
-0.026469 0.026705 0.008549
-0.026536 0.024542 0.011162
-0.021004 0.023641 -0.020416
-0.012801 0.026112 -0.022866
-0.027639 0.022110 -0.020468
-0.031072 0.010941 -0.017633
-0.034270 0.014810 -0.023741
-0.027132 0.009978 -0.025399
-0.023876 0.005642 -0.010789
-0.028897 0.011919 -0.029720
-0.028601 0.015641 -0.032692
-0.025567 0.000252 -0.005221
-0.029620 0.010412 0.000000
-0.038795 0.010041 0.000000
-0.034096 0.017653 -0.007892
0.002008 0.031725 0.019027
-0.003777 0.028392 0.021805
-0.012801 0.026112 0.022866
-0.021004 0.023641 0.020416
-0.027639 0.022110 0.020468
-0.034270 0.014810 0.023741
-0.031072 0.010941 0.017633
-0.027132 0.009978 0.025399
-0.023876 0.005642 0.010789
-0.028601 0.015641 0.032692
-0.028897 0.011919 0.029720
-0.025567 0.000252 0.005221
-0.034096 0.017653 0.007892
0.004784 0.039196 -0.011416
0.005500 0.039820 0.000000
0.004784 0.039196 0.011416
-0.000039 0.036730 -0.019289
-0.006916 0.033802 -0.022860
-0.015551 0.029297 -0.023008
-0.028063 0.024154 -0.014452
-0.036016 0.027955 -0.016406
-0.034882 0.025146 -0.010300
-0.009497 0.033147 0.000000
-0.024422 0.027049 -0.017549
-0.036016 0.027955 0.016406
-0.028063 0.024154 0.014452
-0.034882 0.025146 0.010300
-0.024422 0.027049 0.017549
-0.032714 0.020618 -0.029174
-0.032792 0.024335 -0.018869
-0.031654 0.002940 -0.015879
-0.035459 -0.000450 -0.012968
-0.039983 0.014369 -0.021653
-0.040029 0.012831 -0.014540
-0.037395 0.012187 -0.013000
-0.042683 0.023561 -0.019979
-0.036123 0.021155 -0.021835
-0.022606 -0.001300 -0.012299
-0.033947 -0.004697 -0.017501
-0.033372 0.011514 -0.032981
-0.032513 0.014494 -0.036167
-0.036765 0.018678 -0.033444
-0.023987 -0.005268 -0.006855
-0.028957 0.000134 0.000000
-0.038663 0.005837 -0.005062
-0.045492 -0.001030 0.000000
-0.034477 0.006225 -0.008498
-0.035885 0.010854 -0.010659
-0.038663 0.005837 0.005062
-0.034477 0.006225 0.008498
-0.035885 0.010854 0.010659
-0.035339 0.017787 -0.011630
-0.000039 0.036730 0.019289
-0.006916 0.033802 0.022860
-0.015551 0.029297 0.023008
-0.032714 0.020618 0.029174
-0.032792 0.024335 0.018869
-0.042683 0.023561 0.019979
-0.039983 0.014369 0.021653
-0.036123 0.021155 0.021835
-0.035459 -0.000450 0.012968
-0.031654 0.002940 0.015879
-0.040029 0.012831 0.014540
-0.037395 0.012187 0.013000
-0.022606 -0.001300 0.012299
-0.033947 -0.004697 0.017501
-0.032513 0.014494 0.036167
-0.033372 0.011514 0.032981
-0.036765 0.018678 0.033444
-0.023987 -0.005268 0.006855
-0.035339 0.017787 0.011630
-0.047150 0.018030 -0.016744
-0.039822 0.018187 -0.014277
-0.047150 0.018030 0.016744
-0.039822 0.018187 0.014277
-0.035599 -0.009248 -0.009958
-0.036903 -0.004387 -0.010524
-0.031712 -0.011676 -0.017254
-0.036004 0.001804 -0.009067
-0.044860 0.017176 -0.022146
-0.045871 0.014040 -0.017202
-0.022843 -0.013948 -0.013666
-0.025839 -0.008717 -0.005445
-0.029813 -0.006412 0.000000
-0.025839 -0.008717 0.005445
-0.041047 -0.000144 -0.004274
-0.042845 -0.005343 -0.004160
-0.053517 -0.007652 0.000000
-0.041047 -0.000144 0.004274
-0.042845 -0.005343 0.004160
-0.036004 0.001804 0.009067
-0.044860 0.017176 0.022146
-0.045871 0.014040 0.017202
-0.036903 -0.004387 0.010524
-0.035599 -0.009248 0.009958
-0.031712 -0.011676 0.017254
-0.022843 -0.013948 0.013666
-0.041619 -0.009964 -0.004343
-0.030916 -0.010674 -0.007826
-0.036387 -0.011260 -0.005095
-0.034619 -0.016416 0.000000
-0.030916 -0.010674 0.007826
-0.036387 -0.011260 0.005095
-0.053970 -0.013334 0.000000
-0.041619 -0.009964 0.004343
-0.044128 -0.014541 -0.004733
-0.040218 -0.015723 -0.004749
-0.040258 -0.020205 -0.003687
-0.041824 -0.021577 0.000000
-0.040258 -0.020205 0.003687
-0.040218 -0.015723 0.004749
-0.050530 -0.017604 -0.004792
-0.050920 -0.019447 0.000000
-0.050530 -0.017604 0.004792
-0.044128 -0.014541 0.004733
-0.047627 -0.020655 -0.005584
-0.046039 -0.022233 0.000000
-0.047627 -0.020655 0.005584
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
0 3 1
0 4 3
0 5 6
6 7 0
0 7 8
8 4 0
2 9 0
9 10 0
10 11 0
12 5 0
0 13 12
14 13 0
0 11 14
2 1 15
15 1 3
16 2 15
17 9 2
17 2 16
18 15 3
18 3 4
19 18 4
19 4 8
20 6 5
21 20 5
5 12 22
5 22 21
6 20 7
7 23 24
8 7 24
25 23 7
20 25 7
24 19 8
10 9 17
10 17 26
11 10 26
11 26 27
14 11 27
13 22 12
28 29 13
28 13 14
13 29 30
13 30 22
14 27 28
15 31 32
16 15 32
31 15 18
32 17 16
32 33 17
26 17 33
34 31 18
34 18 19
35 34 19
35 19 24
20 21 36
25 20 36
37 36 21
21 38 37
38 21 22
38 22 30
23 39 40
24 23 40
41 23 25
41 39 23
40 35 24
41 25 36
26 33 42
27 26 42
27 42 43
28 27 43
28 43 44
44 29 28
44 45 29
30 29 46
29 45 46
38 30 46
31 47 48
32 31 48
47 31 34
48 33 32
48 49 33
42 33 49
50 47 34
50 34 35
51 50 35
51 35 40
52 36 37
52 53 36
53 41 36
54 52 37
37 38 55
37 55 54
38 56 55
38 46 56
39 57 58
40 39 58
59 39 60
39 59 61
57 39 61
41 60 39
58 51 40
41 62 60
62 41 53
42 49 63
43 42 63
43 63 64
44 43 64
44 64 65
65 45 44
65 66 45
67 45 68
69 68 45
69 45 66
45 67 46
67 70 46
56 46 70
47 71 72
48 47 72
71 47 50
72 49 48
72 73 49
63 49 73
74 71 50
74 50 51
75 74 51
75 51 58
76 52 54
77 53 52
76 77 52
53 77 62
78 76 54
54 55 79
54 79 78
55 56 80
55 80 79
70 80 56
57 81 82
58 57 82
57 61 83
81 57 83
82 75 58
61 59 60
60 84 85
86 60 85
86 61 60
87 84 60
62 87 60
88 89 61
86 88 61
61 89 83
90 62 91
92 91 62
93 92 62
62 90 87
77 93 62
63 73 94
64 63 94
64 94 95
65 64 95
65 95 96
96 66 65
96 97 66
98 69 66
98 66 97
99 100 67
99 67 101
67 68 69
67 69 101
67 100 102
67 102 70
69 103 104
69 104 101
98 103 69
91 70 105
70 91 92
70 92 106
102 105 70
70 106 80
71 107 108
72 71 108
107 71 74
108 73 72
108 109 73
94 73 109
110 107 74
74 75 111
110 74 111
75 82 112
111 75 112
76 113 114
114 115 76
115 93 76
77 76 93
116 76 78
116 117 76
76 117 113
78 79 116
118 119 79
79 120 118
79 106 120
106 79 80
79 121 116
119 121 79
82 81 112
81 83 117
81 117 112
83 113 117
89 122 83
123 83 122
113 83 123
84 124 125
85 84 126
84 127 126
87 124 84
125 128 84
128 127 84
85 126 129
122 86 85
122 85 130
130 85 129
122 88 86
131 87 90
87 131 132
124 87 132
88 133 134
89 88 134
88 135 133
122 135 88
89 134 122
136 90 137
137 90 91
136 131 90
91 105 137
92 138 139
140 138 92
141 140 92
92 93 141
139 142 92
92 142 143
92 143 144
144 106 92
93 145 141
115 145 93
94 109 146
147 95 94
147 94 146
148 96 95
148 95 147
148 97 96
121 98 97
148 121 97
121 119 98
98 149 103
149 98 150
150 98 119
151 152 99
152 100 99
99 101 149
153 99 149
151 99 153
154 155 100
152 156 100
100 155 102
100 157 154
100 156 157
101 104 149
105 102 158
159 158 102
159 102 155
149 160 103
160 104 103
160 161 104
161 162 104
104 162 149
137 105 163
105 158 163
144 164 106
106 164 120
116 107 110
116 108 107
109 108 116
146 109 116
116 110 111
116 111 112
116 112 117
123 114 113
114 123 129
114 129 165
166 114 165
166 145 114
115 114 145
147 146 116
148 147 116
121 148 116
119 118 150
151 150 118
167 151 118
167 118 168
118 164 168
164 118 120
134 135 122
130 123 122
123 130 129
125 124 132
169 170 125
171 169 125
132 171 125
172 125 170
125 172 128
126 173 129
174 173 126
174 126 127
165 174 127
166 165 127
127 128 145
166 127 145
145 128 141
140 128 172
141 128 140
165 129 173
131 175 132
136 175 131
175 171 132
133 135 134
176 136 137
176 175 136
177 176 137
137 163 178
137 178 177
139 138 179
138 140 179
180 181 139
179 180 139
182 142 139
139 181 183
139 183 182
140 172 179
182 143 142
182 184 143
184 157 143
143 157 144
144 157 164
149 162 160
149 150 153
151 153 150
151 185 152
185 151 167
152 185 186
156 152 186
159 155 154
154 187 188
154 188 189
154 189 159
187 154 184
157 184 154
156 186 167
156 167 168
164 157 156
164 156 168
159 190 158
158 190 163
159 189 190
160 162 161
163 190 178
174 165 173
185 167 186
170 169 191
169 192 193
191 169 193
169 171 192
172 170 180
180 170 191
171 175 192
179 172 180
192 175 176
193 192 176
194 193 176
194 176 177
177 178 194
178 190 195
178 195 196
178 196 194
180 191 181
191 197 181
181 197 198
181 198 183
183 184 182
183 187 184
198 187 183
198 188 187
196 195 188
196 188 198
195 189 188
195 190 189
191 199 197
191 193 200
199 191 200
193 194 201
200 193 201
202 201 194
194 203 202
203 194 196
204 196 198
203 196 204
199 205 197
197 205 206
197 207 208
197 208 198
206 207 197
204 198 208
199 200 201
209 199 201
199 209 205
209 201 202
210 209 202
202 203 211
202 211 210
203 204 208
203 208 211
205 209 210
206 205 210
210 207 206
210 211 207
207 211 208
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444 447 450 453 456 459 462 465 468 471 474 477 480 483 486 489 492 495 498 501 504 507 510 513 516 519 522 525 528 531 534 537 540 543 546 549 552 555 558 561 564 567 570 573 576 579 582 585 588 591 594 597 600 603 606 609 612 615 618 621 624 627 630 633 636 639 642 645 648 651 654 657 660 663 666 669 672 675 678 681 684 687 690 693 696 699 702 705 708 711 714 717 720 723 726 729 732 735 738 741 744 747 750 753 756 759 762 765 768 771 774 777 780 783 786 789 792 795 798 801 804 807 810 813 816 819 822 825 828 831 834 837 840 843 846 849 852 855 858 861 864 867 870 873 876 879 882 885 888 891 894 897 900 903 906 909 912 915 918 921 924 927 930 933 936 939 942 945 948 951 954 957 960 963 966 969 972 975 978 981 984 987 990 993 996 999 1002 1005 1008 1011 1014 1017 1020 1023 1026 1029 1032 1035 1038 1041 1044 1047 1050 1053 1056 1059 1062 1065 1068 1071 1074 1077 1080 1083 1086 1089 1092 1095 1098 1101 1104 1107 1110 1113 1116 1119 1122 1125 1128 1131 1134 1137 1140 1143 1146 1149 1152 1155 1158 1161 1164 1167 1170 1173 1176 1179 1182 1185 1188 1191 1194 1197 1200 1203 1206 1209 1212 1215 1218 1221 1224 1227 1230 1233 1236 1239 1242 1245 1248 1251 1254 1257 1260 1263 1266 1269 1272
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

View File

@ -0,0 +1,870 @@
<?xml version="1.0"?>
<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<PolyData>
<Piece NumberOfPoints="212" NumberOfVerts="0" NumberOfLines="0" NumberOfStrips="0" NumberOfPolys="424">
<PointData Normals="Normals">
<DataArray type="Float32" Name="Normals" NumberOfComponents="3" format="ascii">
0.174016 -0.984743 0.000000
0.561836 -0.800555 -0.208452
0.797561 -0.603239 0.000000
0.679997 -0.502414 -0.534026
0.373165 -0.301553 -0.877390
-0.836418 -0.548092 0.000000
-0.611648 -0.790939 0.017372
-0.833697 -0.475407 -0.280958
-0.218555 -0.332870 -0.917296
0.561836 -0.800555 0.208452
0.679997 -0.502414 0.534026
0.373165 -0.301553 0.877390
-0.611648 -0.790939 -0.017372
-0.833697 -0.475407 0.280958
-0.218555 -0.332870 0.917296
0.963404 0.083495 -0.254719
0.999731 0.023183 0.000000
0.963404 0.083495 0.254719
0.549248 0.399444 -0.734010
0.153705 0.355801 -0.921835
-0.981306 -0.179022 0.070633
-0.990435 -0.137983 0.000000
-0.981306 -0.179022 -0.070633
-0.785566 -0.236771 -0.571686
-0.404613 0.240113 -0.882403
-0.959627 -0.255013 0.118679
0.549248 0.399444 0.734010
0.153705 0.355801 0.921835
-0.404612 0.240109 0.882404
-0.785566 -0.236773 0.571685
-0.959627 -0.255012 -0.118678
0.859334 0.330368 -0.390387
0.938408 0.345528 0.000000
0.859334 0.330368 0.390387
0.563921 0.248699 -0.787491
0.175421 0.159353 -0.971511
-0.919529 -0.288892 0.266474
-0.941538 -0.336908 0.000000
-0.919529 -0.288893 -0.266471
-0.001662 -0.602402 -0.798191
-0.084066 -0.081376 -0.993132
-0.593585 -0.656961 0.464822
0.563921 0.248699 0.787491
0.175424 0.159351 0.971511
-0.084070 -0.081374 0.993132
-0.001668 -0.602400 0.798192
-0.593584 -0.656965 -0.464818
0.922138 0.061277 -0.381977
0.988879 0.148725 0.000000
0.922138 0.061277 0.381977
0.599968 -0.107209 -0.792808
0.272265 -0.212786 -0.938400
-0.918374 -0.288880 0.270440
-0.388391 -0.093077 0.916782
-0.963286 -0.268477 0.000000
-0.918374 -0.288880 -0.270440
-0.388391 -0.093083 -0.916781
0.141355 0.008922 -0.989919
0.073038 -0.267547 -0.960773
0.038211 -0.764065 -0.644007
0.192127 -0.946223 -0.260287
0.620545 -0.313287 -0.718871
0.656839 0.321939 0.681849
0.599968 -0.107209 0.792808
0.272266 -0.212783 0.938400
0.073034 -0.267542 0.960774
0.141355 0.008922 0.989919
0.192128 -0.946223 0.260286
0.038211 -0.764065 0.644007
0.620545 -0.313287 0.718871
0.656840 0.321937 -0.681848
0.944690 0.027643 -0.326797
0.996829 0.079575 0.000000
0.944690 0.027643 0.326797
0.628127 -0.094688 -0.772328
0.244191 -0.250669 -0.936769
-0.600005 0.695850 0.394699
-0.189953 -0.057622 0.980101
-0.825665 0.564161 0.000000
-0.600005 0.695850 -0.394699
-0.189953 -0.057622 -0.980101
-0.226348 0.167894 -0.959468
-0.040436 -0.190645 -0.980826
0.271179 0.740030 -0.615482
-0.342411 -0.704756 -0.621348
-0.579909 -0.446346 -0.681528
-0.248871 -0.856556 -0.452079
0.893550 -0.150443 -0.423008
0.057293 -0.992638 -0.106710
0.770156 0.186204 -0.610072
0.914414 0.021949 0.404185
0.884967 0.465655 0.000000
-0.628171 0.778076 0.000000
-0.477728 0.395149 0.784623
0.628127 -0.094688 0.772328
0.244191 -0.250669 0.936769
-0.040436 -0.190645 0.980826
-0.226348 0.167894 0.959468
0.271179 0.740030 0.615482
-0.579906 -0.446345 0.681531
-0.342410 -0.704757 0.621348
-0.248871 -0.856556 0.452079
0.893550 -0.150443 0.423008
0.770156 0.186204 0.610072
0.057293 -0.992638 0.106710
0.914414 0.021949 -0.404185
-0.477728 0.395149 -0.784623
0.584009 0.725993 -0.363136
0.755709 0.654907 0.000000
0.584009 0.725993 0.363136
0.278736 0.786787 -0.550702
0.110610 0.536849 -0.836396
-0.231428 0.421118 -0.876984
0.112823 0.912917 -0.392243
-0.188382 0.961212 0.201457
-0.671548 0.465912 0.576151
-0.225048 0.974348 0.000000
-0.382062 0.827156 -0.412118
-0.188382 0.961212 -0.201457
0.112823 0.912917 0.392243
-0.671548 0.465912 -0.576151
-0.382062 0.827156 0.412118
-0.378507 0.691345 -0.615447
0.253790 0.807915 -0.531849
-0.042378 0.006378 -0.999081
-0.857277 0.059621 -0.511392
-0.317427 -0.636368 -0.703048
-0.569519 -0.551659 0.609361
-0.934799 -0.039785 0.352942
-0.207319 0.562073 -0.800683
-0.391576 0.549165 -0.738300
0.971217 0.000315 -0.238197
0.013346 0.118431 -0.992873
-0.657158 -0.729912 -0.188073
0.318767 -0.107570 -0.941709
-0.977121 0.033107 0.210093
0.870087 -0.178174 0.459567
0.982202 -0.187828 0.000000
-0.610340 0.482894 -0.627932
-0.795635 0.605776 0.000000
-0.911888 0.346820 -0.219489
-0.956805 0.196196 0.214551
-0.610340 0.482894 0.627932
-0.911888 0.346820 0.219489
-0.956805 0.196196 -0.214551
-0.763550 0.213427 0.609459
0.278736 0.786787 0.550702
0.110610 0.536849 0.836396
-0.231428 0.421118 0.876984
-0.378507 0.691345 0.615447
0.253790 0.807915 0.531849
-0.207318 0.562075 0.800682
-0.317428 -0.636365 0.703050
-0.391576 0.549165 0.738300
-0.857277 0.059621 0.511392
-0.042378 0.006378 0.999081
-0.569519 -0.551659 -0.609361
-0.934799 -0.039785 -0.352942
0.971217 0.000315 0.238197
0.013346 0.118431 0.992873
0.318767 -0.107570 0.941709
-0.657158 -0.729912 0.188073
-0.977121 0.033107 -0.210093
0.870087 -0.178174 -0.459567
-0.763550 0.213427 -0.609459
-0.767856 0.341497 0.542013
-0.374000 0.218005 0.901442
-0.767856 0.341497 -0.542013
-0.374000 0.218005 -0.901442
-0.659159 -0.558722 -0.503329
-0.762428 0.074055 -0.642821
-0.744464 -0.571656 -0.344939
-0.890778 0.341693 -0.299600
-0.644009 -0.014667 -0.764877
-0.751306 -0.654777 -0.082499
0.663802 -0.732477 -0.151145
0.540613 -0.702977 0.462126
0.902857 -0.429940 0.000000
0.540613 -0.702977 -0.462126
-0.648734 0.331897 -0.684827
-0.590620 0.268100 -0.761111
-0.847440 0.530891 0.000000
-0.648734 0.331897 0.684827
-0.590620 0.268100 0.761111
-0.890778 0.341693 0.299600
-0.644013 -0.014663 0.764874
-0.751309 -0.654775 0.082497
-0.762428 0.074055 0.642821
-0.659159 -0.558722 0.503329
-0.744464 -0.571656 0.344939
0.663802 -0.732477 0.151145
-0.407611 -0.065070 -0.910834
-0.259381 -0.954564 0.146726
0.006776 -0.724665 -0.689068
0.557572 -0.830129 0.000000
-0.259381 -0.954564 -0.146726
0.006777 -0.724666 0.689067
-0.915922 0.401357 -0.000002
-0.407609 -0.065067 0.910836
-0.069197 0.174937 -0.982145
-0.017087 -0.086456 -0.996109
0.256827 -0.573484 -0.777918
0.138749 -0.990328 0.000000
0.256832 -0.573486 0.777914
-0.017072 -0.086458 0.996109
-0.727419 -0.213030 -0.652288
-0.830380 -0.557198 0.000000
-0.727421 -0.213032 0.652285
-0.069191 0.174936 0.982146
-0.190828 -0.663138 -0.723763
-0.538043 -0.842917 0.000000
-0.190831 -0.663141 0.723760
</DataArray>
</PointData>
<Points>
<DataArray type="Float32" NumberOfComponents="3" format="ascii">
0.001708 0.009111 0.000000
0.016093 0.014009 -0.009262
0.014420 0.009710 0.000000
0.011124 0.013168 -0.018954
0.003323 0.010945 -0.023673
-0.016179 0.007270 0.000000
-0.016003 0.006914 -0.005562
-0.016450 0.007200 -0.016477
-0.011247 0.009679 -0.023811
0.016093 0.014009 0.009262
0.011124 0.013168 0.018954
0.003323 0.010945 0.023673
-0.016003 0.006914 0.005562
-0.016450 0.007200 0.016477
-0.011247 0.009679 0.023811
0.016565 0.015332 -0.011124
0.016312 0.016029 0.000000
0.016565 0.015332 0.011124
0.009699 0.016054 -0.018305
0.000896 0.016684 -0.022255
-0.016837 0.012967 -0.005203
-0.016772 0.012824 0.000000
-0.016837 0.012967 0.005203
-0.017220 0.014862 -0.016825
-0.010353 0.013083 -0.022422
-0.018186 0.014361 -0.009934
0.009699 0.016054 0.018305
0.000896 0.016684 0.022255
-0.010353 0.013083 0.022422
-0.017220 0.014862 0.016825
-0.018186 0.014361 0.009934
0.012973 0.021389 -0.010828
0.014479 0.021262 0.000000
0.012973 0.021389 0.010828
0.006977 0.021260 -0.017846
-0.000132 0.021651 -0.020238
-0.018190 0.020038 -0.006682
-0.017674 0.020215 0.000000
-0.018190 0.020038 0.006682
-0.016613 0.018818 -0.020062
-0.010673 0.020711 -0.021215
-0.020300 0.020148 -0.010250
0.006977 0.021260 0.017846
-0.000132 0.021651 0.020238
-0.010673 0.020711 0.021215
-0.016613 0.018818 0.020062
-0.020300 0.020148 0.010250
0.011143 0.031077 -0.010444
0.012369 0.032768 0.000000
0.011143 0.031077 0.010444
0.004790 0.029989 -0.018532
-0.000473 0.028712 -0.020328
-0.021571 0.026632 -0.006904
-0.023777 0.026561 -0.010717
-0.020825 0.026960 0.000000
-0.021571 0.026632 0.006904
-0.023777 0.026561 0.010717
-0.016646 0.025981 -0.021785
-0.011343 0.026221 -0.021365
-0.020643 0.020624 -0.022166
-0.023009 0.016551 -0.018073
-0.023552 0.023907 -0.026513
-0.029594 0.020457 -0.003907
0.004790 0.029989 0.018532
-0.000473 0.028712 0.020328
-0.011343 0.026221 0.021365
-0.016646 0.025981 0.021785
-0.023009 0.016551 0.018073
-0.020643 0.020624 0.022166
-0.023552 0.023907 0.026513
-0.029594 0.020457 0.003907
0.011463 0.036826 -0.011558
0.012021 0.037458 0.000000
0.011463 0.036826 0.011558
0.006002 0.034871 -0.019617
-0.000419 0.032499 -0.022482
-0.023792 0.034768 -0.008814
-0.024204 0.032581 -0.011508
-0.021818 0.034186 0.000000
-0.023792 0.034768 0.008814
-0.024204 0.032581 0.011508
-0.018716 0.030693 -0.021049
-0.009970 0.031765 -0.023575
-0.025715 0.030302 -0.021103
-0.030990 0.019551 -0.018180
-0.033629 0.024046 -0.024478
-0.027132 0.017880 -0.026187
-0.024508 0.012901 -0.011124
-0.028620 0.020163 -0.030642
-0.027725 0.023896 -0.033706
-0.027088 0.007718 -0.005383
-0.029596 0.018759 0.000000
-0.038997 0.019992 0.000000
-0.032999 0.026906 -0.008137
0.006002 0.034871 0.019617
-0.000419 0.032499 0.022482
-0.009970 0.031765 0.023575
-0.018716 0.030693 0.021049
-0.025715 0.030302 0.021103
-0.033629 0.024046 0.024478
-0.030990 0.019551 0.018180
-0.027132 0.017880 0.026187
-0.024508 0.012901 0.011124
-0.027725 0.023896 0.033706
-0.028620 0.020163 0.030642
-0.027088 0.007718 0.005383
-0.032999 0.026906 0.008137
0.010020 0.041978 -0.011770
0.010847 0.042487 0.000000
0.010020 0.041978 0.011770
0.004715 0.040319 -0.019887
-0.002753 0.038550 -0.023569
-0.012263 0.035486 -0.023722
-0.025822 0.032455 -0.014901
-0.033313 0.037715 -0.016914
-0.032606 0.034661 -0.010620
-0.005485 0.038337 0.000000
-0.021653 0.034759 -0.018094
-0.033313 0.037715 0.016914
-0.025822 0.032455 0.014901
-0.032606 0.034661 0.010620
-0.021653 0.034759 0.018094
-0.031120 0.029677 -0.030079
-0.030608 0.033469 -0.019454
-0.032857 0.011520 -0.016372
-0.037272 0.008742 -0.013371
-0.039517 0.024600 -0.022325
-0.039809 0.023045 -0.014991
-0.037229 0.021928 -0.013403
-0.040801 0.034419 -0.020599
-0.034505 0.030821 -0.022512
-0.024321 0.005621 -0.012680
-0.036409 0.004159 -0.018044
-0.033241 0.020538 -0.034004
-0.031891 0.023416 -0.037289
-0.035554 0.028416 -0.034481
-0.026359 0.001830 -0.007068
-0.030558 0.008194 0.000000
-0.039532 0.015696 -0.005219
-0.047579 0.009914 0.000000
-0.035208 0.015355 -0.008762
-0.035904 0.020307 -0.010989
-0.039532 0.015696 0.005219
-0.035208 0.015355 0.008762
-0.035904 0.020307 0.010989
-0.034244 0.027259 -0.011991
0.004715 0.040319 0.019887
-0.002753 0.038550 0.023569
-0.012263 0.035486 0.023722
-0.031120 0.029677 0.030079
-0.030608 0.033469 0.019454
-0.040801 0.034419 0.020599
-0.039517 0.024600 0.022325
-0.034505 0.030821 0.022512
-0.037272 0.008742 0.013371
-0.032857 0.011520 0.016372
-0.039809 0.023045 0.014991
-0.037229 0.021928 0.013403
-0.024321 0.005621 0.012680
-0.036409 0.004159 0.018044
-0.031891 0.023416 0.037289
-0.033241 0.020538 0.034004
-0.035554 0.028416 0.034481
-0.026359 0.001830 0.007068
-0.034244 0.027259 0.011991
-0.046231 0.029581 -0.017263
-0.038745 0.028454 -0.014720
-0.046231 0.029581 0.017263
-0.038745 0.028454 0.014720
-0.038816 -0.000177 -0.010267
-0.039370 0.004993 -0.010850
-0.035245 -0.003328 -0.017789
-0.037467 0.011129 -0.009348
-0.044035 0.028310 -0.022833
-0.045564 0.025299 -0.017736
-0.026578 -0.007195 -0.014090
-0.028794 -0.001351 -0.005614
-0.032473 0.001690 0.000000
-0.028794 -0.001351 0.005614
-0.042913 0.010034 -0.004406
-0.045571 0.005065 -0.004289
-0.056805 0.004591 0.000000
-0.042913 0.010034 0.004406
-0.045571 0.005065 0.004289
-0.037467 0.011129 0.009348
-0.044035 0.028310 0.022833
-0.045564 0.025299 0.017736
-0.039370 0.004993 0.010850
-0.038816 -0.000177 0.010267
-0.035245 -0.003328 0.017789
-0.026578 -0.007195 0.014090
-0.045060 0.000152 -0.004478
-0.034276 -0.002449 -0.008068
-0.039938 -0.002084 -0.005253
-0.038960 -0.007636 0.000000
-0.034276 -0.002449 0.008068
-0.039938 -0.002084 0.005253
-0.058172 -0.001105 0.000000
-0.045060 0.000152 0.004478
-0.048343 -0.004061 -0.004880
-0.044551 -0.005949 -0.004897
-0.045305 -0.010498 -0.003802
-0.047119 -0.011618 0.000000
-0.045305 -0.010498 0.003802
-0.044550 -0.005949 0.004897
-0.055349 -0.006050 -0.004941
-0.056040 -0.007856 0.000000
-0.055349 -0.006050 0.004941
-0.048343 -0.004061 0.004880
-0.052880 -0.009661 -0.005757
-0.051514 -0.011544 0.000000
-0.052880 -0.009661 0.005757
</DataArray>
</Points>
<Polys>
<DataArray type="Int32" Name="connectivity" format="ascii">
0 1 2
0 3 1
0 4 3
0 5 6
6 7 0
0 7 8
8 4 0
2 9 0
9 10 0
10 11 0
12 5 0
0 13 12
14 13 0
0 11 14
2 1 15
15 1 3
16 2 15
17 9 2
17 2 16
18 15 3
18 3 4
19 18 4
19 4 8
20 6 5
21 20 5
5 12 22
5 22 21
6 20 7
7 23 24
8 7 24
25 23 7
20 25 7
24 19 8
10 9 17
10 17 26
11 10 26
11 26 27
14 11 27
13 22 12
28 29 13
28 13 14
13 29 30
13 30 22
14 27 28
15 31 32
16 15 32
31 15 18
32 17 16
32 33 17
26 17 33
34 31 18
34 18 19
35 34 19
35 19 24
20 21 36
25 20 36
37 36 21
21 38 37
38 21 22
38 22 30
23 39 40
24 23 40
41 23 25
41 39 23
40 35 24
41 25 36
26 33 42
27 26 42
27 42 43
28 27 43
28 43 44
44 29 28
44 45 29
30 29 46
29 45 46
38 30 46
31 47 48
32 31 48
47 31 34
48 33 32
48 49 33
42 33 49
50 47 34
50 34 35
51 50 35
51 35 40
52 36 37
52 53 36
53 41 36
54 52 37
37 38 55
37 55 54
38 56 55
38 46 56
39 57 58
40 39 58
59 39 60
39 59 61
57 39 61
41 60 39
58 51 40
41 62 60
62 41 53
42 49 63
43 42 63
43 63 64
44 43 64
44 64 65
65 45 44
65 66 45
67 45 68
69 68 45
69 45 66
45 67 46
67 70 46
56 46 70
47 71 72
48 47 72
71 47 50
72 49 48
72 73 49
63 49 73
74 71 50
74 50 51
75 74 51
75 51 58
76 52 54
77 53 52
76 77 52
53 77 62
78 76 54
54 55 79
54 79 78
55 56 80
55 80 79
70 80 56
57 81 82
58 57 82
57 61 83
81 57 83
82 75 58
61 59 60
60 84 85
86 60 85
86 61 60
87 84 60
62 87 60
88 89 61
86 88 61
61 89 83
90 62 91
92 91 62
93 92 62
62 90 87
77 93 62
63 73 94
64 63 94
64 94 95
65 64 95
65 95 96
96 66 65
96 97 66
98 69 66
98 66 97
99 100 67
99 67 101
67 68 69
67 69 101
67 100 102
67 102 70
69 103 104
69 104 101
98 103 69
91 70 105
70 91 92
70 92 106
102 105 70
70 106 80
71 107 108
72 71 108
107 71 74
108 73 72
108 109 73
94 73 109
110 107 74
74 75 111
110 74 111
75 82 112
111 75 112
76 113 114
114 115 76
115 93 76
77 76 93
116 76 78
116 117 76
76 117 113
78 79 116
118 119 79
79 120 118
79 106 120
106 79 80
79 121 116
119 121 79
82 81 112
81 83 117
81 117 112
83 113 117
89 122 83
123 83 122
113 83 123
84 124 125
85 84 126
84 127 126
87 124 84
125 128 84
128 127 84
85 126 129
122 86 85
122 85 130
130 85 129
122 88 86
131 87 90
87 131 132
124 87 132
88 133 134
89 88 134
88 135 133
122 135 88
89 134 122
136 90 137
137 90 91
136 131 90
91 105 137
92 138 139
140 138 92
141 140 92
92 93 141
139 142 92
92 142 143
92 143 144
144 106 92
93 145 141
115 145 93
94 109 146
147 95 94
147 94 146
148 96 95
148 95 147
148 97 96
121 98 97
148 121 97
121 119 98
98 149 103
149 98 150
150 98 119
151 152 99
152 100 99
99 101 149
153 99 149
151 99 153
154 155 100
152 156 100
100 155 102
100 157 154
100 156 157
101 104 149
105 102 158
159 158 102
159 102 155
149 160 103
160 104 103
160 161 104
161 162 104
104 162 149
137 105 163
105 158 163
144 164 106
106 164 120
116 107 110
116 108 107
109 108 116
146 109 116
116 110 111
116 111 112
116 112 117
123 114 113
114 123 129
114 129 165
166 114 165
166 145 114
115 114 145
147 146 116
148 147 116
121 148 116
119 118 150
151 150 118
167 151 118
167 118 168
118 164 168
164 118 120
134 135 122
130 123 122
123 130 129
125 124 132
169 170 125
171 169 125
132 171 125
172 125 170
125 172 128
126 173 129
174 173 126
174 126 127
165 174 127
166 165 127
127 128 145
166 127 145
145 128 141
140 128 172
141 128 140
165 129 173
131 175 132
136 175 131
175 171 132
133 135 134
176 136 137
176 175 136
177 176 137
137 163 178
137 178 177
139 138 179
138 140 179
180 181 139
179 180 139
182 142 139
139 181 183
139 183 182
140 172 179
182 143 142
182 184 143
184 157 143
143 157 144
144 157 164
149 162 160
149 150 153
151 153 150
151 185 152
185 151 167
152 185 186
156 152 186
159 155 154
154 187 188
154 188 189
154 189 159
187 154 184
157 184 154
156 186 167
156 167 168
164 157 156
164 156 168
159 190 158
158 190 163
159 189 190
160 162 161
163 190 178
174 165 173
185 167 186
170 169 191
169 192 193
191 169 193
169 171 192
172 170 180
180 170 191
171 175 192
179 172 180
192 175 176
193 192 176
194 193 176
194 176 177
177 178 194
178 190 195
178 195 196
178 196 194
180 191 181
191 197 181
181 197 198
181 198 183
183 184 182
183 187 184
198 187 183
198 188 187
196 195 188
196 188 198
195 189 188
195 190 189
191 199 197
191 193 200
199 191 200
193 194 201
200 193 201
202 201 194
194 203 202
203 194 196
204 196 198
203 196 204
199 205 197
197 205 206
197 207 208
197 208 198
206 207 197
204 198 208
199 200 201
209 199 201
199 209 205
209 201 202
210 209 202
202 203 211
202 211 210
203 204 208
203 208 211
205 209 210
206 205 210
210 207 206
210 211 207
207 211 208
</DataArray>
<DataArray type="Int32" Name="offsets" format="ascii">
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99 102 105 108 111 114 117 120 123 126 129 132 135 138 141 144 147 150 153 156 159 162 165 168 171 174 177 180 183 186 189 192 195 198 201 204 207 210 213 216 219 222 225 228 231 234 237 240 243 246 249 252 255 258 261 264 267 270 273 276 279 282 285 288 291 294 297 300 303 306 309 312 315 318 321 324 327 330 333 336 339 342 345 348 351 354 357 360 363 366 369 372 375 378 381 384 387 390 393 396 399 402 405 408 411 414 417 420 423 426 429 432 435 438 441 444 447 450 453 456 459 462 465 468 471 474 477 480 483 486 489 492 495 498 501 504 507 510 513 516 519 522 525 528 531 534 537 540 543 546 549 552 555 558 561 564 567 570 573 576 579 582 585 588 591 594 597 600 603 606 609 612 615 618 621 624 627 630 633 636 639 642 645 648 651 654 657 660 663 666 669 672 675 678 681 684 687 690 693 696 699 702 705 708 711 714 717 720 723 726 729 732 735 738 741 744 747 750 753 756 759 762 765 768 771 774 777 780 783 786 789 792 795 798 801 804 807 810 813 816 819 822 825 828 831 834 837 840 843 846 849 852 855 858 861 864 867 870 873 876 879 882 885 888 891 894 897 900 903 906 909 912 915 918 921 924 927 930 933 936 939 942 945 948 951 954 957 960 963 966 969 972 975 978 981 984 987 990 993 996 999 1002 1005 1008 1011 1014 1017 1020 1023 1026 1029 1032 1035 1038 1041 1044 1047 1050 1053 1056 1059 1062 1065 1068 1071 1074 1077 1080 1083 1086 1089 1092 1095 1098 1101 1104 1107 1110 1113 1116 1119 1122 1125 1128 1131 1134 1137 1140 1143 1146 1149 1152 1155 1158 1161 1164 1167 1170 1173 1176 1179 1182 1185 1188 1191 1194 1197 1200 1203 1206 1209 1212 1215 1218 1221 1224 1227 1230 1233 1236 1239 1242 1245 1248 1251 1254 1257 1260 1263 1266 1269 1272
</DataArray>
</Polys>
</Piece>
</PolyData>
</VTKFile>

Some files were not shown because too many files have changed in this diff Show More