finished creating debugging test-case for sliver removal problem. Start plugin on spheres dataset and default parameters for 36/37 iterations

This commit is contained in:
Paolo Cignoni cignoni 2010-08-06 07:00:43 +00:00
parent 53d0761d31
commit a4168fa364
7 changed files with 1044 additions and 44 deletions

View File

@ -50,12 +50,17 @@ void Balloon::init( int gridsize, int gridpad ){
vol.band.reserve(5*surf.fn);
vol.updateSurfaceCorrespondence( surf, gridAccell, 2*vol.getDelta() );
}
void Balloon::updateViewField(){
bool Balloon::initializeField(){
//--- Setup the interpolation system
// if we fail, signal the failure to the caller
float OMEGA = 1e8;
finterp.Init( &surf, COTANGENT );
// finterp.Init( &surf, COMBINATORIAL );
LAPLACIAN type = COTANGENT; // COMBINATORIAL
bool op_succeed = finterp.Init( &surf, type );
if( !op_succeed ){
finterp.ColorizeIllConditioned( type );
return false;
}
// Shared data
enum INITMODE {BIFACEINTERSECTIONS, FACEINTERSECTIONS, BOXINTERSECTIONS} mode;
mode = FACEINTERSECTIONS;
@ -190,6 +195,8 @@ void Balloon::updateViewField(){
finterp.AddConstraint( tri::Index(surf,f.V(2)), OMEGA*(v), t );
}
}
return true;
}
void Balloon::interpolateField(){
//--- Mark property active
@ -197,7 +204,7 @@ void Balloon::interpolateField(){
//--- Interpolate the field
finterp.Solve();
//--- Transfer vertex quality to surface
rm &= ~SURF_FCOLOR; // disable face colors
rm |= SURF_VCOLOR; // enable vertex colors
@ -325,16 +332,28 @@ void Balloon::evolveBalloon(){
k3 = updates_curv[i] / curv_maxval; // sign(1.0f,updates_curv[i])*exp(-powf(fabs(updates_curv[i])-curv_maxval,2)/curv_maxval);
//--- Apply the update on the implicit field
if( surf.vert.QualityEnabled )
if( surf.vert.QualityEnabled ){
v.sfield += .25*k1*k2*vol.getDelta();
}
// if we don't have computed the distance field, we don't really know how to
// modulate the laplacian accordingly...
if( surf.vert.CurvatureEnabled && surf.vert.QualityEnabled )
v.sfield += .1*k3*k2;
else if( surf.vert.CurvatureEnabled )
v.sfield += .1*k3;
if( surf.vert.CurvatureEnabled && surf.vert.QualityEnabled ){
v.sfield += .1*k3*k2;
}
else if( surf.vert.CurvatureEnabled ){
v.sfield += .1*k3;
}
}
//--- DEBUG LINES: what's being updated
if( surf.vert.QualityEnabled )
qDebug() << "updating implicit function using distance field";
if( surf.vert.CurvatureEnabled && surf.vert.QualityEnabled )
qDebug() << "updating implicit function using (modulated) curvature";
else if( surf.vert.CurvatureEnabled )
qDebug() << "updating implicit function using (unmodulated) curvature";
//--- Estrai isosurface
vol.isosurface( surf, 0 );

View File

@ -47,9 +47,9 @@ public:
Balloon( CMeshO& _cloud ) : cloud( _cloud ){}
//--- Logic
//--- Logic (if failed, return != 0)
void init(int gridsize, int gridpad);
void updateViewField();
bool initializeField();
void interpolateField();
void computeCurvature();
void evolveBalloon();

View File

@ -10,7 +10,7 @@ using namespace vcg;
// of a SQUARE matrix with the appropriate mesh coefficients. Constraints on vertices
// are added by the function AddConstraint
void test_cholmod2();
void FieldInterpolator::Init(CMeshO* mesh, LAPLACIAN laptype){
bool FieldInterpolator::Init(CMeshO* mesh, LAPLACIAN laptype){
// Testing function
// test_cholmod2(); exit(0);
@ -30,7 +30,6 @@ void FieldInterpolator::Init(CMeshO* mesh, LAPLACIAN laptype){
xb = new Matrix<FieldType, Dynamic, 1>(mesh->vn);
xb->setZero(mesh->vn);
// Fill in the entries of A_dyn and xb
if( laptype == COMBINATORIAL ){
// Iterate throgh every vertice
@ -96,40 +95,96 @@ void FieldInterpolator::Init(CMeshO* mesh, LAPLACIAN laptype){
vJ_i = vcg::tri::Index(*mesh,vJ);
// alpha-spoke
A_pos = pos;
A_pos.FlipE();
vA = A_pos.VFlip();
v1 = vI->P()-vA->P();
v2 = vJ->P()-vA->P();
alpha = acos( v1.dot(v2) / (v1.Norm()*v2.Norm()) );
{
A_pos = pos;
A_pos.FlipE();
vA = A_pos.VFlip();
v1 = vI->P() - vA->P();
v2 = vJ->P() - vA->P();
alpha = acos( v1.dot(v2) / (v1.Norm()*v2.Norm()) );
if( isinf(alpha) ) return false;
}
// beta-spoke
B_pos = pos;
B_pos.FlipF();
B_pos.FlipE();
vB = B_pos.VFlip();
v1 = vI->P()-vB->P();
v2 = vJ->P()-vB->P();
beta = acos( v1.dot(v2) / (v1.Norm()*v2.Norm()) );
{
B_pos = pos;
B_pos.FlipF();
B_pos.FlipE();
vB = B_pos.VFlip();
v1 = vI->P() - vB->P();
v2 = vJ->P() - vB->P();
beta = acos( v1.dot(v2) / (v1.Norm()*v2.Norm()) );
if( isinf(beta) ) return false;
}
// Compute cotangent coefficient
cotcoeff = .5 * ( cos(alpha)/sin(alpha) + cos(beta)/sin(beta) );
assert( !isinf(cotcoeff) );
if( isinf(cotcoeff) ) {
qDebug("*********************************************************************************");
qDebug("* WARNING ");
qDebug("* interpolation initialization failed because of ill-conditioned triangulation ");
qDebug("* found triangle generating infinite cotangent coefficient: ");
qDebug("* cotcoeff: %.2f alpha: %.2f beta: %.2f ", cotcoeff, alpha, beta);
qDebug("*********************************************************************************");
return false;
}
// Update the coefficients
totcoeff += cotcoeff;
// Off-diagonal entries (symmetric) Only lower diagonal
if(vI_i > vJ_i)
A_dyn->coeffRef(vI_i,vJ_i) = -cotcoeff;
A_dyn->coeffRef(vI_i,vJ_i) = -cotcoeff;
else
A_dyn->coeffRef(vJ_i,vI_i) = -cotcoeff;
A_dyn->coeffRef(vJ_i,vI_i) = -cotcoeff;
}
while(vJ != firstV);
// Diagonal entries
A_dyn->coeffRef(vI_i,vI_i) = totcoeff;
}
}
return true;
}
void FieldInterpolator::ColorizeIllConditioned(LAPLACIAN laptype){
assert( laptype == COTANGENT );
// Disable face coloring (which enables vertex)
// and flush the vertex coloring
// mesh->face.DisableColor();
// mesh->vert.EnableColor(); -- why is this illegal?
// tri::UpdateColor<CMeshO>::VertexConstant(*mesh, Color4b::Black);
// Reset vertex quality
tri::UpdateQuality<CMeshO>::VertexConstant(*mesh,0);
// Test index coloring
// for(unsigned int vi=0; vi<mesh->vert.size(); vi++)
// mesh->vert[vi].Q() = vcg::tri::Index(*mesh,mesh->vert[vi]);
int indexes[5] = {0,1,2,0,1};
for(CMeshO::FaceIterator fi=mesh->face.begin();fi!=mesh->face.end();fi++){
CFaceO& f = *(fi);
// Consider each of the three vertices
for(int i=1; i<=3; i++){
int iprev = indexes[i-1];
int icurr = indexes[i];
int inext = indexes[i+1];
// Curr is of interest
Point3f va = f.P(iprev)-f.P(icurr);
Point3f vb = f.P(inext)-f.P(icurr);
float alpha = acos( va.dot(vb) / (va.Norm()*vb.Norm()) );
// Set its quality to 1
if( alpha==0 ){
fi->V(icurr)->Q() = 1;
float ratio = (f.P(iprev)-f.P(inext)).Norm() / va.Norm();
qDebug("ratio between edges: %.4f", ratio);
}
// if( alpha==0 ) fi->V(iprev)->Q() = 1;
// if( alpha==0 ) fi->V(inext)->Q() = 1;
}
}
tri::UpdateColor<CMeshO>::VertexQualityRamp(*mesh);
}
void FieldInterpolator::AddConstraint( unsigned int vidx, FieldType omega, FieldType val){
assert( !math::IsNAN(val) );
assert( omega != 0 );
@ -137,7 +192,6 @@ void FieldInterpolator::AddConstraint( unsigned int vidx, FieldType omega, Field
xb->coeffRef(vidx) += omega*val;
}
void FieldInterpolator::Solve(){
//--- DEBUG: Damp the matrix on file, so that matlab can read it and compute solution
// You need to remove the first few lines from the matrix.txt before being able to import
// the matrix successfully!!

View File

@ -33,6 +33,7 @@ private:
/// The EIGEN matrices/vectors involved in the interpolation
Eigen::DynamicSparseMatrix<FieldType>* A_dyn;
Eigen::Matrix<FieldType, Eigen::Dynamic, 1>* xb;
public:
/// Refer to Init
FieldInterpolator(){
@ -45,7 +46,10 @@ public:
if( xb!=0 ) delete xb;
}
/// Creates the sparse laplacian matrixes used by the solver using the specified on the domain of mesh
void Init(CMeshO* mesh, LAPLACIAN laptype=COMBINATORIAL);
/// @return false if initialization has failed for bad-conditioned triangles
bool Init(CMeshO* mesh, LAPLACIAN laptype=COMBINATORIAL);
/// Assigns color to vertexes and faces highlighting ill-conditioned elements according to the selected laplacian
void ColorizeIllConditioned(LAPLACIAN laptype);
/// Adds a constraint to vertex vidx
void AddConstraint( unsigned int vidx, FieldType omega, FieldType val);
/// Solves the interpolation problem by Cholesky returning the solution in the Q() vertex property

View File

@ -0,0 +1,920 @@
ply
format ascii 1.0
comment VCGLIB generated
element vertex 907
property float x
property float y
property float z
property float nx
property float ny
property float nz
element face 0
property list uchar int vertex_indices
end_header
-2.32119 0.639067 -0.247038 -0.48593 0.709021 0.511039
-2.27438 0.7369 -0.103611 -0.48593 0.709021 0.511039
-2.21537 0.816936 0.0269904 -0.48593 0.709021 0.511039
-2.1383 0.870613 0.138592 -0.48593 0.709021 0.511039
-2.05148 0.910072 0.239946 -0.485931 0.709021 0.511038
-1.95426 0.934361 0.330366 -0.48593 0.709021 0.511039
-1.84899 0.946888 0.412309 -0.48593 0.709021 0.511039
-1.73511 0.946856 0.485199 -0.48593 0.709021 0.511039
-1.61044 0.931092 0.54675 -0.48593 0.709022 0.511038
-1.47594 0.900981 0.59796 -0.48593 0.709021 0.511039
-1.32943 0.853343 0.636539 -0.48593 0.709021 0.511039
-1.16349 0.777347 0.654676 -0.48593 0.709021 0.511039
-0.966882 0.656616 0.640571 -0.48593 0.709022 0.511038
0.810637 -0.441747 0.505128 -0.48593 0.709021 0.511039
0.86931 -0.361222 0.636081 -0.48593 0.709021 0.511039
0.957665 -0.324006 0.735819 -0.485931 0.709021 0.511038
0.169181 0.992606 1.7577 -0.48593 0.709021 0.511039
0.256774 1.03093 1.85824 -0.48593 0.709021 0.511039
0.368512 1.03403 1.93339 -0.48593 0.709021 0.511039
-2.37675 -0.0118056 -0.0958607 -0.612943 0.333121 0.716472
-2.36603 0.0494277 0.0970068 -0.612944 0.333121 0.716471
-2.32514 0.0942607 0.254604 -0.612944 0.333121 0.716471
-2.25972 0.125768 0.383538 -0.612944 0.333121 0.716471
-2.18063 0.14984 0.49648 -0.612944 0.333121 0.716471
-2.08794 0.166524 0.593534 -0.612944 0.333121 0.716471
-1.98409 0.177141 0.677539 -0.612944 0.333121 0.716471
-1.86756 0.180866 0.746718 -0.612944 0.333121 0.716471
-1.73817 0.1776 0.800862 -0.612943 0.333121 0.716471
-1.59395 0.166278 0.837681 -0.612944 0.333121 0.716471
-1.42986 0.144156 0.851272 -0.612944 0.333121 0.716471
-1.23495 0.105286 0.82884 -0.612944 0.333121 0.716471
-0.966506 0.0264497 0.720449 -0.612944 0.333121 0.716471
-0.767411 0.320591 1.7201 -0.612944 0.333121 0.716471
-0.904998 0.462423 2.08632 -0.612943 0.333121 0.716471
-0.911647 0.533094 2.29949 -0.612943 0.333121 0.716471
-0.878774 0.582286 2.46646 -0.612944 0.333121 0.71647
-0.824007 0.619579 2.60783 -0.612944 0.333121 0.71647
-0.754265 0.648733 2.73171 -0.612943 0.333121 0.716471
-0.671687 0.670911 2.84058 -0.612943 0.333121 0.716471
-0.576035 0.685984 2.93416 -0.612944 0.333121 0.71647
-0.471096 0.696009 3.01689 -0.612944 0.333121 0.71647
-0.353267 0.699029 3.08456 -0.612943 0.333121 0.716471
-0.223048 0.695315 3.13774 -0.612944 0.333121 0.71647
-0.0795132 0.684365 3.17536 -0.612943 0.333121 0.716471
0.0827843 0.663217 3.19104 -0.612943 0.333121 0.716471
0.271173 0.627889 3.17623 -0.612943 0.333121 0.716471
0.511075 0.564565 3.1012 -0.612944 0.333121 0.71647
-2.35705 -0.0750736 -0.0893172 -0.610572 0.295663 0.734701
-2.34363 -0.0205792 0.103507 -0.610572 0.295663 0.734701
-2.30524 0.0218186 0.266275 -0.610571 0.295663 0.734702
-2.24025 0.0513427 0.39705 -0.610571 0.295663 0.734702
-2.15921 0.0730869 0.508494 -0.610571 0.295663 0.734702
-2.06497 0.0884443 0.604066 -0.610571 0.295663 0.734702
-1.95926 0.098246 0.685835 -0.610571 0.295663 0.734702
-1.84005 0.101511 0.751357 -0.610571 0.295663 0.734702
-1.70852 0.0988124 0.802062 -0.610571 0.295663 0.734702
-1.56166 0.0886902 0.83432 -0.610571 0.295663 0.734702
-1.39295 0.0679822 0.840273 -0.610571 0.295663 0.734702
-1.19128 0.0313194 0.80658 -0.610571 0.295663 0.734701
-0.881461 -0.0577183 0.642738 -0.610571 0.295663 0.734702
0.762895 -0.549025 -0.291072 -0.610571 0.295663 0.734702
-0.865298 0.300403 1.87711 -0.610571 0.295663 0.734701
-0.942253 0.398658 2.17868 -0.610571 0.295663 0.734702
-0.933015 0.455176 2.37653 -0.610571 0.295663 0.734702
-0.895546 0.498024 2.54041 -0.610571 0.295663 0.734702
-0.839766 0.532004 2.68226 -0.610572 0.295663 0.734701
-0.764676 0.556634 2.80088 -0.610571 0.295663 0.734701
-0.678219 0.575759 2.90581 -0.610571 0.295663 0.734702
-0.582222 0.590265 2.99927 -0.610571 0.295663 0.734702
-0.472732 0.598237 3.07649 -0.610572 0.295663 0.734701
-0.353369 0.601427 3.14183 -0.610571 0.295663 0.734702
-0.221335 0.598483 3.19192 -0.610571 0.295663 0.734702
-0.0750016 0.588613 3.22481 -0.610571 0.295663 0.734702
0.0887308 0.570319 3.23676 -0.610571 0.295663 0.734702
0.279964 0.538707 3.21561 -0.610571 0.295663 0.734702
0.526809 0.480166 3.12756 -0.610571 0.295663 0.734702
-2.24881 -0.311396 -0.151626 -0.604553 0.135345 0.784982
-2.2434 -0.2793 0.0603912 -0.604552 0.135345 0.784983
-2.2064 -0.254277 0.231392 -0.604552 0.135345 0.784983
-2.14005 -0.235822 0.364296 -0.604552 0.135345 0.784983
-2.05652 -0.221215 0.474882 -0.604553 0.135345 0.784983
-1.95908 -0.209723 0.567402 -0.604553 0.135345 0.784983
-1.84985 -0.200868 0.644629 -0.604552 0.135345 0.784983
-1.72576 -0.195341 0.702549 -0.604553 0.135345 0.784983
-1.5876 -0.192964 0.742202 -0.604553 0.135345 0.784983
-1.42971 -0.195004 0.756232 -0.604553 0.135345 0.784983
-1.24625 -0.20277 0.737065 -0.604552 0.135345 0.784983
-0.999053 -0.224803 0.635142 -0.604553 0.135345 0.784983
0.650224 -0.39419 -0.192079 -0.604552 0.135345 0.784983
-0.932524 -0.00654288 2.08209 -0.604552 0.135345 0.784983
-0.963895 0.0337877 2.34187 -0.604552 0.135345 0.784983
-0.942903 0.0623959 2.53366 -0.604553 0.135345 0.784982
-0.896142 0.0852351 2.692 -0.604553 0.135345 0.784983
-0.830559 0.10386 2.82589 -0.604553 0.135345 0.784983
-0.751904 0.119559 2.9428 -0.604553 0.135345 0.784983
-0.660249 0.132347 3.04284 -0.604553 0.135345 0.784983
-0.55749 0.14265 3.12846 -0.604552 0.135345 0.784983
-0.444339 0.150626 3.20059 -0.604553 0.135345 0.784982
-0.318324 0.155721 3.25601 -0.604552 0.135345 0.784983
-0.180743 0.158228 3.29642 -0.604552 0.135345 0.784983
-0.0270497 0.157128 3.3159 -0.604552 0.135345 0.784983
0.146231 0.151642 3.30995 -0.604553 0.135345 0.784982
0.35266 0.138735 3.26096 -0.604552 0.135345 0.784983
0.65069 0.105321 3.09303 -0.604553 0.135345 0.784983
-2.1111 -0.46532 -0.278968 -0.583097 -0.00229427 0.812399
-2.12402 -0.456633 -0.0317134 -0.583098 -0.00229427 0.812399
-2.08955 -0.44776 0.149529 -0.583097 -0.00229427 0.812399
-2.01884 -0.438744 0.280265 -0.583097 -0.00229427 0.812399
-1.93403 -0.429672 0.391366 -0.583097 -0.00229427 0.812399
-1.83563 -0.420548 0.483532 -0.583097 -0.00229427 0.812399
-1.72107 -0.411359 0.55318 -0.583097 -0.00229427 0.812399
-1.59172 -0.402112 0.602215 -0.583097 -0.00229427 0.812399
-1.44755 -0.392807 0.630603 -0.583097 -0.00229427 0.812399
-1.28042 -0.383411 0.627016 -0.583097 -0.00229427 0.812399
-1.07067 -0.373849 0.56404 -0.583097 -0.00229427 0.812399
0.620469 -0.30603 -0.187335 -0.583097 -0.00229427 0.812399
-0.7996 -0.30288 2.02043 -0.583097 -0.00229427 0.812399
-0.85381 -0.294355 2.32522 -0.583097 -0.00229427 0.812399
-0.832971 -0.285536 2.52544 -0.583097 -0.00229427 0.812399
-0.782885 -0.276601 2.68492 -0.583098 -0.00229427 0.812399
-0.713913 -0.267591 2.81808 -0.583097 -0.00229427 0.8124
-0.631413 -0.258529 2.93239 -0.583097 -0.00229427 0.812399
-0.533697 -0.249407 3.02551 -0.583097 -0.00229427 0.812399
-0.425437 -0.240243 3.10393 -0.583097 -0.00229427 0.812399
-0.304935 -0.231031 3.1653 -0.583098 -0.00229427 0.812399
-0.172675 -0.221773 3.21029 -0.583097 -0.00229427 0.812399
-0.0258233 -0.212457 3.23494 -0.583097 -0.00229427 0.812399
0.140229 -0.203066 3.23285 -0.583097 -0.00229427 0.8124
0.335428 -0.19356 3.19015 -0.583097 -0.00229427 0.8124
0.60408 -0.183766 3.04511 -0.583097 -0.00229427 0.812399
-1.92468 -0.605988 -0.285465 -0.556606 -0.199196 0.806542
-1.90829 -0.630316 -0.0738394 -0.556606 -0.199196 0.806542
-1.84659 -0.638429 0.0721343 -0.556606 -0.199196 0.806542
-1.76495 -0.639406 0.189216 -0.556606 -0.199196 0.806542
-1.66268 -0.632999 0.276396 -0.556606 -0.199196 0.806542
-1.54805 -0.622169 0.34567 -0.556606 -0.199196 0.806542
-1.41856 -0.60602 0.393405 -0.556606 -0.199196 0.806542
-1.26679 -0.581898 0.408862 -0.556606 -0.199196 0.806542
-1.0812 -0.545673 0.375313 -0.556606 -0.199196 0.806542
0.582687 -0.191756 -0.152703 -0.556606 -0.199196 0.806542
0.582384 -0.222058 0.0831137 -0.556606 -0.199196 0.806542
0.621631 -0.238205 0.261617 -0.556606 -0.199196 0.806542
-0.457083 -0.654445 2.06009 -0.556606 -0.199196 0.806543
-0.465842 -0.687773 2.30816 -0.556606 -0.199196 0.806542
-0.415404 -0.699915 2.47045 -0.556606 -0.199196 0.806542
-0.344541 -0.704749 2.60314 -0.556606 -0.199196 0.806542
-0.246858 -0.699983 2.69697 -0.556606 -0.199196 0.806542
-0.139192 -0.691645 2.77633 -0.556606 -0.199196 0.806542
-0.0110416 -0.675977 2.82602 -0.556606 -0.199196 0.806542
0.134576 -0.654057 2.85039 -0.556606 -0.199196 0.806542
0.307452 -0.622382 2.83526 -0.556606 -0.199196 0.806542
0.547228 -0.566765 2.72319 -0.556607 -0.199196 0.806542
1.96376 -0.0900168 0.905967 -0.556607 -0.199196 0.806542
2.26904 -0.0109575 0.698979 -0.556606 -0.199196 0.806543
-1.76767 -0.623651 -0.507106 -0.52928 -0.336311 0.778946
-1.77867 -0.691382 -0.253032 -0.52928 -0.336311 0.778946
-1.71772 -0.713389 -0.104855 -0.52928 -0.336311 0.778946
-1.63884 -0.724005 0.0169389 -0.529281 -0.336311 0.778946
-1.53723 -0.720182 0.105288 -0.52928 -0.336311 0.778946
-1.42465 -0.709382 0.177475 -0.529281 -0.336311 0.778946
-1.28842 -0.683556 0.214863 -0.529281 -0.336312 0.778946
-1.13059 -0.644009 0.220471 -0.529281 -0.336311 0.778946
-0.927533 -0.57572 0.159509 -0.52928 -0.336311 0.778946
0.574004 -0.107525 -0.14727 -0.529281 -0.336311 0.778946
0.573816 -0.168382 0.090888 -0.52928 -0.336311 0.778946
0.614005 -0.203582 0.26962 -0.52928 -0.336311 0.778946
0.67716 -0.22419 0.414556 -0.52928 -0.336311 0.778946
0.753026 -0.236721 0.540784 -0.52928 -0.336312 0.778946
0.840663 -0.241774 0.649689 -0.529281 -0.336311 0.778946
0.938057 -0.240625 0.744233 -0.52928 -0.336311 0.778946
0.197147 -0.772146 2.07252 -0.529281 -0.336312 0.778946
1.16308 -0.219117 0.888824 -0.52928 -0.336311 0.778946
1.29036 -0.198979 0.939386 -0.52928 -0.336311 0.778946
1.42874 -0.171786 0.973607 -0.529281 -0.336311 0.778946
1.58137 -0.135542 0.986865 -0.52928 -0.336312 0.778946
1.7521 -0.0877973 0.973484 -0.529281 -0.336311 0.778946
1.9547 -0.0197979 0.913192 -0.52928 -0.336311 0.778946
2.2787 0.125337 0.674241 -0.52928 -0.336312 0.778946
-1.59219 -0.67648 -0.520431 -0.46768 -0.533176 0.704981
-1.53747 -0.730232 -0.361097 -0.46768 -0.533176 0.704981
-1.45889 -0.75678 -0.237735 -0.46768 -0.533176 0.704981
-1.35876 -0.758763 -0.146855 -0.46768 -0.533176 0.704981
-1.24403 -0.744096 -0.0779873 -0.46768 -0.533176 0.704981
-1.10681 -0.703798 -0.0430111 -0.46768 -0.533176 0.704981
-0.942802 -0.632955 -0.0484226 -0.46768 -0.533176 0.704981
0.570912 0.047538 -0.153853 -0.46768 -0.533176 0.704981
0.565998 -0.0741991 0.0953713 -0.46768 -0.533176 0.704981
0.608119 -0.142312 0.273691 -0.46768 -0.533176 0.704981
0.670674 -0.187132 0.421214 -0.46768 -0.533176 0.704981
0.749589 -0.2133 0.544073 -0.46768 -0.533176 0.704981
0.839237 -0.227232 0.650754 -0.46768 -0.533176 0.704981
0.937561 -0.231271 0.744355 -0.467681 -0.533176 0.704981
1.04449 -0.225499 0.824982 -0.46768 -0.533176 0.704981
1.16214 -0.207514 0.889461 -0.46768 -0.533176 0.704981
1.28815 -0.179988 0.941326 -0.46768 -0.533176 0.704981
1.42485 -0.14028 0.977081 -0.46768 -0.533176 0.704981
1.57567 -0.0844714 0.991549 -0.46768 -0.533176 0.704981
1.74537 -0.00714142 0.977561 -0.46768 -0.533176 0.704981
1.955 0.115717 0.903373 -0.467681 -0.533176 0.704981
-1.4659 -0.590958 -0.706938 -0.382748 -0.705956 0.595928
-1.40962 -0.68045 -0.547297 -0.382747 -0.705956 0.595928
-1.32225 -0.712582 -0.436077 -0.382748 -0.705956 0.595928
-1.22451 -0.725589 -0.341002 -0.382747 -0.705956 0.595928
-1.10529 -0.698988 -0.279361 -0.382747 -0.705956 0.595928
-0.973842 -0.649836 -0.236756 -0.382748 -0.705956 0.595928
-0.815637 -0.551328 -0.235815 -0.382747 -0.705956 0.595928
-0.655615 -1.60922 1.24587 -0.382747 -0.705956 0.595929
-0.657607 -1.80618 1.49623 -0.382747 -0.705956 0.595929
-0.571907 -1.8414 1.61006 -0.382747 -0.705956 0.595928
-0.463466 -1.83468 1.68848 -0.382747 -0.705956 0.595928
-0.335223 -1.79143 1.73607 -0.382747 -0.705956 0.595928
-0.165342 -1.67139 1.71883 -0.382747 -0.705956 0.595928
0.745239 -0.185166 0.54834 -0.382747 -0.705956 0.595928
0.837159 -0.208916 0.652484 -0.382747 -0.705956 0.595928
0.936556 -0.218873 0.744985 -0.382747 -0.705956 0.595928
1.04346 -0.214979 0.825794 -0.382748 -0.705956 0.595928
1.16055 -0.192315 0.890758 -0.382747 -0.705956 0.595928
1.28555 -0.155049 0.943396 -0.382748 -0.705956 0.595928
1.42114 -0.0982541 0.979549 -0.382748 -0.705956 0.595928
1.57085 -0.015408 0.993711 -0.382748 -0.705956 0.595928
1.74576 0.113911 0.968643 -0.382748 -0.705956 0.595928
-1.42369 -0.547569 -0.770363 -0.306301 -0.813322 0.494659
-1.34791 -0.628393 -0.639116 -0.306301 -0.813322 0.494659
-1.25834 -0.672573 -0.530157 -0.3063 -0.813322 0.494659
-1.15348 -0.676151 -0.445892 -0.306301 -0.813322 0.494659
-1.0414 -0.660564 -0.373282 -0.306301 -0.813322 0.494659
-0.913676 -0.603453 -0.325927 -0.3063 -0.813322 0.494659
-0.768635 -0.500346 -0.306548 -0.3063 -0.813322 0.494659
-0.947059 -2.10222 0.99606 -0.3063 -0.813322 0.494658
-0.920727 -2.31432 1.20715 -0.3063 -0.813322 0.494659
-0.854894 -2.42154 1.35445 -0.3063 -0.813322 0.494659
-0.771497 -2.48212 1.47338 -0.3063 -0.813322 0.494659
-0.679645 -2.52025 1.57866 -0.3063 -0.813323 0.494658
-0.579051 -2.53516 1.66982 -0.3063 -0.813322 0.494659
-0.471216 -2.53085 1.74929 -0.3063 -0.813322 0.494659
-0.35728 -2.51034 1.8189 -0.3063 -0.813322 0.494659
-0.234315 -2.46585 1.87394 -0.3063 -0.813322 0.494659
-0.103224 -2.39979 1.91585 -0.3063 -0.813322 0.494659
0.0420736 -2.29601 1.93482 -0.3063 -0.813322 0.494659
0.213884 -2.12182 1.91096 -0.3063 -0.813322 0.494659
1.04256 -0.203455 0.826313 -0.306301 -0.813322 0.494659
1.15867 -0.177154 0.892406 -0.3063 -0.813322 0.494659
1.28263 -0.130041 0.945841 -0.3063 -0.813322 0.494659
1.41769 -0.0534257 0.981333 -0.306301 -0.813322 0.494659
1.56913 0.0666469 0.990395 -0.306301 -0.813322 0.494659
1.78068 0.346355 0.902367 -0.3063 -0.813322 0.494659
-1.42716 -0.241171 -1.02086 -0.268219 -0.855214 0.443472
-1.41222 -0.5339 -0.787736 -0.26822 -0.855214 0.443471
-1.32915 -0.609376 -0.667264 -0.26822 -0.855214 0.443471
-1.23644 -0.654153 -0.562712 -0.26822 -0.855214 0.443471
-1.13025 -0.655915 -0.480465 -0.268219 -0.855214 0.443471
-1.01777 -0.63761 -0.408624 -0.268219 -0.855214 0.443471
-0.895496 -0.588113 -0.352958 -0.268219 -0.855214 0.443471
-0.757147 -0.487344 -0.323878 -0.26822 -0.855214 0.443471
-0.572217 -0.238053 -0.371814 -0.268219 -0.855215 0.443471
-0.942978 -2.44129 1.01467 -0.268219 -0.855215 0.443471
-0.878439 -2.57587 1.16579 -0.268219 -0.855214 0.443472
-0.799241 -2.6637 1.29267 -0.26822 -0.855214 0.443472
-0.710995 -2.72268 1.40459 -0.26822 -0.855214 0.443471
-0.61423 -2.75451 1.50242 -0.268219 -0.855214 0.443472
-0.512177 -2.76947 1.59151 -0.26822 -0.855214 0.443472
-0.404076 -2.76515 1.67061 -0.26822 -0.855214 0.443471
-0.291301 -2.74592 1.74197 -0.268219 -0.855215 0.443471
-0.171908 -2.70559 1.80239 -0.268219 -0.855215 0.443471
-0.0462975 -2.64544 1.85253 -0.26822 -0.855214 0.443471
0.08822 -2.55689 1.88795 -0.268219 -0.855214 0.443472
0.236321 -2.42503 1.9009 -0.26822 -0.855214 0.443472
0.417202 -2.18865 1.85966 -0.268219 -0.855214 0.443471
1.15754 -0.168431 0.893411 -0.268219 -0.855214 0.443471
1.28092 -0.115396 0.947243 -0.268219 -0.855214 0.443471
1.41594 -0.025243 0.981827 -0.26822 -0.855214 0.443471
1.57073 0.127949 0.983723 -0.268219 -0.855214 0.443471
-1.45655 -0.316923 -0.972988 -0.222328 -0.899941 0.375069
-1.3972 -0.510455 -0.811625 -0.222328 -0.899941 0.375069
-1.30928 -0.58832 -0.698466 -0.222328 -0.899941 0.375069
-1.2117 -0.627079 -0.601606 -0.222328 -0.899941 0.375069
-1.10632 -0.634274 -0.517902 -0.222327 -0.899941 0.375069
-0.994035 -0.613507 -0.445851 -0.222328 -0.899941 0.375069
-0.875454 -0.567259 -0.384419 -0.222327 -0.899941 0.375069
-0.745118 -0.473431 -0.342818 -0.222328 -0.899941 0.375069
-0.593921 -0.295163 -0.336408 -0.222328 -0.899941 0.375069
-0.917717 -2.47332 0.732798 -0.222328 -0.899941 0.375069
-0.862622 -2.68406 0.901331 -0.222328 -0.899941 0.375069
-0.787418 -2.81339 1.03594 -0.222328 -0.899941 0.375069
-0.699413 -2.89091 1.14895 -0.222327 -0.899941 0.375069
-0.606239 -2.94751 1.25325 -0.222328 -0.899941 0.375069
-0.507256 -2.98059 1.34774 -0.222327 -0.899941 0.375069
-0.40393 -2.9961 1.43491 -0.222328 -0.899941 0.375069
-0.296557 -2.99522 1.51525 -0.222328 -0.899941 0.375069
-0.18452 -2.97546 1.58772 -0.222327 -0.899941 0.375069
-0.0686581 -2.94022 1.65374 -0.222328 -0.899941 0.375069
0.052096 -2.88518 1.71151 -0.222328 -0.899941 0.375069
0.179379 -2.80371 1.75826 -0.222328 -0.899941 0.375069
0.314581 -2.69018 1.79165 -0.222327 -0.899941 0.375069
0.464264 -2.51804 1.80061 -0.222328 -0.899941 0.375069
1.1562 -0.150957 0.894787 -0.222328 -0.899941 0.375069
1.27901 -0.0875778 0.949079 -0.222328 -0.899941 0.375069
1.415 0.029141 0.98114 -0.222328 -0.899941 0.375069
-1.46638 -0.336546 -0.957452 -0.162852 -0.943694 0.28796
-1.38561 -0.492176 -0.829952 -0.162852 -0.943694 0.287959
-1.29068 -0.565705 -0.727504 -0.162852 -0.943694 0.287959
-1.18908 -0.600605 -0.636843 -0.162852 -0.943694 0.287959
-1.08327 -0.611134 -0.553619 -0.162852 -0.943694 0.287959
-0.971418 -0.586643 -0.481081 -0.162852 -0.943694 0.287959
-0.85588 -0.540778 -0.415065 -0.162852 -0.943694 0.287959
-0.734098 -0.458732 -0.360089 -0.162852 -0.943694 0.287959
-0.600795 -0.309931 -0.325482 -0.162852 -0.943694 0.287959
-0.791208 -2.66065 0.551839 -0.162852 -0.943694 0.287959
-0.717618 -2.85787 0.692031 -0.162852 -0.943694 0.287959
-0.631705 -2.98368 0.810433 -0.162852 -0.943694 0.287959
-0.538897 -3.06954 0.916641 -0.162852 -0.943694 0.287959
-0.440682 -3.12406 1.01329 -0.162852 -0.943694 0.287959
-0.340011 -3.16435 1.1056 -0.162852 -0.943694 0.28796
-0.234571 -3.177 1.18947 -0.162852 -0.943694 0.28796
-0.127377 -3.1795 1.27024 -0.162852 -0.943694 0.287959
-0.0165288 -3.16081 1.34455 -0.162852 -0.943694 0.28796
0.0970067 -3.12656 1.41411 -0.162852 -0.943694 0.287959
0.213637 -3.07437 1.4782 -0.162852 -0.943694 0.28796
0.334706 -2.99645 1.53443 -0.162852 -0.943694 0.287959
0.460732 -2.88982 1.5819 -0.162852 -0.943694 0.287959
0.59615 -2.72875 1.61277 -0.162852 -0.943694 0.287959
0.752926 -2.44393 1.60587 -0.162852 -0.943694 0.28796
1.27615 -0.0356261 0.951009 -0.162852 -0.943694 0.287959
1.42097 0.179959 0.965236 -0.162852 -0.943694 0.287959
-1.54412 -0.0270032 -1.09888 -0.11311 -0.969019 0.219565
-1.47381 -0.350677 -0.946184 -0.11311 -0.969019 0.219566
-1.38147 -0.485651 -0.836244 -0.113109 -0.969019 0.219565
-1.28137 -0.55406 -0.741385 -0.113109 -0.969019 0.219565
-1.1769 -0.585124 -0.654988 -0.113109 -0.969019 0.219565
-1.07017 -0.596804 -0.572984 -0.113109 -0.969019 0.219565
-0.959224 -0.572315 -0.499175 -0.113109 -0.969019 0.219566
-0.845873 -0.527253 -0.430027 -0.113109 -0.969019 0.219566
-0.72894 -0.451504 -0.367833 -0.113109 -0.969019 0.219566
-0.605044 -0.316105 -0.319154 -0.113109 -0.969019 0.219566
-0.457034 0.0258838 -0.317286 -0.113109 -0.969019 0.219565
-0.666959 -2.69858 0.379397 -0.113109 -0.969019 0.219566
-0.583419 -2.90892 0.506413 -0.113109 -0.969019 0.219565
-0.490807 -3.04153 0.61582 -0.113109 -0.969019 0.219565
-0.392466 -3.12506 0.714104 -0.113109 -0.969019 0.219565
-0.291414 -3.18536 0.807125 -0.113109 -0.969019 0.219566
-0.187852 -3.22417 0.895275 -0.113109 -0.969019 0.219566
-0.0816596 -3.24043 0.978318 -0.113109 -0.969019 0.219565
0.0259554 -3.24451 1.0586 -0.113109 -0.969019 0.219566
0.136386 -3.22446 1.13341 -0.113109 -0.969019 0.219565
0.248405 -3.19081 1.20515 -0.113109 -0.969019 0.219566
0.363158 -3.13374 1.27158 -0.11311 -0.969019 0.219565
0.480702 -3.05276 1.33258 -0.113109 -0.969019 0.219565
0.601944 -2.94009 1.38641 -0.113109 -0.969019 0.219565
0.729083 -2.7769 1.42879 -0.113109 -0.969019 0.219566
0.873414 -2.46643 1.4378 -0.113109 -0.969019 0.219566
1.27363 0.036234 0.950094 -0.113109 -0.969019 0.219565
-1.56802 -0.143093 -1.05412 -0.0519991 -0.991551 0.118839
-1.47043 -0.344133 -0.9508 -0.0519991 -0.991551 0.118839
-1.36863 -0.464687 -0.857125 -0.0519983 -0.991551 0.118839
-1.26392 -0.529974 -0.770073 -0.0519991 -0.991551 0.118839
-1.15727 -0.558158 -0.687468 -0.0519983 -0.991551 0.118839
-1.0496 -0.566799 -0.607206 -0.0519983 -0.991551 0.118839
-0.940538 -0.549092 -0.530102 -0.0519991 -0.991551 0.118839
-0.829993 -0.503003 -0.456398 -0.0519991 -0.991551 0.118839
-0.718093 -0.43108 -0.385792 -0.0519987 -0.991551 0.118839
-0.603799 -0.31354 -0.320651 -0.0519991 -0.991551 0.118839
-0.483765 -0.0865147 -0.268634 -0.0519989 -0.991551 0.118839
-0.408749 -2.77981 0.212615 -0.0519989 -0.991551 0.118839
-0.309662 -2.95222 0.312506 -0.0519989 -0.991551 0.118839
-0.207228 -3.06081 0.404747 -0.0519989 -0.991551 0.118839
-0.103038 -3.13591 0.492975 -0.0519989 -0.991551 0.118839
0.00260541 -3.18331 0.577883 -0.0519989 -0.991551 0.118839
0.109487 -3.20709 0.65996 -0.0519988 -0.991551 0.118839
0.217121 -3.21652 0.740317 -0.0519989 -0.991551 0.118839
0.326237 -3.19769 0.817286 -0.0519989 -0.991551 0.118839
0.435997 -3.16659 0.892786 -0.0519988 -0.991551 0.118839
0.547197 -3.10802 0.964994 -0.0519987 -0.991551 0.118839
0.659701 -3.02459 1.03422 -0.0519991 -0.991551 0.118838
0.774194 -2.90322 1.0989 -0.0519987 -0.991551 0.118838
0.8922 -2.71488 1.15556 -0.0519987 -0.991551 0.118839
-1.57835 -0.18201 -1.03456 0.0284886 -0.999518 -0.0123423
-1.4659 -0.334943 -0.957232 0.0284886 -0.999518 -0.0123423
-1.35486 -0.438407 -0.879294 0.0284894 -0.999518 -0.0123423
-1.2451 -0.497129 -0.800802 0.0284894 -0.999518 -0.0123423
-1.13615 -0.527133 -0.721956 0.0284886 -0.999518 -0.0123423
-1.02791 -0.532415 -0.642805 0.0284894 -0.999518 -0.0123423
-0.920177 -0.519934 -0.563434 0.028489 -0.999518 -0.0123423
-0.813347 -0.475714 -0.483672 0.028489 -0.999518 -0.0123423
-0.707139 -0.409679 -0.40364 0.028489 -0.999518 -0.0123423
-0.601901 -0.309587 -0.323186 0.028489 -0.999518 -0.0123423
-0.498563 -0.142869 -0.241912 0.0284892 -0.999518 -0.0123423
-0.108279 -2.4589 -0.0328614 0.028489 -0.999518 -0.0123423
0.0067603 -2.70271 0.0433442 0.028489 -0.999518 -0.0123423
0.118327 -2.82467 0.121055 0.028489 -0.999518 -0.0123423
0.228493 -2.8975 0.199372 0.028489 -0.999518 -0.0123423
0.337826 -2.94112 0.27805 0.028489 -0.999518 -0.0123423
0.446267 -2.95341 0.357115 0.028489 -0.999518 -0.0123423
0.554056 -2.94284 0.436461 0.028489 -0.999518 -0.0123423
0.661152 -2.90797 0.516108 0.028489 -0.999518 -0.0123423
0.767236 -2.83756 0.596194 0.028489 -0.999518 -0.0123423
0.872237 -2.72919 0.676749 0.028489 -0.999518 -0.0123423
0.974871 -2.53777 0.758329 0.028489 -0.999518 -0.0123423
-1.5898 -0.211228 -1.01695 0.111038 -0.984488 -0.135844
-1.46733 -0.336193 -0.955387 0.111038 -0.984488 -0.135844
-1.34882 -0.425958 -0.888971 0.111038 -0.984488 -0.135844
-1.23465 -0.477285 -0.81725 0.111038 -0.984488 -0.135844
-1.12301 -0.506184 -0.742434 0.111038 -0.984488 -0.135844
-1.01426 -0.509542 -0.664095 0.111038 -0.984488 -0.135844
-0.907172 -0.498049 -0.583706 0.111038 -0.984488 -0.135844
-0.803207 -0.458915 -0.499503 0.111038 -0.984488 -0.135844
-0.701657 -0.398359 -0.412345 0.111038 -0.984488 -0.135844
-0.6032 -0.310377 -0.321401 0.111038 -0.984488 -0.135844
-0.511 -0.166916 -0.222803 0.111038 -0.984488 -0.135844
-0.432623 0.0990842 -0.107296 0.111038 -0.984488 -0.135844
0.483028 -2.25375 0.0408671 0.111038 -0.984488 -0.135844
0.597957 -2.31182 0.111659 0.111038 -0.984488 -0.135844
0.703507 -2.28673 0.193923 0.111038 -0.984488 -0.135844
0.79318 -2.12087 0.295611 0.111038 -0.984488 -0.135844
-1.58524 -0.204703 -1.02083 0.176338 -0.951899 -0.250584
-1.45691 -0.315812 -0.970417 0.176338 -0.951899 -0.250584
-1.33403 -0.397522 -0.912269 0.176338 -0.951899 -0.250584
-1.21755 -0.444666 -0.84502 0.176338 -0.951899 -0.250584
-1.1046 -0.472714 -0.772746 0.176338 -0.951899 -0.250584
-0.995882 -0.477955 -0.694467 0.176338 -0.951899 -0.250584
-0.890345 -0.46601 -0.611664 0.176338 -0.951899 -0.250584
-0.788442 -0.43446 -0.5237 0.176338 -0.951899 -0.250584
-0.691187 -0.377816 -0.42913 0.176338 -0.951899 -0.250584
-0.597855 -0.299987 -0.328983 0.176338 -0.951899 -0.250584
-0.513849 -0.171821 -0.215585 0.176338 -0.951899 -0.250584
-0.44396 0.0325508 -0.0821269 0.176338 -0.951899 -0.250584
-1.57383 -0.180684 -1.03463 0.171366 -0.950587 -0.258879
-1.44636 -0.294648 -0.984869 0.171367 -0.950587 -0.258879
-1.32412 -0.379623 -0.927213 0.171367 -0.950587 -0.258879
-1.20846 -0.428046 -0.859601 0.171366 -0.950587 -0.258879
-1.09639 -0.456634 -0.786588 0.171366 -0.950587 -0.258879
-0.988038 -0.464537 -0.707942 0.171366 -0.950587 -0.258879
-0.883267 -0.452597 -0.623891 0.171366 -0.950587 -0.258879
-0.781604 -0.423416 -0.535145 0.171366 -0.950587 -0.258879
-0.68496 -0.366399 -0.438819 0.171366 -0.950587 -0.258879
-0.592304 -0.287249 -0.336464 0.171366 -0.950587 -0.258879
-0.5082 -0.160669 -0.221193 0.171366 -0.950587 -0.258879
-0.438985 0.0485026 -0.0834297 0.171366 -0.950587 -0.258879
-0.923865 -2.46964 0.78043 0.171366 -0.950587 -0.258879
-0.751162 -2.83452 0.761857 0.171367 -0.950587 -0.258879
-0.616464 -2.98859 0.800699 0.171366 -0.950587 -0.258879
-0.490906 -3.09196 0.853346 0.171366 -0.950587 -0.258879
-0.37192 -3.15887 0.915923 0.171366 -0.950587 -0.258879
-0.257959 -3.19791 0.986088 0.171366 -0.950587 -0.258879
-0.146463 -3.22327 1.05998 0.171366 -0.950587 -0.258879
-0.0400264 -3.22057 1.14152 0.171366 -0.950587 -0.258879
0.0639827 -3.2044 1.22672 0.171366 -0.950587 -0.258879
0.163198 -3.16165 1.31916 0.171366 -0.950587 -0.258878
0.257999 -3.09441 1.41827 0.171366 -0.950587 -0.258879
0.347083 -2.99545 1.52602 0.171366 -0.950587 -0.258879
0.42483 -2.8336 1.65089 0.171367 -0.950587 -0.258879
0.164571 -0.796804 2.28639 0.171366 -0.950587 -0.258879
0.267668 -0.775575 2.37297 0.171366 -0.950587 -0.258879
0.367309 -0.735179 2.46477 0.171366 -0.950587 -0.258879
0.462559 -0.670424 2.5632 0.171366 -0.950587 -0.258879
0.553659 -0.582657 2.6679 0.171366 -0.950587 -0.258879
0.636247 -0.447663 2.78546 0.171366 -0.950587 -0.258879
0.701077 -0.214165 2.92985 0.171366 -0.950587 -0.258879
-0.86126 -2.59587 0.67027 0.171366 -0.950587 -0.258879
-0.706762 -2.85978 0.679197 0.171366 -0.950587 -0.258879
-0.573489 -3.00594 0.720191 0.171367 -0.950587 -0.258879
-0.44907 -3.10299 0.77456 0.171366 -0.950587 -0.258879
-0.329384 -3.17378 0.83608 0.171366 -0.950587 -0.258879
-0.215595 -3.21187 0.906504 0.171366 -0.950587 -0.258879
-0.104706 -3.23386 0.981313 0.171366 -0.950587 -0.258879
0.00293394 -3.23783 1.06103 0.171366 -0.950587 -0.258879
0.106701 -3.22033 1.1466 0.171366 -0.950587 -0.258879
0.207598 -3.1869 1.2365 0.171366 -0.950587 -0.258879
0.303044 -3.12323 1.33464 0.171366 -0.950587 -0.258879
0.393963 -3.03446 1.43961 0.171366 -0.950587 -0.258879
0.476706 -2.90032 1.55694 0.171366 -0.950587 -0.258879
0.537328 -2.64349 1.70768 0.171366 -0.950587 -0.258879
0.305868 -0.766437 2.29967 0.171366 -0.950587 -0.258879
0.406702 -0.732661 2.38967 0.171366 -0.950587 -0.258879
0.502024 -0.6683 2.488 0.171366 -0.950587 -0.258879
0.593617 -0.583267 2.59195 0.171366 -0.950587 -0.258879
0.678578 -0.461435 2.70593 0.171366 -0.950587 -0.258879
0.748112 -0.254037 2.84321 0.171366 -0.950587 -0.258879
-2.17271 -0.296308 0.212836 0.171365 -0.950587 -0.258879
-2.04492 -0.41206 0.262111 0.171365 -0.950587 -0.258879
-1.92828 -0.465983 0.328224 0.171367 -0.950587 -0.258879
-1.81912 -0.478383 0.405646 0.171366 -0.950587 -0.258879
-1.7154 -0.460573 0.491295 0.171366 -0.950587 -0.258879
-1.6215 -0.388334 0.591768 0.171366 -0.950587 -0.258879
-1.5414 -0.23954 0.713088 0.171366 -0.950587 -0.258879
-0.675917 -2.66802 0.37492 0.171367 -0.950587 -0.258879
-0.532468 -2.87063 0.40054 0.171366 -0.950587 -0.258879
-0.402345 -2.99932 0.446293 0.171366 -0.950587 -0.258879
-0.278967 -3.09059 0.502233 0.171367 -0.950587 -0.258879
-0.160278 -3.15586 0.565259 0.171366 -0.950587 -0.258879
-0.0462312 -3.19538 0.635294 0.171366 -0.950587 -0.258879
0.0652099 -3.22044 0.709269 0.171366 -0.950587 -0.258879
0.172924 -3.22482 0.788874 0.171366 -0.950587 -0.258879
0.277937 -3.21423 0.872558 0.171366 -0.950587 -0.258879
0.37967 -3.18543 0.961198 0.171366 -0.950587 -0.258879
0.477541 -3.13522 1.05567 0.171366 -0.950587 -0.258879
0.571904 -3.06554 1.15544 0.171366 -0.950587 -0.258879
0.659053 -2.95585 1.26612 0.171366 -0.950587 -0.258879
0.737426 -2.79748 1.39004 0.171367 -0.950587 -0.258879
0.786071 -2.4742 1.55888 0.171366 -0.950587 -0.258879
0.561735 -0.636675 2.14011 0.171366 -0.950587 -0.258879
0.657938 -0.577207 2.2371 0.171366 -0.950587 -0.258879
0.750602 -0.498111 2.33944 0.171366 -0.950587 -0.258879
0.836088 -0.379193 2.45263 0.171366 -0.950587 -0.258879
0.909712 -0.194476 2.58373 0.171366 -0.950587 -0.258879
-2.21986 -0.34591 -0.196044 0.171367 -0.950587 -0.258879
-2.08588 -0.496011 -0.156122 0.171365 -0.950587 -0.258879
-1.96174 -0.591498 -0.101328 0.171366 -0.950587 -0.258879
-1.84458 -0.648299 -0.0359989 0.171366 -0.950587 -0.258879
-1.73153 -0.682296 0.0355412 0.171367 -0.950587 -0.258879
-1.6221 -0.696201 0.112553 0.171366 -0.950587 -0.258879
-1.51765 -0.682483 0.197088 0.171367 -0.950587 -0.258879
-1.41577 -0.654473 0.285516 0.171367 -0.950587 -0.258879
-1.32033 -0.590785 0.383658 0.171366 -0.950587 -0.258879
-1.23015 -0.49791 0.48975 0.171367 -0.950587 -0.258879
-1.15124 -0.342518 0.612867 0.171366 -0.950587 -0.258879
-0.540635 -2.54337 0.175095 0.171366 -0.950587 -0.258879
-0.394112 -2.76303 0.19607 0.171366 -0.950587 -0.258879
-0.262406 -2.9005 0.239431 0.171366 -0.950587 -0.258879
-0.138402 -2.99525 0.294426 0.171366 -0.950587 -0.258879
-0.0198395 -3.05981 0.357643 0.171366 -0.950587 -0.258879
0.0950409 -3.10395 0.42642 0.171366 -0.950587 -0.258879
0.207051 -3.13217 0.499535 0.171366 -0.950587 -0.258879
0.314795 -3.13672 0.579095 0.171367 -0.950587 -0.258879
0.420552 -3.13025 0.661655 0.171366 -0.950587 -0.258879
0.522052 -3.10016 0.750647 0.171366 -0.950587 -0.258879
0.620715 -3.05434 0.843925 0.171366 -0.950587 -0.258879
0.714744 -2.98282 0.944201 0.171366 -0.950587 -0.258879
0.802631 -2.87722 1.05376 0.171366 -0.950587 -0.258879
0.881661 -2.72249 1.17669 0.171366 -0.950587 -0.258879
0.936995 -2.43632 1.33543 0.171366 -0.950587 -0.258879
0.689014 -0.467627 1.95237 0.171366 -0.950587 -0.258879
0.784187 -0.402442 2.05092 0.171366 -0.950587 -0.258879
0.874599 -0.310859 2.15666 0.171366 -0.950587 -0.258879
0.956761 -0.173502 2.27487 0.171366 -0.950587 -0.258879
1.01299 0.107731 2.43226 0.171366 -0.950587 -0.258879
-2.27381 -0.0182294 -0.561811 0.171367 -0.950587 -0.258879
-2.11212 -0.322057 -0.563756 0.171367 -0.950587 -0.258879
-1.97441 -0.492796 -0.529456 0.171367 -0.950587 -0.258879
-1.84949 -0.592635 -0.475847 0.171366 -0.950587 -0.258879
-1.72963 -0.664418 -0.414597 0.171367 -0.950587 -0.258879
-1.61324 -0.716897 -0.348091 0.171366 -0.950587 -0.258879
-1.50221 -0.739698 -0.273502 0.171367 -0.950587 -0.258879
-1.39312 -0.751734 -0.19598 0.171367 -0.950587 -0.258879
-1.28801 -0.741666 -0.11244 0.171366 -0.950587 -0.258879
-1.18558 -0.716713 -0.0248448 0.171366 -0.950587 -0.258879
-1.08709 -0.669929 0.0686945 0.171367 -0.950587 -0.258879
-0.993137 -0.597998 0.169082 0.171366 -0.950587 -0.258879
-0.90418 -0.498338 0.277022 0.171366 -0.950587 -0.258879
-0.8247 -0.346107 0.399279 0.171366 -0.950587 -0.258879
-0.774969 -0.0288557 0.566476 0.171366 -0.950587 -0.258879
-0.233838 -2.43745 -0.00867298 0.171367 -0.950587 -0.258879
-0.0923374 -2.62925 0.0198922 0.171366 -0.950587 -0.258879
0.0359002 -2.74748 0.0684916 0.171366 -0.950587 -0.258879
0.156941 -2.82579 0.127965 0.171366 -0.950587 -0.258879
0.272935 -2.87611 0.195058 0.171366 -0.950587 -0.258879
0.384796 -2.9035 0.268399 0.171366 -0.950587 -0.258879
0.493674 -2.91434 0.346246 0.171366 -0.950587 -0.258879
0.59806 -2.90027 0.430877 0.171366 -0.950587 -0.258879
0.699441 -2.86952 0.520048 0.171366 -0.950587 -0.258879
0.796037 -2.81224 0.616448 0.171366 -0.950587 -0.258879
0.887055 -2.72401 0.721274 0.171366 -0.950587 -0.258879
0.970377 -2.59308 0.837728 0.171366 -0.950587 -0.258879
1.02959 -2.32841 0.990606 0.171366 -0.950587 -0.258879
0.736781 -0.111071 1.67527 0.171366 -0.950587 -0.258879
0.831892 -0.0455498 1.77391 0.171366 -0.950587 -0.258878
0.918588 0.0666554 1.88527 0.171366 -0.950587 -0.258879
0.974349 0.350453 2.04335 0.171366 -0.950587 -0.258879
-2.18895 0.161633 -0.759535 0.171367 -0.950587 -0.258879
-2.01198 -0.226964 -0.784565 0.171365 -0.950587 -0.258879
-1.87175 -0.41172 -0.754083 0.171366 -0.950587 -0.258879
-1.74468 -0.523443 -0.70371 0.171367 -0.950587 -0.258879
-1.62416 -0.598852 -0.643448 0.171367 -0.950587 -0.258879
-1.50776 -0.651464 -0.576978 0.171366 -0.950587 -0.258879
-1.39423 -0.688071 -0.506149 0.171366 -0.950587 -0.258879
-1.28457 -0.7033 -0.429497 0.171366 -0.950587 -0.258879
-1.17768 -0.703107 -0.348646 0.171366 -0.950587 -0.258879
-1.07399 -0.685153 -0.262957 0.171366 -0.950587 -0.258879
-0.973943 -0.647003 -0.171769 0.171366 -0.950587 -0.258879
-0.876883 -0.59229 -0.0760699 0.171366 -0.950587 -0.258879
-0.78573 -0.504811 0.0285523 0.171366 -0.950587 -0.258879
-0.700443 -0.384791 0.142037 0.171366 -0.950587 -0.258879
-0.628367 -0.19149 0.275478 0.171366 -0.950587 -0.258879
0.0758107 -2.31829 -0.0613298 0.171366 -0.950587 -0.258879
0.210952 -2.47481 -0.023158 0.171366 -0.950587 -0.258879
0.333503 -2.56151 0.0340303 0.171367 -0.950587 -0.258879
0.44955 -2.61211 0.101048 0.171366 -0.950587 -0.258879
0.560171 -2.63262 0.176262 0.171366 -0.950587 -0.258879
0.66594 -2.62622 0.258803 0.171366 -0.950587 -0.258879
0.766887 -2.59307 0.348629 0.171366 -0.950587 -0.25888
0.861716 -2.52598 0.447698 0.171367 -0.950587 -0.258879
0.948658 -2.41514 0.558683 0.171367 -0.950587 -0.258879
1.00204 -2.11816 0.72036 0.171366 -0.950587 -0.258879
-1.83452 0.00329986 -1.01527 0.171367 -0.950587 -0.258879
-1.68743 -0.219531 -0.995153 0.171367 -0.950587 -0.258879
-1.55831 -0.342617 -0.947875 0.171366 -0.950587 -0.258879
-1.43603 -0.427792 -0.890273 0.171366 -0.950587 -0.258879
-1.31884 -0.484763 -0.824989 0.171366 -0.950587 -0.258879
-1.20543 -0.52077 -0.753996 0.171366 -0.950587 -0.258879
-1.09486 -0.540982 -0.678702 0.171366 -0.950587 -0.258879
-0.988747 -0.536485 -0.596679 0.171366 -0.950587 -0.258879
-0.884872 -0.519565 -0.511271 0.171366 -0.950587 -0.258879
-0.785517 -0.477584 -0.41904 0.171366 -0.950587 -0.258879
-0.689807 -0.415384 -0.321302 0.171366 -0.950587 -0.258879
-0.599218 -0.324775 -0.215828 0.171366 -0.950587 -0.258879
-0.517968 -0.182361 -0.0962443 0.171366 -0.950587 -0.258879
-0.454194 0.0569915 0.0497387 0.171366 -0.950587 -0.258879
-1.56802 0.286012 -1.1396 0.171366 -0.950587 -0.258879
-1.41487 0.0296044 -1.12863 0.171366 -0.950587 -0.258879
-1.28517 -0.0967249 -1.08224 0.171366 -0.950587 -0.258879
-1.16426 -0.17433 -1.02257 0.171367 -0.950587 -0.258879
-1.04913 -0.219837 -0.954167 0.171366 -0.950587 -0.258879
-0.937961 -0.243389 -0.879782 0.171366 -0.950587 -0.258879
-0.831851 -0.23888 -0.797756 0.171366 -0.950587 -0.258879
-0.728813 -0.217324 -0.711086 0.171366 -0.950587 -0.258879
-0.632393 -0.159058 -0.614419 0.171366 -0.950587 -0.258879
-0.541569 -0.0697567 -0.509301 0.171366 -0.950587 -0.258879
-0.461761 0.0806591 -0.387539 0.171366 -0.950587 -0.258879
0.693612 -0.397161 0.29032 0.171366 -0.950587 -0.258879
0.837959 -0.604754 0.314584 0.171366 -0.950587 -0.258879
0.962371 -0.701767 0.368962 0.171366 -0.950587 -0.258879
1.07827 -0.75157 0.436198 0.171366 -0.950587 -0.258879
1.18682 -0.760555 0.51455 0.171367 -0.950587 -0.258879
1.29022 -0.74101 0.600671 0.171367 -0.950587 -0.258879
1.38692 -0.684335 0.696904 0.171366 -0.950587 -0.258879
1.47223 -0.564405 0.810364 0.171366 -0.950587 -0.258879
-0.958794 0.319369 -1.03623 0.171366 -0.950587 -0.258879
-0.843863 0.274947 -0.967533 0.171366 -0.950587 -0.258879
-0.740352 0.293875 -0.88158 0.171366 -0.950587 -0.258879
-0.650335 0.387667 -0.775237 0.171366 -0.950587 -0.258879
0.677184 -0.451949 -0.11511 0.171366 -0.950587 -0.258879
0.822719 -0.666132 -0.0926408 0.171366 -0.950587 -0.258879
0.951275 -0.786133 -0.0445231 0.171366 -0.950587 -0.258879
1.07262 -0.866126 0.0144905 0.171366 -0.950587 -0.258879
1.18957 -0.921773 0.0801345 0.171367 -0.950587 -0.258879
1.30068 -0.944984 0.154612 0.171367 -0.950587 -0.258879
1.40897 -0.952555 0.233349 0.171367 -0.950587 -0.258879
1.51324 -0.937866 0.318147 0.171366 -0.950587 -0.258879
1.61345 -0.900589 0.409098 0.171366 -0.950587 -0.258879
1.70945 -0.840009 0.506395 0.171366 -0.950587 -0.258879
1.79827 -0.739592 0.614541 0.171367 -0.950587 -0.258879
1.87624 -0.57899 0.739077 0.171366 -0.950587 -0.258879
0.752079 -0.420206 -0.416177 0.171366 -0.950587 -0.258879
0.899219 -0.643289 -0.396131 0.171366 -0.950587 -0.258879
1.02963 -0.773563 -0.350811 0.171366 -0.950587 -0.258879
1.15266 -0.86291 -0.294345 0.171366 -0.950587 -0.258879
1.27058 -0.923909 -0.230158 0.171366 -0.950587 -0.258879
1.38543 -0.967866 -0.161331 0.171367 -0.950587 -0.258879
1.49597 -0.987933 -0.0859973 0.171366 -0.950587 -0.258879
1.60386 -0.993294 -0.00665835 0.171366 -0.950587 -0.258879
1.70819 -0.978908 0.0780577 0.171367 -0.950587 -0.258879
1.80899 -0.94498 0.168096 0.171367 -0.950587 -0.258879
1.90654 -0.892951 0.263064 0.171366 -0.950587 -0.258879
1.99842 -0.809503 0.366589 0.171366 -0.950587 -0.258879
2.0841 -0.691705 0.479468 0.171367 -0.950587 -0.258879
2.15687 -0.502222 0.61187 0.171367 -0.950587 -0.258879
0.875754 -0.452211 -0.582883 0.171366 -0.950587 -0.258879
1.01552 -0.63438 -0.551696 0.171366 -0.950587 -0.258879
1.14445 -0.756447 -0.50414 0.171366 -0.950587 -0.258879
1.26701 -0.843212 -0.446971 0.171366 -0.950587 -0.258879
1.3855 -0.907361 -0.383642 0.171366 -0.950587 -0.258879
1.49899 -0.943791 -0.312765 0.171366 -0.950587 -0.258879
1.60969 -0.964734 -0.23767 0.171367 -0.950587 -0.258879
1.71747 -0.969489 -0.158166 0.171367 -0.950587 -0.258879
1.82169 -0.954519 -0.073291 0.171366 -0.950587 -0.258879
1.92348 -0.925996 0.0152759 0.171367 -0.950587 -0.258879
2.02045 -0.870823 0.1111 0.171367 -0.950587 -0.258879
2.11417 -0.797567 0.211849 0.171367 -0.950587 -0.258879
2.20088 -0.685436 0.323185 0.171367 -0.950587 -0.258879
2.27769 -0.518421 0.449468 0.171367 -0.950587 -0.258879
2.30752 -0.0907432 0.646739 0.171367 -0.950587 -0.258879
0.976052 -0.401255 -0.715712 0.171366 -0.950587 -0.258879
1.11581 -0.583412 -0.684521 0.171366 -0.950587 -0.258879
1.24522 -0.708146 -0.637691 0.171367 -0.950587 -0.258879
1.36739 -0.792704 -0.579921 0.171366 -0.950587 -0.258879
1.48488 -0.851291 -0.515078 0.171366 -0.950587 -0.258879
1.59908 -0.891686 -0.44528 0.171366 -0.950587 -0.258879
1.70999 -0.913783 -0.3705 0.171367 -0.950587 -0.258879
1.81735 -0.916225 -0.290366 0.171367 -0.950587 -0.258879
1.92246 -0.906144 -0.206822 0.171366 -0.950587 -0.258879
2.02299 -0.870677 -0.116364 0.171367 -0.950587 -0.258879
2.12126 -0.822686 -0.0224961 0.171367 -0.950587 -0.258879
2.21375 -0.742599 0.0801136 0.171367 -0.950587 -0.258879
2.30079 -0.632313 0.190947 0.171367 -0.950587 -0.258879
2.37727 -0.463437 0.317737 0.171367 -0.950587 -0.258879
2.40958 -0.049561 0.511248 0.171367 -0.950587 -0.258879
1.04645 -0.0352099 -0.865943 0.171366 -0.950587 -0.258879
1.21179 -0.359235 -0.873388 0.171366 -0.950587 -0.258879
1.34733 -0.51798 -0.83582 0.171366 -0.950587 -0.258879
1.4729 -0.621397 -0.783186 0.171366 -0.950587 -0.258879
1.59286 -0.693739 -0.722089 0.171366 -0.950587 -0.258879
1.7088 -0.743774 -0.654917 0.171366 -0.950587 -0.258879
1.82029 -0.76908 -0.58101 0.171366 -0.950587 -0.258879
1.92891 -0.778477 -0.50277 0.171366 -0.950587 -0.258879
2.0343 -0.769977 -0.419657 0.171367 -0.950587 -0.258879
2.1359 -0.740481 -0.330825 0.171365 -0.950587 -0.258879
2.23453 -0.694468 -0.237496 0.171365 -0.950587 -0.258879
2.32728 -0.615854 -0.135287 0.171365 -0.950587 -0.258879
2.41462 -0.507177 -0.0248927 0.171367 -0.950587 -0.258879
2.49061 -0.335611 0.10263 0.171367 -0.950587 -0.258879
1.42466 -0.0969616 -0.993651 0.171367 -0.950587 -0.258879
1.56604 -0.288063 -0.964896 0.171366 -0.950587 -0.258879
1.69233 -0.395527 -0.913364 0.171367 -0.950587 -0.258879
1.81186 -0.465452 -0.851609 0.171366 -0.950587 -0.258879
1.92653 -0.50841 -0.782509 0.171366 -0.950587 -0.258879
2.03645 -0.525025 -0.706235 0.171367 -0.950587 -0.258879
2.14233 -0.51924 -0.623862 0.171367 -0.950587 -0.258879
2.24431 -0.491802 -0.535591 0.171365 -0.950587 -0.258879
2.34099 -0.435014 -0.439326 0.171367 -0.950587 -0.258879
2.43274 -0.35085 -0.335607 0.171365 -0.950587 -0.258879
2.51325 -0.204297 -0.214897 0.171367 -0.950587 -0.258879
1.85492 0.00552586 -0.961978 0.171366 -0.950587 -0.258879
1.97937 -0.091688 -0.907655 0.171366 -0.950587 -0.258879
2.09413 -0.135173 -0.838698 0.171367 -0.950587 -0.258879
2.20122 -0.13607 -0.758144 0.171367 -0.950587 -0.258879
2.30027 -0.0924051 -0.665454 0.171367 -0.950587 -0.258879
2.391 -0.00259719 -0.560197 0.171367 -0.950587 -0.258879
-1.94345 1.01122 -0.481986 0.0823261 -0.0365602 -0.995935
-1.96912 0.876883 -0.663332 0.0823253 -0.0365602 -0.995935
-2.00175 0.745636 -0.760347 0.0823253 -0.0365602 -0.995935
-2.03803 0.616008 -0.813273 0.0823253 -0.0365602 -0.995935
-2.07687 0.487517 -0.835262 0.0823253 -0.0365602 -0.995935
-2.11821 0.360141 -0.826869 0.0823253 -0.03656 -0.995935
-2.16189 0.233798 -0.790341 0.0823253 -0.0365601 -0.995935
-2.20883 0.108904 -0.714312 0.0823253 -0.0365602 -0.995935
-2.26081 -0.0137492 -0.577256 0.0823253 -0.0365602 -0.995935
-1.02146 1.17019 -0.148754 0.0823261 -0.0365602 -0.995935
-1.02236 1.02485 -0.629689 0.0823261 -0.0365602 -0.995935
-1.04807 0.890531 -0.810527 0.0823253 -0.0365602 -0.995935
-1.07871 0.758401 -0.931663 0.0823253 -0.0365602 -0.995935
-1.11252 0.627676 -1.01446 0.0823253 -0.0365602 -0.995935
-1.14846 0.497898 -1.07149 0.0823253 -0.03656 -0.995935
-1.18626 0.368948 -1.10597 0.0823253 -0.03656 -0.995935
-1.22554 0.240652 -1.12263 0.0823253 -0.0365601 -0.995935
-1.26633 0.11303 -1.12094 0.0823253 -0.0365602 -0.995935
-1.3087 -0.0138919 -1.10018 0.0823253 -0.0365602 -0.995935
-1.35262 -0.140129 -1.06074 0.0823253 -0.0365602 -0.995935
-1.39837 -0.265545 -0.998971 0.0823253 -0.0365602 -0.995935
-1.44632 -0.389993 -0.91078 0.0823253 -0.0365602 -0.995935
-1.49747 -0.513017 -0.783839 0.0823253 -0.0365602 -0.995935
-1.55381 -0.633735 -0.594058 0.0823253 -0.0365602 -0.995935
-0.766953 0.959529 -0.417385 0.0823257 -0.0365602 -0.995935
-0.786798 0.822603 -0.669128 0.0823257 -0.0365602 -0.995935
-0.815791 0.689741 -0.810195 0.0823257 -0.0365602 -0.995935
-0.848477 0.558518 -0.906586 0.0823257 -0.0365598 -0.995935
-0.88374 0.428438 -0.971812 0.0823257 -0.0365602 -0.995935
-0.921151 0.299314 -1.01104 0.0823257 -0.0365602 -0.995935
-0.960174 0.170905 -1.03078 0.0823253 -0.0365602 -0.995935
-1.00088 0.0432422 -1.0302 0.0823253 -0.0365602 -0.995935
-1.04315 -0.0837224 -1.0106 0.0823261 -0.0365602 -0.995935
-1.08703 -0.209976 -0.971606 0.0823253 -0.0365601 -0.995935
-1.13306 -0.335271 -0.906537 0.0823253 -0.0365602 -0.995935
-1.18166 -0.459426 -0.810375 0.0823261 -0.0365602 -0.995935
-1.23338 -0.582196 -0.676506 0.0823253 -0.0365602 -0.995935
-1.29369 -0.701154 -0.438799 0.0823253 -0.0365598 -0.995935
-0.693134 0.864617 2.21775 0.0823256 -0.0365602 -0.995935
-0.519731 0.641872 -0.371805 0.0823257 -0.0365602 -0.995935
-0.54435 0.507066 -0.565796 0.0823257 -0.0365602 -0.995935
-0.575703 0.375251 -0.678316 0.0823253 -0.0365602 -0.995935
-0.610773 0.245087 -0.74587 0.0823257 -0.0365602 -0.995935
-0.648699 0.116191 -0.778876 0.0823257 -0.0365602 -0.995935
-0.688842 -0.0117203 -0.785055 0.0823253 -0.0365602 -0.995935
-0.730993 -0.138739 -0.76694 0.0823253 -0.0365602 -0.995935
-0.775486 -0.26472 -0.720501 0.0823257 -0.0365602 -0.995935
-0.822514 -0.389573 -0.643396 0.0823253 -0.0365602 -0.995935
-0.873523 -0.512659 -0.51812 0.0823253 -0.0365602 -0.995935
-0.937068 -0.630177 -0.241197 0.0823253 -0.0365598 -0.995935
-0.14028 1.10742 1.9619 0.0823255 -0.0365594 -0.995935
-0.161872 0.97127 1.73131 0.0823255 -0.0365602 -0.995935
-0.191316 0.838608 1.59569 0.0823255 -0.0365602 -0.995935
-0.224633 0.707664 1.50693 0.0823255 -0.0365602 -0.995935
-0.260433 0.577825 1.44821 0.0823255 -0.0365602 -0.995935
-0.298346 0.448923 1.41505 0.0823255 -0.0365602 -0.995935
-0.33793 0.320762 1.4021 0.0823255 -0.03656 -0.995935
-0.379275 0.193385 1.41046 0.0823255 -0.0365601 -0.995935
-0.422329 0.066767 1.4395 0.0823255 -0.0365602 -0.995935
-0.467364 -0.0589719 1.49249 0.0823255 -0.0365602 -0.995935
-0.514637 -0.183716 1.57257 0.0823257 -0.0365601 -0.995935
-0.565453 -0.306889 1.69549 0.0823253 -0.0365602 -0.995935
-0.622087 -0.427475 1.88881 0.0823253 -0.0365602 -0.995935
0.286792 1.05476 1.89263 0.0823255 -0.0365602 -0.995935
0.263891 0.919194 1.67786 0.0823257 -0.0365602 -0.995935
0.234316 0.78659 1.54383 0.0823255 -0.0365598 -0.995935
0.201246 0.655537 1.45208 0.0823255 -0.0365602 -0.995935
0.165903 0.525494 1.38783 0.0823255 -0.0365602 -0.995935
0.128624 0.396311 1.347 0.0823255 -0.0365602 -0.995935
0.0898333 0.267799 1.32446 0.0823256 -0.0365602 -0.995935
0.0493561 0.140035 1.32232 0.0823255 -0.0365602 -0.995935
0.00752268 0.012875 1.33658 0.0823255 -0.0365602 -0.995935
-0.0359181 -0.113572 1.3703 0.0823255 -0.0365602 -0.995935
-0.0811165 -0.239238 1.42527 0.0823255 -0.0365602 -0.995935
-0.128368 -0.363992 1.50508 0.0823255 -0.0365602 -0.995935
-0.178287 -0.487562 1.61717 0.0823255 -0.0365602 -0.995935
-0.232762 -0.609108 1.78437 0.0823255 -0.0365602 -0.995935
-0.299412 -0.725248 2.09886 0.0823254 -0.0365602 -0.995935
-0.379703 -1.41828 0.611109 0.0823255 -0.0365602 -0.995935
-0.402078 -1.55409 0.389975 0.0823255 -0.0365602 -0.995935
-0.43376 -1.68575 0.281442 0.0823255 -0.0365602 -0.995935
-0.468244 -1.81618 0.2068 0.0823255 -0.0365602 -0.995935
-0.505871 -1.94521 0.170176 0.0823253 -0.0365602 -0.995935
0.584949 0.960683 2.00334 0.0823257 -0.0365602 -0.995935
0.564373 0.824082 1.76044 0.0823257 -0.0365602 -0.995935
0.535875 0.690998 1.61338 0.0823253 -0.0365602 -0.995935
0.502903 0.559903 1.52045 0.0823253 -0.0365602 -0.995935
0.467793 0.429755 1.45337 0.0823255 -0.0365602 -0.995935
0.430693 0.300494 1.41038 0.0823255 -0.0365602 -0.995935
0.391921 0.171973 1.38762 0.0823255 -0.0365602 -0.995935
0.35154 0.0441668 1.38431 0.0823255 -0.0365602 -0.995935
0.309727 -0.0830027 1.39833 0.0823255 -0.0365602 -0.995935
0.266133 -0.209381 1.43389 0.0823255 -0.0365602 -0.995935
0.22083 -0.335001 1.49013 0.0823255 -0.0365602 -0.995935
0.173298 -0.459631 1.57333 0.0823255 -0.0365602 -0.995935
0.122658 -0.582881 1.69414 0.0823255 -0.0365602 -0.995935
0.0670202 -0.70391 1.87541 0.0823255 -0.0365602 -0.995935
-0.0179309 -1.39488 0.44404 0.0823255 -0.0365602 -0.995935
-0.0438903 -1.52909 0.266273 0.0823255 -0.0365602 -0.995935
-0.0749285 -1.66104 0.149945 0.0823255 -0.0365602 -0.995935
-0.109298 -1.79152 0.0739222 0.0823255 -0.0365602 -0.995935
-0.145367 -1.92124 0.01845 0.0823255 -0.0365602 -0.995935
-0.183872 -2.04988 -0.0075526 0.0823255 -0.0365602 -0.995935
1.04746 0.788824 -0.338911 0.0823253 -0.0365602 -0.995935
1.02203 0.654378 -0.523118 0.0823253 -0.0365602 -0.995935
0.990076 0.522829 -0.62838 0.0823253 -0.0365602 -0.995935
0.95419 0.393027 -0.686061 0.0823253 -0.0365602 -0.995935
0.915716 0.264374 -0.712431 0.0823253 -0.0365602 -0.995935
0.874838 0.13679 -0.709721 0.0823257 -0.0365601 -0.995935
0.831423 0.0103313 -0.676316 0.0823253 -0.0365602 -0.995935
0.78518 -0.114872 -0.608716 0.0823257 -0.0365602 -0.995935
0.734967 -0.238311 -0.493067 0.0823257 -0.0365601 -0.995935
0.676692 -0.35817 -0.2799 0.0823257 -0.0365602 -0.995935
0.475656 -0.414629 1.66032 0.0823255 -0.0365602 -0.995935
0.426551 -0.538561 1.76256 0.0823255 -0.0365598 -0.995935
0.373047 -0.660539 1.91802 0.0823255 -0.0365598 -0.995935
0.278497 -1.34724 0.602769 0.0823255 -0.0365602 -0.995935
0.258853 -1.48426 0.348592 0.0823256 -0.0365602 -0.995935
0.230489 -1.6174 0.199916 0.0823255 -0.0365602 -0.995935
0.198259 -1.74882 0.0980121 0.0823255 -0.0365602 -0.995935
0.163497 -1.87913 0.0267309 0.0823255 -0.0365602 -0.995935
0.126968 -2.00864 -0.0231787 0.0823255 -0.0365602 -0.995935
0.0883997 -2.13725 -0.0484052 0.0823255 -0.0365602 -0.995935
1.43269 0.94755 -0.298039 0.0823261 -0.0365598 -0.995935
1.41475 0.809778 -0.572804 0.0823253 -0.0365602 -0.995935
1.38587 0.676867 -0.715188 0.0823253 -0.0365602 -0.995935
1.35321 0.545633 -0.811877 0.0823253 -0.0365602 -0.995935
1.31782 0.41561 -0.875582 0.0823261 -0.0365602 -0.995935
1.28039 0.286491 -0.91466 0.0823261 -0.0365602 -0.995935
1.24112 0.158193 -0.931362 0.0823253 -0.0365601 -0.995935
1.20024 0.0306083 -0.928679 0.0823261 -0.0365602 -0.995935
1.15765 -0.0962128 -0.905146 0.0823253 -0.0365602 -0.995935
1.11324 -0.222234 -0.859821 0.0823253 -0.0365602 -0.995935
1.06684 -0.347366 -0.790294 0.0823253 -0.03656 -0.995935
1.01742 -0.471156 -0.684223 0.0823253 -0.0365602 -0.995935
0.964045 -0.593191 -0.530323 0.0823253 -0.0365602 -0.995935
0.8965 -0.708933 -0.205002 0.0823257 -0.0365598 -0.995935
0.577074 -1.44151 0.708383 0.0823253 -0.0365602 -0.995935
0.560124 -1.57972 0.421622 0.0823257 -0.0365602 -0.995935
0.532588 -1.71323 0.262923 0.0823257 -0.0365602 -0.995935
0.5007 -1.84481 0.15688 0.0823255 -0.0365602 -0.995935
0.466148 -1.9752 0.0830524 0.0823255 -0.0365602 -0.995935
0.429736 -2.10477 0.0317374 0.0823255 -0.0365602 -0.995935
0.391163 -2.23338 0.00656685 0.0823255 -0.0365602 -0.995935
1.811 0.838823 -0.488246 0.0823253 -0.0365602 -0.995935
1.78584 0.704259 -0.675628 0.0823253 -0.0365602 -0.995935
1.75533 0.572071 -0.798329 0.0823261 -0.0365602 -0.995935
1.72182 0.441214 -0.884752 0.0823253 -0.0365602 -0.995935
1.68593 0.311412 -0.942412 0.0823253 -0.0365602 -0.995935
1.64838 0.182351 -0.979921 0.0823253 -0.0365601 -0.995935
1.60907 0.0540681 -0.996217 0.0823253 -0.0365602 -0.995935
1.56837 -0.0735938 -0.995632 0.0823253 -0.0365602 -0.995935
1.52617 -0.200593 -0.976953 0.0823253 -0.0365602 -0.995935
1.48229 -0.326847 -0.937981 0.0823261 -0.03656 -0.995935
1.43676 -0.452367 -0.879012 0.0823253 -0.03656 -0.995935
1.38888 -0.576841 -0.79158 0.0823253 -0.0365602 -0.995935
1.33806 -0.700011 -0.668611 0.0823253 -0.0365602 -0.995935
1.2822 -0.82094 -0.484593 0.0823253 -0.0365602 -0.995935
0.866448 -1.80222 0.610458 0.0823257 -0.0365602 -0.995935
0.840543 -1.93645 0.432031 0.0823257 -0.0365602 -0.995935
0.808273 -2.06786 0.330605 0.0823257 -0.0365602 -0.995935
0.773363 -2.19809 0.261107 0.0823253 -0.0365602 -0.995935
0.735575 -2.32705 0.226445 0.0823257 -0.0365602 -0.995935
2.07436 0.755408 -0.421195 0.0823253 -0.0365602 -0.995935
2.0499 0.620531 -0.617103 0.0823253 -0.0365598 -0.995935
2.01988 0.488122 -0.745824 0.0823253 -0.03656 -0.995935
1.9865 0.357208 -0.833795 0.0823253 -0.0365602 -0.995935
1.95076 0.227342 -0.89323 0.0823261 -0.0365601 -0.995935
1.91322 0.0982729 -0.930949 0.0823253 -0.0365602 -0.995935
1.87403 -0.0300628 -0.948675 0.0823253 -0.0365602 -0.995935
1.83331 -0.157717 -0.947885 0.0823253 -0.0365601 -0.995935
1.79107 -0.284694 -0.928596 0.0823253 -0.03656 -0.995935
1.74721 -0.410957 -0.889872 0.0823261 -0.0365602 -0.995935
1.7015 -0.536397 -0.828722 0.0823253 -0.0365602 -0.995935
1.65337 -0.660759 -0.738236 0.0823253 -0.0365602 -0.995935
1.60221 -0.783781 -0.611217 0.082326 -0.0365602 -0.995935
1.54538 -0.904278 -0.415436 0.0823253 -0.0365602 -0.995935
1.03076 -2.13312 0.892037 0.0823253 -0.0365602 -0.995935
1.00819 -2.26884 0.673273 0.0823253 -0.0365602 -0.995935
0.973124 -2.39901 0.60564 0.0823257 -0.0365602 -0.995935
2.41445 0.451496 -0.266988 0.0823253 -0.03656 -0.995935
2.39041 0.316434 -0.467964 0.0823253 -0.0365602 -0.995935
2.35882 0.184723 -0.577668 0.0823253 -0.0365601 -0.995935
2.32374 0.0545623 -0.645105 0.0823253 -0.0365602 -0.995935
2.28623 -0.0745159 -0.683079 0.0823253 -0.0365602 -0.995935
2.24675 -0.202723 -0.697313 0.0823253 -0.0365602 -0.995935
2.20521 -0.330011 -0.686529 0.0823253 -0.03656 -0.995935
2.16169 -0.456426 -0.651927 0.0823253 -0.0365602 -0.995935
2.1159 -0.581831 -0.589837 0.0823253 -0.0365602 -0.995935
2.06697 -0.70584 -0.489719 0.0823253 -0.0365602 -0.995935
2.01204 -0.827182 -0.316933 0.0823253 -0.0365602 -0.995935

View File

@ -99,19 +99,22 @@ void VaseWidget::on_slice_offset_sliderMoved(int){
update_slice();
}
void VaseWidget::on_iterationButton_released(){
bool op_succeed = false;
for(int i=0; i<ui.numItersSpin->value(); i++){
balloon->updateViewField();
balloon->interpolateField();
balloon->computeCurvature();
gla->log.Logf(GLLogStream::FILTER, "\n----- began iteration %d -----", balloon->numiterscompleted);
op_succeed = balloon->initializeField(); if( !op_succeed ) break;
balloon->interpolateField(); if( !op_succeed ) break;
balloon->computeCurvature(); if( !op_succeed ) break;
balloon->evolveBalloon();
gla->log.Logf(GLLogStream::FILTER, "Finished iteration %d", balloon->numiterscompleted);
qDebug("----- finished -----");
// gla->log.Logf(GLLogStream::FILTER, "----- Finished iteration %d\n", balloon->numiterscompleted);
gla->update();
}
}
void VaseWidget::on_refreshButton_released(){
balloon->updateViewField();
gla->log.Log(GLLogStream::FILTER, "Refreshed view-based distance field");
balloon->render(gla);
bool op_failed = balloon->initializeField();
balloon->render(gla); // why is this here????
gla->log.Logf(GLLogStream::FILTER, "Refreshed view-based distance field %s", ((op_failed)?"**FAILED!**":"completed") );
gla->update();
}
void VaseWidget::on_interpButton_released(){
@ -128,7 +131,7 @@ void VaseWidget::on_evolveButton_released(){
void VaseWidget::on_laplButton_released(){
balloon->computeCurvature();
balloon->rm |= Balloon::SURF_VCOLOR;
gla->log.Logf(GLLogStream::FILTER, "Finished iteration %d", balloon->numiterscompleted);
// gla->log.Logf(GLLogStream::FILTER, "Finished iteration %d", balloon->numiterscompleted);
gla->update();
}

View File

@ -213,7 +213,7 @@
<item>
<widget class="QSpinBox" name="numItersSpin">
<property name="value">
<number>1</number>
<number>36</number>
</property>
</widget>
</item>