From ccb666faaf1d011def5bec8714182a138db7616d Mon Sep 17 00:00:00 2001 From: StratiX0 Date: Tue, 26 Mar 2024 12:02:03 +0100 Subject: [PATCH] merge 3d diffuse lighting --- enginecustom/light.ps | 28 +- enginecustom/light.vs | 23 +- enginecustom/lightclass.cpp | 12 +- enginecustom/lightclass.h | 23 +- enginecustom/lightshaderclass.cpp | 557 +++--- enginecustom/lightshaderclass.h | 58 +- enginecustom/output.txt | 2652 ++++++++++++++--------------- 7 files changed, 1674 insertions(+), 1679 deletions(-) diff --git a/enginecustom/light.ps b/enginecustom/light.ps index 1a2da4e..66babd6 100644 --- a/enginecustom/light.ps +++ b/enginecustom/light.ps @@ -8,12 +8,11 @@ ///////////// Texture2D shaderTexture : register(t0); SamplerState SampleType : register(s0); - cbuffer LightBuffer { float4 diffuseColor; float3 lightDirection; - float padding; + float padding; }; @@ -24,7 +23,7 @@ struct PixelInputType { float4 position : SV_POSITION; float2 tex : TEXCOORD0; - float3 normal : NORMAL; + float3 normal : NORMAL; }; @@ -33,29 +32,26 @@ struct PixelInputType //////////////////////////////////////////////////////////////////////////////// float4 LightPixelShader(PixelInputType input) : SV_TARGET { - float4 textureColor; - float3 lightDir; - float lightIntensity; - float4 color; + float4 textureColor; + float3 lightDir; + float lightIntensity; + float4 color; - // Sample the pixel color from the texture using the sampler at this texture coordinate location. - textureColor = shaderTexture.Sample(SampleType, input.tex); + // Sample the pixel color from the texture using the sampler at this texture coordinate location. + textureColor = shaderTexture.Sample(SampleType, input.tex); - // Invert the light direction for calculations. + // Invert the light direction for calculations. lightDir = -lightDirection; // Calculate the amount of light on this pixel. lightIntensity = saturate(dot(input.normal, lightDir)); - // Change the diffuse color to red (0, 1, 0) - float3 greenDiffuseColor = float3(1, 0, 0); - // Determine the final amount of diffuse color based on the diffuse color combined with the light intensity. color = saturate(diffuseColor * lightIntensity); // Multiply the texture pixel and the final diffuse color to get the final pixel color result. - color = color * textureColor; + color = color * textureColor; - return color; -} + return color; +} \ No newline at end of file diff --git a/enginecustom/light.vs b/enginecustom/light.vs index 075270b..87f1edd 100644 --- a/enginecustom/light.vs +++ b/enginecustom/light.vs @@ -8,12 +8,11 @@ ///////////// cbuffer MatrixBuffer { - matrix worldMatrix; - matrix viewMatrix; - matrix projectionMatrix; + matrix worldMatrix; + matrix viewMatrix; + matrix projectionMatrix; }; - ////////////// // TYPEDEFS // ////////////// @@ -21,14 +20,14 @@ struct VertexInputType { float4 position : POSITION; float2 tex : TEXCOORD0; - float3 normal : NORMAL; + float3 normal : NORMAL; }; struct PixelInputType { float4 position : SV_POSITION; float2 tex : TEXCOORD0; - float3 normal : NORMAL; + float3 normal : NORMAL; }; @@ -40,18 +39,18 @@ PixelInputType LightVertexShader(VertexInputType input) PixelInputType output; - // Change the position vector to be 4 units for proper matrix calculations. + // Change the position vector to be 4 units for proper matrix calculations. input.position.w = 1.0f; - // Calculate the position of the vertex against the world, view, and projection matrices. + // Calculate the position of the vertex against the world, view, and projection matrices. output.position = mul(input.position, worldMatrix); output.position = mul(output.position, viewMatrix); output.position = mul(output.position, projectionMatrix); - // Store the texture coordinates for the pixel shader. - output.tex = input.tex; - - // Calculate the normal vector against the world matrix only. + // Store the texture coordinates for the pixel shader. + output.tex = input.tex; + + // Calculate the normal vector against the world matrix only. output.normal = mul(input.normal, (float3x3)worldMatrix); // Normalize the normal vector. diff --git a/enginecustom/lightclass.cpp b/enginecustom/lightclass.cpp index 05dcb4c..e6f0f9b 100644 --- a/enginecustom/lightclass.cpp +++ b/enginecustom/lightclass.cpp @@ -21,25 +21,25 @@ LightClass::~LightClass() void LightClass::SetDiffuseColor(float red, float green, float blue, float alpha) { - m_diffuseColor = XMFLOAT4(red, green, blue, alpha); - return; + m_diffuseColor = XMFLOAT4(red, green, blue, alpha); + return; } void LightClass::SetDirection(float x, float y, float z) { - m_direction = XMFLOAT3(x, y, z); - return; + m_direction = XMFLOAT3(x, y, z); + return; } XMFLOAT4 LightClass::GetDiffuseColor() { - return m_diffuseColor; + return m_diffuseColor; } XMFLOAT3 LightClass::GetDirection() { - return m_direction; + return m_direction; } \ No newline at end of file diff --git a/enginecustom/lightclass.h b/enginecustom/lightclass.h index d4c5273..0159c95 100644 --- a/enginecustom/lightclass.h +++ b/enginecustom/lightclass.h @@ -1,3 +1,4 @@ +#pragma once //////////////////////////////////////////////////////////////////////////////// // Filename: lightclass.h //////////////////////////////////////////////////////////////////////////////// @@ -18,19 +19,19 @@ using namespace DirectX; class LightClass { public: - LightClass(); - LightClass(const LightClass&); - ~LightClass(); + LightClass(); + LightClass(const LightClass&); + ~LightClass(); + + void SetDirection(float, float, float); + void SetDiffuseColor(float, float, float, float); + + XMFLOAT3 GetDirection(); + XMFLOAT4 GetDiffuseColor(); - void SetDiffuseColor(float, float, float, float); - void SetDirection(float, float, float); - - XMFLOAT4 GetDiffuseColor(); - XMFLOAT3 GetDirection(); - private: - XMFLOAT4 m_diffuseColor; - XMFLOAT3 m_direction; + XMFLOAT4 m_diffuseColor; + XMFLOAT3 m_direction; }; #endif \ No newline at end of file diff --git a/enginecustom/lightshaderclass.cpp b/enginecustom/lightshaderclass.cpp index 02df0ff..c759fd3 100644 --- a/enginecustom/lightshaderclass.cpp +++ b/enginecustom/lightshaderclass.cpp @@ -6,12 +6,12 @@ LightShaderClass::LightShaderClass() { - m_vertexShader = 0; - m_pixelShader = 0; - m_layout = 0; - m_sampleState = 0; - m_matrixBuffer = 0; - m_lightBuffer = 0; + m_vertexShader = 0; + m_pixelShader = 0; + m_layout = 0; + m_sampleState = 0; + m_matrixBuffer = 0; + m_lightBuffer = 0; } @@ -27,179 +27,179 @@ LightShaderClass::~LightShaderClass() bool LightShaderClass::Initialize(ID3D11Device* device, HWND hwnd) { - wchar_t vsFilename[128]; - wchar_t psFilename[128]; - int error; - bool result; + wchar_t vsFilename[128]; + wchar_t psFilename[128]; + int error; + bool result; + // Set the filename of the vertex shader. + error = wcscpy_s(vsFilename, 128, L"./Light.vs"); + if (error != 0) + { + return false; + } - // Set the filename of the vertex shader. - error = wcscpy_s(vsFilename, 128, L"../enginecustom/light.vs"); - if (error != 0) - { - return false; - } + // Set the filename of the pixel shader. + error = wcscpy_s(psFilename, 128, L"./Light.ps"); + if (error != 0) + { + return false; + } - // Set the filename of the pixel shader. - error = wcscpy_s(psFilename, 128, L"../enginecustom/light.ps"); - if (error != 0) - { - return false; - } + // Initialize the vertex and pixel shaders. + result = InitializeShader(device, hwnd, vsFilename, psFilename); + if (!result) + { + return false; + } - // Initialize the vertex and pixel shaders. - result = InitializeShader(device, hwnd, vsFilename, psFilename); - if(!result) - { - return false; - } - - return true; + return true; } void LightShaderClass::Shutdown() { - // Shutdown the vertex and pixel shaders as well as the related objects. - ShutdownShader(); + // Shutdown the vertex and pixel shaders as well as the related objects. + ShutdownShader(); - return; + return; } - bool LightShaderClass::Render(ID3D11DeviceContext* deviceContext, int indexCount, XMMATRIX worldMatrix, XMMATRIX viewMatrix, XMMATRIX projectionMatrix, - ID3D11ShaderResourceView* texture, XMFLOAT3 lightDirection, XMFLOAT4 diffuseColor) + ID3D11ShaderResourceView* texture, XMFLOAT3 lightDirection, XMFLOAT4 diffuseColor) { - bool result; + bool result; - // Set the shader parameters that it will use for rendering. - result = SetShaderParameters(deviceContext, worldMatrix, viewMatrix, projectionMatrix, texture, lightDirection, diffuseColor); - if(!result) - { - return false; - } + // Set the shader parameters that it will use for rendering. + result = SetShaderParameters(deviceContext, worldMatrix, viewMatrix, projectionMatrix, texture, lightDirection, diffuseColor); + if (!result) + { + return false; + } - // Now render the prepared buffers with the shader. - RenderShader(deviceContext, indexCount); + // Now render the prepared buffers with the shader. + RenderShader(deviceContext, indexCount); - return true; + return true; } bool LightShaderClass::InitializeShader(ID3D11Device* device, HWND hwnd, WCHAR* vsFilename, WCHAR* psFilename) { - HRESULT result; - ID3D10Blob* errorMessage; - ID3D10Blob* vertexShaderBuffer; - ID3D10Blob* pixelShaderBuffer; - D3D11_INPUT_ELEMENT_DESC polygonLayout[3]; - unsigned int numElements; + HRESULT result; + ID3D10Blob* errorMessage; + ID3D10Blob* vertexShaderBuffer; + ID3D10Blob* pixelShaderBuffer; + + D3D11_INPUT_ELEMENT_DESC polygonLayout[3]; + unsigned int numElements; D3D11_SAMPLER_DESC samplerDesc; - D3D11_BUFFER_DESC matrixBufferDesc; - D3D11_BUFFER_DESC lightBufferDesc; + D3D11_BUFFER_DESC matrixBufferDesc; + + D3D11_BUFFER_DESC lightBufferDesc; - // Initialize the pointers this function will use to null. - errorMessage = 0; - vertexShaderBuffer = 0; - pixelShaderBuffer = 0; + // Initialize the pointers this function will use to null. + errorMessage = 0; + vertexShaderBuffer = 0; + pixelShaderBuffer = 0; // Compile the vertex shader code. - result = D3DCompileFromFile(vsFilename, NULL, NULL, "LightVertexShader", "vs_5_0", D3D10_SHADER_ENABLE_STRICTNESS, 0, &vertexShaderBuffer, &errorMessage); - if(FAILED(result)) - { - // If the shader failed to compile it should have writen something to the error message. - if(errorMessage) - { - OutputShaderErrorMessage(errorMessage, hwnd, vsFilename); - } - // If there was nothing in the error message then it simply could not find the shader file itself. - else - { - MessageBox(hwnd, vsFilename, L"Missing Shader File", MB_OK); - } + result = D3DCompileFromFile(vsFilename, NULL, NULL, "LightVertexShader", "vs_5_0", D3D10_SHADER_ENABLE_STRICTNESS, 0, &vertexShaderBuffer, &errorMessage); + if (FAILED(result)) + { + // If the shader failed to compile it should have writen something to the error message. + if (errorMessage) + { + OutputShaderErrorMessage(errorMessage, hwnd, vsFilename); + } + // If there was nothing in the error message then it simply could not find the shader file itself. + else + { + MessageBox(hwnd, vsFilename, L"Missing Shader File", MB_OK); + } - return false; - } + return false; + } // Compile the pixel shader code. - result = D3DCompileFromFile(psFilename, NULL, NULL, "LightPixelShader", "ps_5_0", D3D10_SHADER_ENABLE_STRICTNESS, 0, &pixelShaderBuffer, &errorMessage); - if(FAILED(result)) - { - // If the shader failed to compile it should have writen something to the error message. - if(errorMessage) - { - OutputShaderErrorMessage(errorMessage, hwnd, psFilename); - } - // If there was nothing in the error message then it simply could not find the file itself. - else - { - MessageBox(hwnd, psFilename, L"Missing Shader File", MB_OK); - } + result = D3DCompileFromFile(psFilename, NULL, NULL, "LightPixelShader", "ps_5_0", D3D10_SHADER_ENABLE_STRICTNESS, 0, &pixelShaderBuffer, &errorMessage); + if (FAILED(result)) + { + // If the shader failed to compile it should have writen something to the error message. + if (errorMessage) + { + OutputShaderErrorMessage(errorMessage, hwnd, psFilename); + } + // If there was nothing in the error message then it simply could not find the file itself. + else + { + MessageBox(hwnd, psFilename, L"Missing Shader File", MB_OK); + } - return false; - } + return false; + } // Create the vertex shader from the buffer. result = device->CreateVertexShader(vertexShaderBuffer->GetBufferPointer(), vertexShaderBuffer->GetBufferSize(), NULL, &m_vertexShader); - if(FAILED(result)) - { - return false; - } + if (FAILED(result)) + { + return false; + } // Create the pixel shader from the buffer. result = device->CreatePixelShader(pixelShaderBuffer->GetBufferPointer(), pixelShaderBuffer->GetBufferSize(), NULL, &m_pixelShader); - if(FAILED(result)) - { - return false; - } + if (FAILED(result)) + { + return false; + } - // Create the vertex input layout description. - // This setup needs to match the VertexType stucture in the ModelClass and in the shader. - polygonLayout[0].SemanticName = "POSITION"; - polygonLayout[0].SemanticIndex = 0; - polygonLayout[0].Format = DXGI_FORMAT_R32G32B32_FLOAT; - polygonLayout[0].InputSlot = 0; - polygonLayout[0].AlignedByteOffset = 0; - polygonLayout[0].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; - polygonLayout[0].InstanceDataStepRate = 0; + // Create the vertex input layout description. + // This setup needs to match the VertexType stucture in the ModelClass and in the shader. + polygonLayout[0].SemanticName = "POSITION"; + polygonLayout[0].SemanticIndex = 0; + polygonLayout[0].Format = DXGI_FORMAT_R32G32B32_FLOAT; + polygonLayout[0].InputSlot = 0; + polygonLayout[0].AlignedByteOffset = 0; + polygonLayout[0].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; + polygonLayout[0].InstanceDataStepRate = 0; - polygonLayout[1].SemanticName = "TEXCOORD"; - polygonLayout[1].SemanticIndex = 0; - polygonLayout[1].Format = DXGI_FORMAT_R32G32_FLOAT; - polygonLayout[1].InputSlot = 0; - polygonLayout[1].AlignedByteOffset = D3D11_APPEND_ALIGNED_ELEMENT; - polygonLayout[1].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; - polygonLayout[1].InstanceDataStepRate = 0; + polygonLayout[1].SemanticName = "TEXCOORD"; + polygonLayout[1].SemanticIndex = 0; + polygonLayout[1].Format = DXGI_FORMAT_R32G32_FLOAT; + polygonLayout[1].InputSlot = 0; + polygonLayout[1].AlignedByteOffset = D3D11_APPEND_ALIGNED_ELEMENT; + polygonLayout[1].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; + polygonLayout[1].InstanceDataStepRate = 0; - polygonLayout[2].SemanticName = "NORMAL"; - polygonLayout[2].SemanticIndex = 0; - polygonLayout[2].Format = DXGI_FORMAT_R32G32B32_FLOAT; - polygonLayout[2].InputSlot = 0; - polygonLayout[2].AlignedByteOffset = D3D11_APPEND_ALIGNED_ELEMENT; - polygonLayout[2].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; - polygonLayout[2].InstanceDataStepRate = 0; + polygonLayout[2].SemanticName = "NORMAL"; + polygonLayout[2].SemanticIndex = 0; + polygonLayout[2].Format = DXGI_FORMAT_R32G32B32_FLOAT; + polygonLayout[2].InputSlot = 0; + polygonLayout[2].AlignedByteOffset = D3D11_APPEND_ALIGNED_ELEMENT; + polygonLayout[2].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; + polygonLayout[2].InstanceDataStepRate = 0; - // Get a count of the elements in the layout. + // Get a count of the elements in the layout. numElements = sizeof(polygonLayout) / sizeof(polygonLayout[0]); - // Create the vertex input layout. - result = device->CreateInputLayout(polygonLayout, numElements, vertexShaderBuffer->GetBufferPointer(), vertexShaderBuffer->GetBufferSize(), - &m_layout); - if(FAILED(result)) - { - return false; - } + // Create the vertex input layout. + result = device->CreateInputLayout(polygonLayout, numElements, vertexShaderBuffer->GetBufferPointer(), vertexShaderBuffer->GetBufferSize(), + &m_layout); + if (FAILED(result)) + { + return false; + } - // Release the vertex shader buffer and pixel shader buffer since they are no longer needed. - vertexShaderBuffer->Release(); - vertexShaderBuffer = 0; + // Release the vertex shader buffer and pixel shader buffer since they are no longer needed. + vertexShaderBuffer->Release(); + vertexShaderBuffer = 0; - pixelShaderBuffer->Release(); - pixelShaderBuffer = 0; + pixelShaderBuffer->Release(); + pixelShaderBuffer = 0; - // Create a texture sampler state description. + // Create a texture sampler state description. samplerDesc.Filter = D3D11_FILTER_MIN_MAG_MIP_LINEAR; samplerDesc.AddressU = D3D11_TEXTURE_ADDRESS_WRAP; samplerDesc.AddressV = D3D11_TEXTURE_ADDRESS_WRAP; @@ -208,222 +208,221 @@ bool LightShaderClass::InitializeShader(ID3D11Device* device, HWND hwnd, WCHAR* samplerDesc.MaxAnisotropy = 1; samplerDesc.ComparisonFunc = D3D11_COMPARISON_ALWAYS; samplerDesc.BorderColor[0] = 0; - samplerDesc.BorderColor[1] = 0; - samplerDesc.BorderColor[2] = 0; - samplerDesc.BorderColor[3] = 0; + samplerDesc.BorderColor[1] = 0; + samplerDesc.BorderColor[2] = 0; + samplerDesc.BorderColor[3] = 0; samplerDesc.MinLOD = 0; samplerDesc.MaxLOD = D3D11_FLOAT32_MAX; - // Create the texture sampler state. + // Create the texture sampler state. result = device->CreateSamplerState(&samplerDesc, &m_sampleState); - if(FAILED(result)) - { - return false; - } + if (FAILED(result)) + { + return false; + } - // Setup the description of the dynamic matrix constant buffer that is in the vertex shader. + // Setup the description of the dynamic matrix constant buffer that is in the vertex shader. matrixBufferDesc.Usage = D3D11_USAGE_DYNAMIC; - matrixBufferDesc.ByteWidth = sizeof(MatrixBufferType); + matrixBufferDesc.ByteWidth = sizeof(MatrixBufferType); matrixBufferDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER; matrixBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; matrixBufferDesc.MiscFlags = 0; - matrixBufferDesc.StructureByteStride = 0; + matrixBufferDesc.StructureByteStride = 0; - // Create the constant buffer pointer so we can access the vertex shader constant buffer from within this class. - result = device->CreateBuffer(&matrixBufferDesc, NULL, &m_matrixBuffer); - if(FAILED(result)) - { - return false; - } + // Create the constant buffer pointer so we can access the vertex shader constant buffer from within this class. + result = device->CreateBuffer(&matrixBufferDesc, NULL, &m_matrixBuffer); + if (FAILED(result)) + { + return false; + } - // Setup the description of the light dynamic constant buffer that is in the pixel shader. - // Note that ByteWidth always needs to be a multiple of 16 if using D3D11_BIND_CONSTANT_BUFFER or CreateBuffer will fail. - lightBufferDesc.Usage = D3D11_USAGE_DYNAMIC; - lightBufferDesc.ByteWidth = sizeof(LightBufferType); - lightBufferDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER; - lightBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; - lightBufferDesc.MiscFlags = 0; - lightBufferDesc.StructureByteStride = 0; + // Setup the description of the light dynamic constant buffer that is in the pixel shader. + // Note that ByteWidth always needs to be a multiple of 16 if using D3D11_BIND_CONSTANT_BUFFER or CreateBuffer will fail. + lightBufferDesc.Usage = D3D11_USAGE_DYNAMIC; + lightBufferDesc.ByteWidth = sizeof(LightBufferType); + lightBufferDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER; + lightBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; + lightBufferDesc.MiscFlags = 0; + lightBufferDesc.StructureByteStride = 0; - // Create the constant buffer pointer so we can access the vertex shader constant buffer from within this class. - result = device->CreateBuffer(&lightBufferDesc, NULL, &m_lightBuffer); - if(FAILED(result)) - { - return false; - } + // Create the constant buffer pointer so we can access the vertex shader constant buffer from within this class. + result = device->CreateBuffer(&lightBufferDesc, NULL, &m_lightBuffer); + if (FAILED(result)) + { + return false; + } - return true; + return true; } void LightShaderClass::ShutdownShader() { - // Release the light constant buffer. - if(m_lightBuffer) - { - m_lightBuffer->Release(); - m_lightBuffer = 0; - } + // Release the light constant buffer. + if (m_lightBuffer) + { + m_lightBuffer->Release(); + m_lightBuffer = 0; + } - // Release the matrix constant buffer. - if(m_matrixBuffer) - { - m_matrixBuffer->Release(); - m_matrixBuffer = 0; - } + // Release the matrix constant buffer. + if (m_matrixBuffer) + { + m_matrixBuffer->Release(); + m_matrixBuffer = 0; + } - // Release the sampler state. - if(m_sampleState) - { - m_sampleState->Release(); - m_sampleState = 0; - } + // Release the sampler state. + if (m_sampleState) + { + m_sampleState->Release(); + m_sampleState = 0; + } - // Release the layout. - if(m_layout) - { - m_layout->Release(); - m_layout = 0; - } + // Release the layout. + if (m_layout) + { + m_layout->Release(); + m_layout = 0; + } - // Release the pixel shader. - if(m_pixelShader) - { - m_pixelShader->Release(); - m_pixelShader = 0; - } + // Release the pixel shader. + if (m_pixelShader) + { + m_pixelShader->Release(); + m_pixelShader = 0; + } - // Release the vertex shader. - if(m_vertexShader) - { - m_vertexShader->Release(); - m_vertexShader = 0; - } + // Release the vertex shader. + if (m_vertexShader) + { + m_vertexShader->Release(); + m_vertexShader = 0; + } - return; + return; } void LightShaderClass::OutputShaderErrorMessage(ID3D10Blob* errorMessage, HWND hwnd, WCHAR* shaderFilename) { - char* compileErrors; - unsigned __int64 bufferSize, i; - ofstream fout; + char* compileErrors; + unsigned __int64 bufferSize, i; + ofstream fout; - // Get a pointer to the error message text buffer. - compileErrors = (char*)(errorMessage->GetBufferPointer()); + // Get a pointer to the error message text buffer. + compileErrors = (char*)(errorMessage->GetBufferPointer()); - // Get the length of the message. - bufferSize = errorMessage->GetBufferSize(); + // Get the length of the message. + bufferSize = errorMessage->GetBufferSize(); - // Open a file to write the error message to. - fout.open("shader-error.txt"); + // Open a file to write the error message to. + fout.open("shader-error.txt"); - // Write out the error message. - for(i=0; iRelease(); - errorMessage = 0; + // Release the error message. + errorMessage->Release(); + errorMessage = 0; - // Pop a message up on the screen to notify the user to check the text file for compile errors. - MessageBox(hwnd, L"Error compiling shader. Check shader-error.txt for message.", shaderFilename, MB_OK); + // Pop a message up on the screen to notify the user to check the text file for compile errors. + MessageBox(hwnd, L"Error compiling shader. Check shader-error.txt for message.", shaderFilename, MB_OK); - return; + return; } - -bool LightShaderClass::SetShaderParameters(ID3D11DeviceContext* deviceContext, XMMATRIX worldMatrix, XMMATRIX viewMatrix, XMMATRIX projectionMatrix, - ID3D11ShaderResourceView* texture, XMFLOAT3 lightDirection, XMFLOAT4 diffuseColor) +bool LightShaderClass::SetShaderParameters(ID3D11DeviceContext* deviceContext, XMMATRIX worldMatrix, XMMATRIX viewMatrix, XMMATRIX projectionMatrix, + ID3D11ShaderResourceView* texture, XMFLOAT3 lightDirection, XMFLOAT4 diffuseColor) { - HRESULT result; + HRESULT result; D3D11_MAPPED_SUBRESOURCE mappedResource; - unsigned int bufferNumber; - MatrixBufferType* dataPtr; - LightBufferType* dataPtr2; + unsigned int bufferNumber; + MatrixBufferType* dataPtr; + LightBufferType* dataPtr2; - // Transpose the matrices to prepare them for the shader. - worldMatrix = XMMatrixTranspose(worldMatrix); - viewMatrix = XMMatrixTranspose(viewMatrix); - projectionMatrix = XMMatrixTranspose(projectionMatrix); + // Transpose the matrices to prepare them for the shader. + worldMatrix = XMMatrixTranspose(worldMatrix); + viewMatrix = XMMatrixTranspose(viewMatrix); + projectionMatrix = XMMatrixTranspose(projectionMatrix); - // Lock the constant buffer so it can be written to. - result = deviceContext->Map(m_matrixBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); - if(FAILED(result)) - { - return false; - } + // Lock the constant buffer so it can be written to. + result = deviceContext->Map(m_matrixBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); + if (FAILED(result)) + { + return false; + } - // Get a pointer to the data in the constant buffer. - dataPtr = (MatrixBufferType*)mappedResource.pData; + // Get a pointer to the data in the constant buffer. + dataPtr = (MatrixBufferType*)mappedResource.pData; - // Copy the matrices into the constant buffer. - dataPtr->world = worldMatrix; - dataPtr->view = viewMatrix; - dataPtr->projection = projectionMatrix; + // Copy the matrices into the constant buffer. + dataPtr->world = worldMatrix; + dataPtr->view = viewMatrix; + dataPtr->projection = projectionMatrix; - // Unlock the constant buffer. + // Unlock the constant buffer. deviceContext->Unmap(m_matrixBuffer, 0); - // Set the position of the constant buffer in the vertex shader. - bufferNumber = 0; + // Set the position of the constant buffer in the vertex shader. + bufferNumber = 0; - // Now set the constant buffer in the vertex shader with the updated values. + // Now set the constant buffer in the vertex shader with the updated values. deviceContext->VSSetConstantBuffers(bufferNumber, 1, &m_matrixBuffer); - // Set shader texture resource in the pixel shader. - deviceContext->PSSetShaderResources(0, 1, &texture); + // Set shader texture resource in the pixel shader. + deviceContext->PSSetShaderResources(0, 1, &texture); - // Lock the light constant buffer so it can be written to. - result = deviceContext->Map(m_lightBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); - if(FAILED(result)) - { - return false; - } + // Lock the light constant buffer so it can be written to. + result = deviceContext->Map(m_lightBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); + if (FAILED(result)) + { + return false; + } - // Get a pointer to the data in the constant buffer. - dataPtr2 = (LightBufferType*)mappedResource.pData; + // Get a pointer to the data in the constant buffer. + dataPtr2 = (LightBufferType*)mappedResource.pData; - // Copy the lighting variables into the constant buffer. - dataPtr2->diffuseColor = diffuseColor; - dataPtr2->lightDirection = lightDirection; - dataPtr2->padding = 0.0f; + // Copy the lighting variables into the constant buffer. + dataPtr2->diffuseColor = diffuseColor; + dataPtr2->lightDirection = lightDirection; + dataPtr2->padding = 0.0f; - // Unlock the constant buffer. - deviceContext->Unmap(m_lightBuffer, 0); + // Unlock the constant buffer. + deviceContext->Unmap(m_lightBuffer, 0); - // Set the position of the light constant buffer in the pixel shader. - bufferNumber = 0; + // Set the position of the light constant buffer in the pixel shader. + bufferNumber = 0; - // Finally set the light constant buffer in the pixel shader with the updated values. - deviceContext->PSSetConstantBuffers(bufferNumber, 1, &m_lightBuffer); + // Finally set the light constant buffer in the pixel shader with the updated values. + deviceContext->PSSetConstantBuffers(bufferNumber, 1, &m_lightBuffer); - return true; + return true; } void LightShaderClass::RenderShader(ID3D11DeviceContext* deviceContext, int indexCount) { - // Set the vertex input layout. - deviceContext->IASetInputLayout(m_layout); + // Set the vertex input layout. + deviceContext->IASetInputLayout(m_layout); // Set the vertex and pixel shaders that will be used to render this triangle. deviceContext->VSSetShader(m_vertexShader, NULL, 0); deviceContext->PSSetShader(m_pixelShader, NULL, 0); - // Set the sampler state in the pixel shader. - deviceContext->PSSetSamplers(0, 1, &m_sampleState); + // Set the sampler state in the pixel shader. + deviceContext->PSSetSamplers(0, 1, &m_sampleState); - // Render the triangle. - deviceContext->DrawIndexed(indexCount, 0, 0); + // Render the triangle. + deviceContext->DrawIndexed(indexCount, 0, 0); - return; -} \ No newline at end of file + return; +} diff --git a/enginecustom/lightshaderclass.h b/enginecustom/lightshaderclass.h index f16b097..247d3b8 100644 --- a/enginecustom/lightshaderclass.h +++ b/enginecustom/lightshaderclass.h @@ -22,44 +22,44 @@ using namespace std; class LightShaderClass { private: - struct MatrixBufferType - { - XMMATRIX world; - XMMATRIX view; - XMMATRIX projection; - }; + struct MatrixBufferType + { + XMMATRIX world; + XMMATRIX view; + XMMATRIX projection; + }; - struct LightBufferType - { - XMFLOAT4 diffuseColor; - XMFLOAT3 lightDirection; - float padding; // Added extra padding so structure is a multiple of 16 for CreateBuffer function requirements. - }; + struct LightBufferType + { + XMFLOAT4 diffuseColor; + XMFLOAT3 lightDirection; + float padding; // Added extra padding so structure is a multiple of 16 for CreateBuffer function requirements. + }; public: - LightShaderClass(); - LightShaderClass(const LightShaderClass&); - ~LightShaderClass(); + LightShaderClass(); + LightShaderClass(const LightShaderClass&); + ~LightShaderClass(); - bool Initialize(ID3D11Device*, HWND); - void Shutdown(); - bool Render(ID3D11DeviceContext*, int, XMMATRIX, XMMATRIX, XMMATRIX, ID3D11ShaderResourceView*, XMFLOAT3, XMFLOAT4); + bool Initialize(ID3D11Device*, HWND); + void Shutdown(); + bool Render(ID3D11DeviceContext*, int, XMMATRIX, XMMATRIX, XMMATRIX, ID3D11ShaderResourceView*, XMFLOAT3, XMFLOAT4); private: - bool InitializeShader(ID3D11Device*, HWND, WCHAR*, WCHAR*); - void ShutdownShader(); - void OutputShaderErrorMessage(ID3D10Blob*, HWND, WCHAR*); + bool InitializeShader(ID3D11Device*, HWND, WCHAR*, WCHAR*); + void ShutdownShader(); + void OutputShaderErrorMessage(ID3D10Blob*, HWND, WCHAR*); - bool SetShaderParameters(ID3D11DeviceContext*, XMMATRIX, XMMATRIX, XMMATRIX, ID3D11ShaderResourceView*, XMFLOAT3, XMFLOAT4); - void RenderShader(ID3D11DeviceContext*, int); + bool SetShaderParameters(ID3D11DeviceContext*, XMMATRIX, XMMATRIX, XMMATRIX, ID3D11ShaderResourceView*, XMFLOAT3, XMFLOAT4); + void RenderShader(ID3D11DeviceContext*, int); private: - ID3D11VertexShader* m_vertexShader; - ID3D11PixelShader* m_pixelShader; - ID3D11InputLayout* m_layout; - ID3D11SamplerState* m_sampleState; - ID3D11Buffer* m_matrixBuffer; - ID3D11Buffer* m_lightBuffer; + ID3D11VertexShader* m_vertexShader; + ID3D11PixelShader* m_pixelShader; + ID3D11InputLayout* m_layout; + ID3D11SamplerState* m_sampleState; + ID3D11Buffer* m_matrixBuffer; + ID3D11Buffer* m_lightBuffer; }; #endif \ No newline at end of file diff --git a/enginecustom/output.txt b/enginecustom/output.txt index 31d13fa..4a4b2b7 100644 --- a/enginecustom/output.txt +++ b/enginecustom/output.txt @@ -2,48 +2,6 @@ Vertex Count: 2880 Data: -0 0.55557 -0.83147 0.75 0.6875 0.0759 0.6326 -0.7708 -0 0.707107 -0.707107 0.75 0.75 0.0759 0.6326 -0.7708 -0.13795 0.707107 -0.69352 0.71875 0.75 0.0759 0.6326 -0.7708 -0 0.55557 -0.83147 0.75 0.6875 0.0759 0.6326 -0.7708 -0.13795 0.707107 -0.69352 0.71875 0.75 0.0759 0.6326 -0.7708 -0.162212 0.55557 -0.815493 0.71875 0.6875 0.0759 0.6326 -0.7708 -0 -0.83147 -0.55557 0.75 0.1875 0.0624 -0.7715 -0.6332 -0 -0.707107 -0.707107 0.75 0.25 0.0624 -0.7715 -0.6332 -0.13795 -0.707107 -0.69352 0.71875 0.25 0.0624 -0.7715 -0.6332 -0 -0.83147 -0.55557 0.75 0.1875 0.0624 -0.7715 -0.6332 -0.13795 -0.707107 -0.69352 0.71875 0.25 0.0624 -0.7715 -0.6332 -0.108386 -0.83147 -0.544895 0.71875 0.1875 0.0624 -0.7715 -0.6332 -0 0.382683 -0.923879 0.75 0.625 0.0865 0.4696 -0.8786 -0 0.55557 -0.83147 0.75 0.6875 0.0865 0.4696 -0.8786 -0.162212 0.55557 -0.815493 0.71875 0.6875 0.0865 0.4696 -0.8786 -0 0.382683 -0.923879 0.75 0.625 0.0865 0.4696 -0.8786 -0.162212 0.55557 -0.815493 0.71875 0.6875 0.0865 0.4696 -0.8786 -0.18024 0.382683 -0.906127 0.71875 0.625 0.0865 0.4696 -0.8786 -0 -0.92388 -0.382683 0.75 0.125 0.0464 -0.881 -0.4709 -0 -0.83147 -0.55557 0.75 0.1875 0.0464 -0.881 -0.4709 -0.108386 -0.83147 -0.544895 0.71875 0.1875 0.0464 -0.881 -0.4709 -0 -0.92388 -0.382683 0.75 0.125 0.0464 -0.881 -0.4709 -0.108386 -0.83147 -0.544895 0.71875 0.1875 0.0464 -0.881 -0.4709 -0.074658 -0.92388 -0.37533 0.71875 0.125 0.0464 -0.881 -0.4709 -0 0.19509 -0.980785 0.75 0.5625 0.0938 0.289 -0.9527 -0 0.382683 -0.923879 0.75 0.625 0.0938 0.289 -0.9527 -0.18024 0.382683 -0.906127 0.71875 0.625 0.0938 0.289 -0.9527 -0 0.19509 -0.980785 0.75 0.5625 0.0938 0.289 -0.9527 -0.18024 0.382683 -0.906127 0.71875 0.625 0.0938 0.289 -0.9527 -0.191342 0.19509 -0.96194 0.71875 0.5625 0.0938 0.289 -0.9527 -0 -0.980785 -0.19509 0.75 0.0625 0.0286 -0.9565 -0.2902 -0 -0.92388 -0.382683 0.75 0.125 0.0286 -0.9565 -0.2902 -0.074658 -0.92388 -0.37533 0.71875 0.125 0.0286 -0.9565 -0.2902 -0 -0.980785 -0.19509 0.75 0.0625 0.0286 -0.9565 -0.2902 -0.074658 -0.92388 -0.37533 0.71875 0.125 0.0286 -0.9565 -0.2902 -0.03806 -0.980785 -0.191342 0.71875 0.0625 0.0286 -0.9565 -0.2902 -0 0 -1 0.75 0.5 0.0975 0.0975 -0.9904 -0 0.19509 -0.980785 0.75 0.5625 0.0975 0.0975 -0.9904 -0.191342 0.19509 -0.96194 0.71875 0.5625 0.0975 0.0975 -0.9904 -0 0 -1 0.75 0.5 0.0975 0.0975 -0.9904 -0.191342 0.19509 -0.96194 0.71875 0.5625 0.0975 0.0975 -0.9904 -0.19509 0 -0.980785 0.71875 0.5 0.0975 0.0975 -0.9904 0 0.980785 -0.19509 0.75 0.9375 0.0097 0.9951 -0.098 0 1 0 0.734375 1 0.0097 0.9951 -0.098 0.03806 0.980785 -0.191342 0.71875 0.9375 0.0097 0.9951 -0.098 @@ -92,48 +50,48 @@ Data: 0 -0.707107 -0.707107 0.75 0.25 0.0759 -0.6326 -0.7708 0.162212 -0.55557 -0.815493 0.71875 0.3125 0.0759 -0.6326 -0.7708 0.13795 -0.707107 -0.69352 0.71875 0.25 0.0759 -0.6326 -0.7708 -0.13795 0.707107 -0.69352 0.71875 0.75 0.1847 0.7715 -0.6088 -0.108386 0.83147 -0.544895 0.71875 0.8125 0.1847 0.7715 -0.6088 -0.212608 0.83147 -0.51328 0.6875 0.8125 0.1847 0.7715 -0.6088 -0.13795 0.707107 -0.69352 0.71875 0.75 0.1847 0.7715 -0.6088 -0.212608 0.83147 -0.51328 0.6875 0.8125 0.1847 0.7715 -0.6088 -0.270598 0.707107 -0.653281 0.6875 0.75 0.1847 0.7715 -0.6088 -0.13795 -0.707107 -0.69352 0.71875 0.25 0.2248 -0.6326 -0.7412 -0.162212 -0.55557 -0.815493 0.71875 0.3125 0.2248 -0.6326 -0.7412 -0.31819 -0.55557 -0.768178 0.6875 0.3125 0.2248 -0.6326 -0.7412 -0.13795 -0.707107 -0.69352 0.71875 0.25 0.2248 -0.6326 -0.7412 -0.31819 -0.55557 -0.768178 0.6875 0.3125 0.2248 -0.6326 -0.7412 -0.270598 -0.707107 -0.653281 0.6875 0.25 0.2248 -0.6326 -0.7412 -0.162212 0.55557 -0.815493 0.71875 0.6875 0.2248 0.6326 -0.7412 -0.13795 0.707107 -0.69352 0.71875 0.75 0.2248 0.6326 -0.7412 -0.270598 0.707107 -0.653281 0.6875 0.75 0.2248 0.6326 -0.7412 -0.162212 0.55557 -0.815493 0.71875 0.6875 0.2248 0.6326 -0.7412 -0.270598 0.707107 -0.653281 0.6875 0.75 0.2248 0.6326 -0.7412 -0.31819 0.55557 -0.768178 0.6875 0.6875 0.2248 0.6326 -0.7412 -0.108386 -0.83147 -0.544895 0.71875 0.1875 0.1847 -0.7715 -0.6088 -0.13795 -0.707107 -0.69352 0.71875 0.25 0.1847 -0.7715 -0.6088 -0.270598 -0.707107 -0.653281 0.6875 0.25 0.1847 -0.7715 -0.6088 -0.108386 -0.83147 -0.544895 0.71875 0.1875 0.1847 -0.7715 -0.6088 -0.270598 -0.707107 -0.653281 0.6875 0.25 0.1847 -0.7715 -0.6088 -0.212608 -0.83147 -0.51328 0.6875 0.1875 0.1847 -0.7715 -0.6088 -0.18024 0.382683 -0.906127 0.71875 0.625 0.2563 0.4696 -0.8448 -0.162212 0.55557 -0.815493 0.71875 0.6875 0.2563 0.4696 -0.8448 -0.31819 0.55557 -0.768178 0.6875 0.6875 0.2563 0.4696 -0.8448 -0.18024 0.382683 -0.906127 0.71875 0.625 0.2563 0.4696 -0.8448 -0.31819 0.55557 -0.768178 0.6875 0.6875 0.2563 0.4696 -0.8448 -0.353553 0.382683 -0.853553 0.6875 0.625 0.2563 0.4696 -0.8448 -0.074658 -0.92388 -0.37533 0.71875 0.125 0.1374 -0.881 -0.4528 -0.108386 -0.83147 -0.544895 0.71875 0.1875 0.1374 -0.881 -0.4528 -0.212608 -0.83147 -0.51328 0.6875 0.1875 0.1374 -0.881 -0.4528 -0.074658 -0.92388 -0.37533 0.71875 0.125 0.1374 -0.881 -0.4528 -0.212608 -0.83147 -0.51328 0.6875 0.1875 0.1374 -0.881 -0.4528 -0.146447 -0.92388 -0.353553 0.6875 0.125 0.1374 -0.881 -0.4528 -0.191342 0.19509 -0.96194 0.71875 0.5625 0.2779 0.289 -0.9161 -0.18024 0.382683 -0.906127 0.71875 0.625 0.2779 0.289 -0.9161 -0.353553 0.382683 -0.853553 0.6875 0.625 0.2779 0.289 -0.9161 -0.191342 0.19509 -0.96194 0.71875 0.5625 0.2779 0.289 -0.9161 -0.353553 0.382683 -0.853553 0.6875 0.625 0.2779 0.289 -0.9161 -0.37533 0.19509 -0.906127 0.6875 0.5625 0.2779 0.289 -0.9161 +0 0.55557 -0.83147 0.75 0.6875 0.0759 0.6326 -0.7708 +0 0.707107 -0.707107 0.75 0.75 0.0759 0.6326 -0.7708 +0.13795 0.707107 -0.69352 0.71875 0.75 0.0759 0.6326 -0.7708 +0 0.55557 -0.83147 0.75 0.6875 0.0759 0.6326 -0.7708 +0.13795 0.707107 -0.69352 0.71875 0.75 0.0759 0.6326 -0.7708 +0.162212 0.55557 -0.815493 0.71875 0.6875 0.0759 0.6326 -0.7708 +0 -0.83147 -0.55557 0.75 0.1875 0.0624 -0.7715 -0.6332 +0 -0.707107 -0.707107 0.75 0.25 0.0624 -0.7715 -0.6332 +0.13795 -0.707107 -0.69352 0.71875 0.25 0.0624 -0.7715 -0.6332 +0 -0.83147 -0.55557 0.75 0.1875 0.0624 -0.7715 -0.6332 +0.13795 -0.707107 -0.69352 0.71875 0.25 0.0624 -0.7715 -0.6332 +0.108386 -0.83147 -0.544895 0.71875 0.1875 0.0624 -0.7715 -0.6332 +0 0.382683 -0.923879 0.75 0.625 0.0865 0.4696 -0.8786 +0 0.55557 -0.83147 0.75 0.6875 0.0865 0.4696 -0.8786 +0.162212 0.55557 -0.815493 0.71875 0.6875 0.0865 0.4696 -0.8786 +0 0.382683 -0.923879 0.75 0.625 0.0865 0.4696 -0.8786 +0.162212 0.55557 -0.815493 0.71875 0.6875 0.0865 0.4696 -0.8786 +0.18024 0.382683 -0.906127 0.71875 0.625 0.0865 0.4696 -0.8786 +0 -0.92388 -0.382683 0.75 0.125 0.0464 -0.881 -0.4709 +0 -0.83147 -0.55557 0.75 0.1875 0.0464 -0.881 -0.4709 +0.108386 -0.83147 -0.544895 0.71875 0.1875 0.0464 -0.881 -0.4709 +0 -0.92388 -0.382683 0.75 0.125 0.0464 -0.881 -0.4709 +0.108386 -0.83147 -0.544895 0.71875 0.1875 0.0464 -0.881 -0.4709 +0.074658 -0.92388 -0.37533 0.71875 0.125 0.0464 -0.881 -0.4709 +0 0.19509 -0.980785 0.75 0.5625 0.0938 0.289 -0.9527 +0 0.382683 -0.923879 0.75 0.625 0.0938 0.289 -0.9527 +0.18024 0.382683 -0.906127 0.71875 0.625 0.0938 0.289 -0.9527 +0 0.19509 -0.980785 0.75 0.5625 0.0938 0.289 -0.9527 +0.18024 0.382683 -0.906127 0.71875 0.625 0.0938 0.289 -0.9527 +0.191342 0.19509 -0.96194 0.71875 0.5625 0.0938 0.289 -0.9527 +0 -0.980785 -0.19509 0.75 0.0625 0.0286 -0.9565 -0.2902 +0 -0.92388 -0.382683 0.75 0.125 0.0286 -0.9565 -0.2902 +0.074658 -0.92388 -0.37533 0.71875 0.125 0.0286 -0.9565 -0.2902 +0 -0.980785 -0.19509 0.75 0.0625 0.0286 -0.9565 -0.2902 +0.074658 -0.92388 -0.37533 0.71875 0.125 0.0286 -0.9565 -0.2902 +0.03806 -0.980785 -0.191342 0.71875 0.0625 0.0286 -0.9565 -0.2902 +0 0 -1 0.75 0.5 0.0975 0.0975 -0.9904 +0 0.19509 -0.980785 0.75 0.5625 0.0975 0.0975 -0.9904 +0.191342 0.19509 -0.96194 0.71875 0.5625 0.0975 0.0975 -0.9904 +0 0 -1 0.75 0.5 0.0975 0.0975 -0.9904 +0.191342 0.19509 -0.96194 0.71875 0.5625 0.0975 0.0975 -0.9904 +0.19509 0 -0.980785 0.71875 0.5 0.0975 0.0975 -0.9904 0.03806 -0.980785 -0.191342 0.71875 0.0625 0.0846 -0.9565 -0.279 0.074658 -0.92388 -0.37533 0.71875 0.125 0.0846 -0.9565 -0.279 0.146447 -0.92388 -0.353553 0.6875 0.125 0.0846 -0.9565 -0.279 @@ -182,48 +140,48 @@ Data: 0.162212 -0.55557 -0.815493 0.71875 0.3125 0.2563 -0.4696 -0.8448 0.353553 -0.382683 -0.853553 0.6875 0.375 0.2563 -0.4696 -0.8448 0.31819 -0.55557 -0.768178 0.6875 0.3125 0.2563 -0.4696 -0.8448 -0.382683 0 -0.923879 0.6875 0.5 0.4691 0.0975 -0.8777 -0.37533 0.19509 -0.906127 0.6875 0.5625 0.4691 0.0975 -0.8777 -0.544895 0.19509 -0.815493 0.65625 0.5625 0.4691 0.0975 -0.8777 -0.382683 0 -0.923879 0.6875 0.5 0.4691 0.0975 -0.8777 -0.544895 0.19509 -0.815493 0.65625 0.5625 0.4691 0.0975 -0.8777 -0.55557 0 -0.831469 0.65625 0.5 0.4691 0.0975 -0.8777 -0.074658 0.980785 -0.18024 0.6875 0.9375 0.0464 0.9951 -0.0869 -0 1 0 0.671875 1 0.0464 0.9951 -0.0869 -0.108386 0.980785 -0.162212 0.65625 0.9375 0.0464 0.9951 -0.0869 -0 -1 0 0.671875 0 0.0464 -0.9951 -0.0869 -0.074658 -0.980785 -0.18024 0.6875 0.0625 0.0464 -0.9951 -0.0869 -0.108386 -0.980785 -0.162212 0.65625 0.0625 0.0464 -0.9951 -0.0869 -0.37533 -0.19509 -0.906127 0.6875 0.4375 0.4691 -0.0975 -0.8777 -0.382683 0 -0.923879 0.6875 0.5 0.4691 -0.0975 -0.8777 -0.55557 0 -0.831469 0.65625 0.5 0.4691 -0.0975 -0.8777 -0.37533 -0.19509 -0.906127 0.6875 0.4375 0.4691 -0.0975 -0.8777 -0.55557 0 -0.831469 0.65625 0.5 0.4691 -0.0975 -0.8777 -0.544895 -0.19509 -0.815493 0.65625 0.4375 0.4691 -0.0975 -0.8777 -0.146447 0.92388 -0.353553 0.6875 0.875 0.1374 0.9565 -0.2571 -0.074658 0.980785 -0.18024 0.6875 0.9375 0.1374 0.9565 -0.2571 -0.108386 0.980785 -0.162212 0.65625 0.9375 0.1374 0.9565 -0.2571 -0.146447 0.92388 -0.353553 0.6875 0.875 0.1374 0.9565 -0.2571 -0.108386 0.980785 -0.162212 0.65625 0.9375 0.1374 0.9565 -0.2571 -0.212608 0.92388 -0.31819 0.65625 0.875 0.1374 0.9565 -0.2571 -0.353553 -0.382683 -0.853553 0.6875 0.375 0.4513 -0.289 -0.8443 -0.37533 -0.19509 -0.906127 0.6875 0.4375 0.4513 -0.289 -0.8443 -0.544895 -0.19509 -0.815493 0.65625 0.4375 0.4513 -0.289 -0.8443 -0.353553 -0.382683 -0.853553 0.6875 0.375 0.4513 -0.289 -0.8443 -0.544895 -0.19509 -0.815493 0.65625 0.4375 0.4513 -0.289 -0.8443 -0.51328 -0.382683 -0.768178 0.65625 0.375 0.4513 -0.289 -0.8443 -0.212608 0.83147 -0.51328 0.6875 0.8125 0.223 0.881 -0.4173 -0.146447 0.92388 -0.353553 0.6875 0.875 0.223 0.881 -0.4173 -0.212608 0.92388 -0.31819 0.65625 0.875 0.223 0.881 -0.4173 -0.212608 0.83147 -0.51328 0.6875 0.8125 0.223 0.881 -0.4173 -0.212608 0.92388 -0.31819 0.65625 0.875 0.223 0.881 -0.4173 -0.308658 0.83147 -0.46194 0.65625 0.8125 0.223 0.881 -0.4173 -0.31819 -0.55557 -0.768178 0.6875 0.3125 0.4162 -0.4696 -0.7786 -0.353553 -0.382683 -0.853553 0.6875 0.375 0.4162 -0.4696 -0.7786 -0.51328 -0.382683 -0.768178 0.65625 0.375 0.4162 -0.4696 -0.7786 -0.31819 -0.55557 -0.768178 0.6875 0.3125 0.4162 -0.4696 -0.7786 -0.51328 -0.382683 -0.768178 0.65625 0.375 0.4162 -0.4696 -0.7786 -0.46194 -0.55557 -0.691342 0.65625 0.3125 0.4162 -0.4696 -0.7786 +0.13795 0.707107 -0.69352 0.71875 0.75 0.1847 0.7715 -0.6088 +0.108386 0.83147 -0.544895 0.71875 0.8125 0.1847 0.7715 -0.6088 +0.212608 0.83147 -0.51328 0.6875 0.8125 0.1847 0.7715 -0.6088 +0.13795 0.707107 -0.69352 0.71875 0.75 0.1847 0.7715 -0.6088 +0.212608 0.83147 -0.51328 0.6875 0.8125 0.1847 0.7715 -0.6088 +0.270598 0.707107 -0.653281 0.6875 0.75 0.1847 0.7715 -0.6088 +0.13795 -0.707107 -0.69352 0.71875 0.25 0.2248 -0.6326 -0.7412 +0.162212 -0.55557 -0.815493 0.71875 0.3125 0.2248 -0.6326 -0.7412 +0.31819 -0.55557 -0.768178 0.6875 0.3125 0.2248 -0.6326 -0.7412 +0.13795 -0.707107 -0.69352 0.71875 0.25 0.2248 -0.6326 -0.7412 +0.31819 -0.55557 -0.768178 0.6875 0.3125 0.2248 -0.6326 -0.7412 +0.270598 -0.707107 -0.653281 0.6875 0.25 0.2248 -0.6326 -0.7412 +0.162212 0.55557 -0.815493 0.71875 0.6875 0.2248 0.6326 -0.7412 +0.13795 0.707107 -0.69352 0.71875 0.75 0.2248 0.6326 -0.7412 +0.270598 0.707107 -0.653281 0.6875 0.75 0.2248 0.6326 -0.7412 +0.162212 0.55557 -0.815493 0.71875 0.6875 0.2248 0.6326 -0.7412 +0.270598 0.707107 -0.653281 0.6875 0.75 0.2248 0.6326 -0.7412 +0.31819 0.55557 -0.768178 0.6875 0.6875 0.2248 0.6326 -0.7412 +0.108386 -0.83147 -0.544895 0.71875 0.1875 0.1847 -0.7715 -0.6088 +0.13795 -0.707107 -0.69352 0.71875 0.25 0.1847 -0.7715 -0.6088 +0.270598 -0.707107 -0.653281 0.6875 0.25 0.1847 -0.7715 -0.6088 +0.108386 -0.83147 -0.544895 0.71875 0.1875 0.1847 -0.7715 -0.6088 +0.270598 -0.707107 -0.653281 0.6875 0.25 0.1847 -0.7715 -0.6088 +0.212608 -0.83147 -0.51328 0.6875 0.1875 0.1847 -0.7715 -0.6088 +0.18024 0.382683 -0.906127 0.71875 0.625 0.2563 0.4696 -0.8448 +0.162212 0.55557 -0.815493 0.71875 0.6875 0.2563 0.4696 -0.8448 +0.31819 0.55557 -0.768178 0.6875 0.6875 0.2563 0.4696 -0.8448 +0.18024 0.382683 -0.906127 0.71875 0.625 0.2563 0.4696 -0.8448 +0.31819 0.55557 -0.768178 0.6875 0.6875 0.2563 0.4696 -0.8448 +0.353553 0.382683 -0.853553 0.6875 0.625 0.2563 0.4696 -0.8448 +0.074658 -0.92388 -0.37533 0.71875 0.125 0.1374 -0.881 -0.4528 +0.108386 -0.83147 -0.544895 0.71875 0.1875 0.1374 -0.881 -0.4528 +0.212608 -0.83147 -0.51328 0.6875 0.1875 0.1374 -0.881 -0.4528 +0.074658 -0.92388 -0.37533 0.71875 0.125 0.1374 -0.881 -0.4528 +0.212608 -0.83147 -0.51328 0.6875 0.1875 0.1374 -0.881 -0.4528 +0.146447 -0.92388 -0.353553 0.6875 0.125 0.1374 -0.881 -0.4528 +0.191342 0.19509 -0.96194 0.71875 0.5625 0.2779 0.289 -0.9161 +0.18024 0.382683 -0.906127 0.71875 0.625 0.2779 0.289 -0.9161 +0.353553 0.382683 -0.853553 0.6875 0.625 0.2779 0.289 -0.9161 +0.191342 0.19509 -0.96194 0.71875 0.5625 0.2779 0.289 -0.9161 +0.353553 0.382683 -0.853553 0.6875 0.625 0.2779 0.289 -0.9161 +0.37533 0.19509 -0.906127 0.6875 0.5625 0.2779 0.289 -0.9161 0.270598 0.707107 -0.653281 0.6875 0.75 0.2999 0.7715 -0.5611 0.212608 0.83147 -0.51328 0.6875 0.8125 0.2999 0.7715 -0.5611 0.308658 0.83147 -0.46194 0.65625 0.8125 0.2999 0.7715 -0.5611 @@ -272,48 +230,48 @@ Data: 0.074658 -0.980785 -0.18024 0.6875 0.0625 0.1374 -0.9565 -0.2571 0.212608 -0.92388 -0.31819 0.65625 0.125 0.1374 -0.9565 -0.2571 0.108386 -0.980785 -0.162212 0.65625 0.0625 0.1374 -0.9565 -0.2571 -0.392847 -0.707107 -0.587938 0.65625 0.25 0.4913 -0.6326 -0.5987 -0.46194 -0.55557 -0.691342 0.65625 0.3125 0.4913 -0.6326 -0.5987 -0.587938 -0.55557 -0.587938 0.625 0.3125 0.4913 -0.6326 -0.5987 -0.392847 -0.707107 -0.587938 0.65625 0.25 0.4913 -0.6326 -0.5987 -0.587938 -0.55557 -0.587938 0.625 0.3125 0.4913 -0.6326 -0.5987 -0.5 -0.707107 -0.5 0.625 0.25 0.4913 -0.6326 -0.5987 -0.46194 0.55557 -0.691342 0.65625 0.6875 0.4913 0.6326 -0.5987 -0.392847 0.707107 -0.587938 0.65625 0.75 0.4913 0.6326 -0.5987 -0.5 0.707107 -0.5 0.625 0.75 0.4913 0.6326 -0.5987 -0.46194 0.55557 -0.691342 0.65625 0.6875 0.4913 0.6326 -0.5987 -0.5 0.707107 -0.5 0.625 0.75 0.4913 0.6326 -0.5987 -0.587938 0.55557 -0.587938 0.625 0.6875 0.4913 0.6326 -0.5987 -0.308658 -0.83147 -0.46194 0.65625 0.1875 0.4036 -0.7715 -0.4918 -0.392847 -0.707107 -0.587938 0.65625 0.25 0.4036 -0.7715 -0.4918 -0.5 -0.707107 -0.5 0.625 0.25 0.4036 -0.7715 -0.4918 -0.308658 -0.83147 -0.46194 0.65625 0.1875 0.4036 -0.7715 -0.4918 -0.5 -0.707107 -0.5 0.625 0.25 0.4036 -0.7715 -0.4918 -0.392847 -0.83147 -0.392847 0.625 0.1875 0.4036 -0.7715 -0.4918 -0.51328 0.382683 -0.768178 0.65625 0.625 0.5601 0.4696 -0.6825 -0.46194 0.55557 -0.691342 0.65625 0.6875 0.5601 0.4696 -0.6825 -0.587938 0.55557 -0.587938 0.625 0.6875 0.5601 0.4696 -0.6825 -0.51328 0.382683 -0.768178 0.65625 0.625 0.5601 0.4696 -0.6825 -0.587938 0.55557 -0.587938 0.625 0.6875 0.5601 0.4696 -0.6825 -0.653281 0.382683 -0.653281 0.625 0.625 0.5601 0.4696 -0.6825 -0.212608 -0.92388 -0.31819 0.65625 0.125 0.3002 -0.881 -0.3658 -0.308658 -0.83147 -0.46194 0.65625 0.1875 0.3002 -0.881 -0.3658 -0.392847 -0.83147 -0.392847 0.625 0.1875 0.3002 -0.881 -0.3658 -0.212608 -0.92388 -0.31819 0.65625 0.125 0.3002 -0.881 -0.3658 -0.392847 -0.83147 -0.392847 0.625 0.1875 0.3002 -0.881 -0.3658 -0.270598 -0.92388 -0.270598 0.625 0.125 0.3002 -0.881 -0.3658 -0.544895 0.19509 -0.815493 0.65625 0.5625 0.6073 0.289 -0.74 -0.51328 0.382683 -0.768178 0.65625 0.625 0.6073 0.289 -0.74 -0.653281 0.382683 -0.653281 0.625 0.625 0.6073 0.289 -0.74 -0.544895 0.19509 -0.815493 0.65625 0.5625 0.6073 0.289 -0.74 -0.653281 0.382683 -0.653281 0.625 0.625 0.6073 0.289 -0.74 -0.69352 0.19509 -0.69352 0.625 0.5625 0.6073 0.289 -0.74 -0.108386 -0.980785 -0.162212 0.65625 0.0625 0.185 -0.9565 -0.2254 -0.212608 -0.92388 -0.31819 0.65625 0.125 0.185 -0.9565 -0.2254 -0.270598 -0.92388 -0.270598 0.625 0.125 0.185 -0.9565 -0.2254 -0.108386 -0.980785 -0.162212 0.65625 0.0625 0.185 -0.9565 -0.2254 -0.270598 -0.92388 -0.270598 0.625 0.125 0.185 -0.9565 -0.2254 -0.13795 -0.980785 -0.13795 0.625 0.0625 0.185 -0.9565 -0.2254 +0.382683 0 -0.923879 0.6875 0.5 0.4691 0.0975 -0.8777 +0.37533 0.19509 -0.906127 0.6875 0.5625 0.4691 0.0975 -0.8777 +0.544895 0.19509 -0.815493 0.65625 0.5625 0.4691 0.0975 -0.8777 +0.382683 0 -0.923879 0.6875 0.5 0.4691 0.0975 -0.8777 +0.544895 0.19509 -0.815493 0.65625 0.5625 0.4691 0.0975 -0.8777 +0.55557 0 -0.831469 0.65625 0.5 0.4691 0.0975 -0.8777 +0.074658 0.980785 -0.18024 0.6875 0.9375 0.0464 0.9951 -0.0869 +0 1 0 0.671875 1 0.0464 0.9951 -0.0869 +0.108386 0.980785 -0.162212 0.65625 0.9375 0.0464 0.9951 -0.0869 +0 -1 0 0.671875 0 0.0464 -0.9951 -0.0869 +0.074658 -0.980785 -0.18024 0.6875 0.0625 0.0464 -0.9951 -0.0869 +0.108386 -0.980785 -0.162212 0.65625 0.0625 0.0464 -0.9951 -0.0869 +0.37533 -0.19509 -0.906127 0.6875 0.4375 0.4691 -0.0975 -0.8777 +0.382683 0 -0.923879 0.6875 0.5 0.4691 -0.0975 -0.8777 +0.55557 0 -0.831469 0.65625 0.5 0.4691 -0.0975 -0.8777 +0.37533 -0.19509 -0.906127 0.6875 0.4375 0.4691 -0.0975 -0.8777 +0.55557 0 -0.831469 0.65625 0.5 0.4691 -0.0975 -0.8777 +0.544895 -0.19509 -0.815493 0.65625 0.4375 0.4691 -0.0975 -0.8777 +0.146447 0.92388 -0.353553 0.6875 0.875 0.1374 0.9565 -0.2571 +0.074658 0.980785 -0.18024 0.6875 0.9375 0.1374 0.9565 -0.2571 +0.108386 0.980785 -0.162212 0.65625 0.9375 0.1374 0.9565 -0.2571 +0.146447 0.92388 -0.353553 0.6875 0.875 0.1374 0.9565 -0.2571 +0.108386 0.980785 -0.162212 0.65625 0.9375 0.1374 0.9565 -0.2571 +0.212608 0.92388 -0.31819 0.65625 0.875 0.1374 0.9565 -0.2571 +0.353553 -0.382683 -0.853553 0.6875 0.375 0.4513 -0.289 -0.8443 +0.37533 -0.19509 -0.906127 0.6875 0.4375 0.4513 -0.289 -0.8443 +0.544895 -0.19509 -0.815493 0.65625 0.4375 0.4513 -0.289 -0.8443 +0.353553 -0.382683 -0.853553 0.6875 0.375 0.4513 -0.289 -0.8443 +0.544895 -0.19509 -0.815493 0.65625 0.4375 0.4513 -0.289 -0.8443 +0.51328 -0.382683 -0.768178 0.65625 0.375 0.4513 -0.289 -0.8443 +0.212608 0.83147 -0.51328 0.6875 0.8125 0.223 0.881 -0.4173 +0.146447 0.92388 -0.353553 0.6875 0.875 0.223 0.881 -0.4173 +0.212608 0.92388 -0.31819 0.65625 0.875 0.223 0.881 -0.4173 +0.212608 0.83147 -0.51328 0.6875 0.8125 0.223 0.881 -0.4173 +0.212608 0.92388 -0.31819 0.65625 0.875 0.223 0.881 -0.4173 +0.308658 0.83147 -0.46194 0.65625 0.8125 0.223 0.881 -0.4173 +0.31819 -0.55557 -0.768178 0.6875 0.3125 0.4162 -0.4696 -0.7786 +0.353553 -0.382683 -0.853553 0.6875 0.375 0.4162 -0.4696 -0.7786 +0.51328 -0.382683 -0.768178 0.65625 0.375 0.4162 -0.4696 -0.7786 +0.31819 -0.55557 -0.768178 0.6875 0.3125 0.4162 -0.4696 -0.7786 +0.51328 -0.382683 -0.768178 0.65625 0.375 0.4162 -0.4696 -0.7786 +0.46194 -0.55557 -0.691342 0.65625 0.3125 0.4162 -0.4696 -0.7786 0.55557 0 -0.831469 0.65625 0.5 0.6314 0.0975 -0.7693 0.544895 0.19509 -0.815493 0.65625 0.5625 0.6314 0.0975 -0.7693 0.69352 0.19509 -0.69352 0.625 0.5625 0.6314 0.0975 -0.7693 @@ -362,48 +320,48 @@ Data: 0.392847 0.707107 -0.587938 0.65625 0.75 0.4036 0.7715 -0.4918 0.392847 0.83147 -0.392847 0.625 0.8125 0.4036 0.7715 -0.4918 0.5 0.707107 -0.5 0.625 0.75 0.4036 0.7715 -0.4918 -0.13795 0.980785 -0.13795 0.625 0.9375 0.0761 0.9951 -0.0625 -0 1 0 0.609375 1 0.0761 0.9951 -0.0625 -0.162212 0.980785 -0.108386 0.59375 0.9375 0.0761 0.9951 -0.0625 -0 -1 0 0.609375 0 0.0761 -0.9951 -0.0625 -0.13795 -0.980785 -0.13795 0.625 0.0625 0.0761 -0.9951 -0.0625 -0.162212 -0.980785 -0.108386 0.59375 0.0625 0.0761 -0.9951 -0.0625 -0.69352 -0.19509 -0.69352 0.625 0.4375 0.7693 -0.0975 -0.6314 -0.707107 0 -0.707107 0.625 0.5 0.7693 -0.0975 -0.6314 -0.83147 0 -0.55557 0.59375 0.5 0.7693 -0.0975 -0.6314 -0.69352 -0.19509 -0.69352 0.625 0.4375 0.7693 -0.0975 -0.6314 -0.83147 0 -0.55557 0.59375 0.5 0.7693 -0.0975 -0.6314 -0.815493 -0.19509 -0.544895 0.59375 0.4375 0.7693 -0.0975 -0.6314 -0.270598 0.92388 -0.270598 0.625 0.875 0.2254 0.9565 -0.185 -0.13795 0.980785 -0.13795 0.625 0.9375 0.2254 0.9565 -0.185 -0.162212 0.980785 -0.108386 0.59375 0.9375 0.2254 0.9565 -0.185 -0.270598 0.92388 -0.270598 0.625 0.875 0.2254 0.9565 -0.185 -0.162212 0.980785 -0.108386 0.59375 0.9375 0.2254 0.9565 -0.185 -0.31819 0.92388 -0.212608 0.59375 0.875 0.2254 0.9565 -0.185 -0.653281 -0.382683 -0.653281 0.625 0.375 0.74 -0.289 -0.6073 -0.69352 -0.19509 -0.69352 0.625 0.4375 0.74 -0.289 -0.6073 -0.815493 -0.19509 -0.544895 0.59375 0.4375 0.74 -0.289 -0.6073 -0.653281 -0.382683 -0.653281 0.625 0.375 0.74 -0.289 -0.6073 -0.815493 -0.19509 -0.544895 0.59375 0.4375 0.74 -0.289 -0.6073 -0.768178 -0.382683 -0.51328 0.59375 0.375 0.74 -0.289 -0.6073 -0.392847 0.83147 -0.392847 0.625 0.8125 0.3658 0.881 -0.3002 -0.270598 0.92388 -0.270598 0.625 0.875 0.3658 0.881 -0.3002 -0.31819 0.92388 -0.212608 0.59375 0.875 0.3658 0.881 -0.3002 -0.392847 0.83147 -0.392847 0.625 0.8125 0.3658 0.881 -0.3002 -0.31819 0.92388 -0.212608 0.59375 0.875 0.3658 0.881 -0.3002 -0.46194 0.83147 -0.308658 0.59375 0.8125 0.3658 0.881 -0.3002 -0.587938 -0.55557 -0.587938 0.625 0.3125 0.6825 -0.4696 -0.5601 -0.653281 -0.382683 -0.653281 0.625 0.375 0.6825 -0.4696 -0.5601 -0.768178 -0.382683 -0.51328 0.59375 0.375 0.6825 -0.4696 -0.5601 -0.587938 -0.55557 -0.587938 0.625 0.3125 0.6825 -0.4696 -0.5601 -0.768178 -0.382683 -0.51328 0.59375 0.375 0.6825 -0.4696 -0.5601 -0.691342 -0.55557 -0.46194 0.59375 0.3125 0.6825 -0.4696 -0.5601 -0.5 0.707107 -0.5 0.625 0.75 0.4918 0.7715 -0.4036 -0.392847 0.83147 -0.392847 0.625 0.8125 0.4918 0.7715 -0.4036 -0.46194 0.83147 -0.308658 0.59375 0.8125 0.4918 0.7715 -0.4036 -0.5 0.707107 -0.5 0.625 0.75 0.4918 0.7715 -0.4036 -0.46194 0.83147 -0.308658 0.59375 0.8125 0.4918 0.7715 -0.4036 -0.587938 0.707107 -0.392847 0.59375 0.75 0.4918 0.7715 -0.4036 +0.392847 -0.707107 -0.587938 0.65625 0.25 0.4913 -0.6326 -0.5987 +0.46194 -0.55557 -0.691342 0.65625 0.3125 0.4913 -0.6326 -0.5987 +0.587938 -0.55557 -0.587938 0.625 0.3125 0.4913 -0.6326 -0.5987 +0.392847 -0.707107 -0.587938 0.65625 0.25 0.4913 -0.6326 -0.5987 +0.587938 -0.55557 -0.587938 0.625 0.3125 0.4913 -0.6326 -0.5987 +0.5 -0.707107 -0.5 0.625 0.25 0.4913 -0.6326 -0.5987 +0.46194 0.55557 -0.691342 0.65625 0.6875 0.4913 0.6326 -0.5987 +0.392847 0.707107 -0.587938 0.65625 0.75 0.4913 0.6326 -0.5987 +0.5 0.707107 -0.5 0.625 0.75 0.4913 0.6326 -0.5987 +0.46194 0.55557 -0.691342 0.65625 0.6875 0.4913 0.6326 -0.5987 +0.5 0.707107 -0.5 0.625 0.75 0.4913 0.6326 -0.5987 +0.587938 0.55557 -0.587938 0.625 0.6875 0.4913 0.6326 -0.5987 +0.308658 -0.83147 -0.46194 0.65625 0.1875 0.4036 -0.7715 -0.4918 +0.392847 -0.707107 -0.587938 0.65625 0.25 0.4036 -0.7715 -0.4918 +0.5 -0.707107 -0.5 0.625 0.25 0.4036 -0.7715 -0.4918 +0.308658 -0.83147 -0.46194 0.65625 0.1875 0.4036 -0.7715 -0.4918 +0.5 -0.707107 -0.5 0.625 0.25 0.4036 -0.7715 -0.4918 +0.392847 -0.83147 -0.392847 0.625 0.1875 0.4036 -0.7715 -0.4918 +0.51328 0.382683 -0.768178 0.65625 0.625 0.5601 0.4696 -0.6825 +0.46194 0.55557 -0.691342 0.65625 0.6875 0.5601 0.4696 -0.6825 +0.587938 0.55557 -0.587938 0.625 0.6875 0.5601 0.4696 -0.6825 +0.51328 0.382683 -0.768178 0.65625 0.625 0.5601 0.4696 -0.6825 +0.587938 0.55557 -0.587938 0.625 0.6875 0.5601 0.4696 -0.6825 +0.653281 0.382683 -0.653281 0.625 0.625 0.5601 0.4696 -0.6825 +0.212608 -0.92388 -0.31819 0.65625 0.125 0.3002 -0.881 -0.3658 +0.308658 -0.83147 -0.46194 0.65625 0.1875 0.3002 -0.881 -0.3658 +0.392847 -0.83147 -0.392847 0.625 0.1875 0.3002 -0.881 -0.3658 +0.212608 -0.92388 -0.31819 0.65625 0.125 0.3002 -0.881 -0.3658 +0.392847 -0.83147 -0.392847 0.625 0.1875 0.3002 -0.881 -0.3658 +0.270598 -0.92388 -0.270598 0.625 0.125 0.3002 -0.881 -0.3658 +0.544895 0.19509 -0.815493 0.65625 0.5625 0.6073 0.289 -0.74 +0.51328 0.382683 -0.768178 0.65625 0.625 0.6073 0.289 -0.74 +0.653281 0.382683 -0.653281 0.625 0.625 0.6073 0.289 -0.74 +0.544895 0.19509 -0.815493 0.65625 0.5625 0.6073 0.289 -0.74 +0.653281 0.382683 -0.653281 0.625 0.625 0.6073 0.289 -0.74 +0.69352 0.19509 -0.69352 0.625 0.5625 0.6073 0.289 -0.74 +0.108386 -0.980785 -0.162212 0.65625 0.0625 0.185 -0.9565 -0.2254 +0.212608 -0.92388 -0.31819 0.65625 0.125 0.185 -0.9565 -0.2254 +0.270598 -0.92388 -0.270598 0.625 0.125 0.185 -0.9565 -0.2254 +0.108386 -0.980785 -0.162212 0.65625 0.0625 0.185 -0.9565 -0.2254 +0.270598 -0.92388 -0.270598 0.625 0.125 0.185 -0.9565 -0.2254 +0.13795 -0.980785 -0.13795 0.625 0.0625 0.185 -0.9565 -0.2254 0.5 -0.707107 -0.5 0.625 0.25 0.5987 -0.6326 -0.4913 0.587938 -0.55557 -0.587938 0.625 0.3125 0.5987 -0.6326 -0.4913 0.691342 -0.55557 -0.46194 0.59375 0.3125 0.5987 -0.6326 -0.4913 @@ -452,48 +410,48 @@ Data: 0.707107 0 -0.707107 0.625 0.5 0.7693 0.0975 -0.6314 0.815493 0.19509 -0.544895 0.59375 0.5625 0.7693 0.0975 -0.6314 0.83147 0 -0.55557 0.59375 0.5 0.7693 0.0975 -0.6314 -0.691342 0.55557 -0.46194 0.59375 0.6875 0.6831 0.6326 -0.3651 -0.587938 0.707107 -0.392847 0.59375 0.75 0.6831 0.6326 -0.3651 -0.653281 0.707107 -0.270598 0.5625 0.75 0.6831 0.6326 -0.3651 -0.691342 0.55557 -0.46194 0.59375 0.6875 0.6831 0.6326 -0.3651 -0.653281 0.707107 -0.270598 0.5625 0.75 0.6831 0.6326 -0.3651 -0.768178 0.55557 -0.31819 0.5625 0.6875 0.6831 0.6326 -0.3651 -0.46194 -0.83147 -0.308658 0.59375 0.1875 0.5611 -0.7715 -0.2999 -0.587938 -0.707107 -0.392847 0.59375 0.25 0.5611 -0.7715 -0.2999 -0.653281 -0.707107 -0.270598 0.5625 0.25 0.5611 -0.7715 -0.2999 -0.46194 -0.83147 -0.308658 0.59375 0.1875 0.5611 -0.7715 -0.2999 -0.653281 -0.707107 -0.270598 0.5625 0.25 0.5611 -0.7715 -0.2999 -0.51328 -0.83147 -0.212607 0.5625 0.1875 0.5611 -0.7715 -0.2999 -0.768178 0.382683 -0.51328 0.59375 0.625 0.7786 0.4696 -0.4162 -0.691342 0.55557 -0.46194 0.59375 0.6875 0.7786 0.4696 -0.4162 -0.768178 0.55557 -0.31819 0.5625 0.6875 0.7786 0.4696 -0.4162 -0.768178 0.382683 -0.51328 0.59375 0.625 0.7786 0.4696 -0.4162 -0.768178 0.55557 -0.31819 0.5625 0.6875 0.7786 0.4696 -0.4162 -0.853553 0.382683 -0.353553 0.5625 0.625 0.7786 0.4696 -0.4162 -0.31819 -0.92388 -0.212608 0.59375 0.125 0.4173 -0.881 -0.223 -0.46194 -0.83147 -0.308658 0.59375 0.1875 0.4173 -0.881 -0.223 -0.51328 -0.83147 -0.212607 0.5625 0.1875 0.4173 -0.881 -0.223 -0.31819 -0.92388 -0.212608 0.59375 0.125 0.4173 -0.881 -0.223 -0.51328 -0.83147 -0.212607 0.5625 0.1875 0.4173 -0.881 -0.223 -0.353553 -0.92388 -0.146447 0.5625 0.125 0.4173 -0.881 -0.223 -0.815493 0.19509 -0.544895 0.59375 0.5625 0.8443 0.289 -0.4513 -0.768178 0.382683 -0.51328 0.59375 0.625 0.8443 0.289 -0.4513 -0.853553 0.382683 -0.353553 0.5625 0.625 0.8443 0.289 -0.4513 -0.815493 0.19509 -0.544895 0.59375 0.5625 0.8443 0.289 -0.4513 -0.853553 0.382683 -0.353553 0.5625 0.625 0.8443 0.289 -0.4513 -0.906127 0.19509 -0.37533 0.5625 0.5625 0.8443 0.289 -0.4513 -0.162212 -0.980785 -0.108386 0.59375 0.0625 0.2571 -0.9565 -0.1374 -0.31819 -0.92388 -0.212608 0.59375 0.125 0.2571 -0.9565 -0.1374 -0.353553 -0.92388 -0.146447 0.5625 0.125 0.2571 -0.9565 -0.1374 -0.162212 -0.980785 -0.108386 0.59375 0.0625 0.2571 -0.9565 -0.1374 -0.353553 -0.92388 -0.146447 0.5625 0.125 0.2571 -0.9565 -0.1374 -0.18024 -0.980785 -0.074658 0.5625 0.0625 0.2571 -0.9565 -0.1374 -0.83147 0 -0.55557 0.59375 0.5 0.8777 0.0975 -0.4691 -0.815493 0.19509 -0.544895 0.59375 0.5625 0.8777 0.0975 -0.4691 -0.906127 0.19509 -0.37533 0.5625 0.5625 0.8777 0.0975 -0.4691 -0.83147 0 -0.55557 0.59375 0.5 0.8777 0.0975 -0.4691 -0.906127 0.19509 -0.37533 0.5625 0.5625 0.8777 0.0975 -0.4691 -0.923879 0 -0.382683 0.5625 0.5 0.8777 0.0975 -0.4691 +0.13795 0.980785 -0.13795 0.625 0.9375 0.0761 0.9951 -0.0625 +0 1 0 0.609375 1 0.0761 0.9951 -0.0625 +0.162212 0.980785 -0.108386 0.59375 0.9375 0.0761 0.9951 -0.0625 +0 -1 0 0.609375 0 0.0761 -0.9951 -0.0625 +0.13795 -0.980785 -0.13795 0.625 0.0625 0.0761 -0.9951 -0.0625 +0.162212 -0.980785 -0.108386 0.59375 0.0625 0.0761 -0.9951 -0.0625 +0.69352 -0.19509 -0.69352 0.625 0.4375 0.7693 -0.0975 -0.6314 +0.707107 0 -0.707107 0.625 0.5 0.7693 -0.0975 -0.6314 +0.83147 0 -0.55557 0.59375 0.5 0.7693 -0.0975 -0.6314 +0.69352 -0.19509 -0.69352 0.625 0.4375 0.7693 -0.0975 -0.6314 +0.83147 0 -0.55557 0.59375 0.5 0.7693 -0.0975 -0.6314 +0.815493 -0.19509 -0.544895 0.59375 0.4375 0.7693 -0.0975 -0.6314 +0.270598 0.92388 -0.270598 0.625 0.875 0.2254 0.9565 -0.185 +0.13795 0.980785 -0.13795 0.625 0.9375 0.2254 0.9565 -0.185 +0.162212 0.980785 -0.108386 0.59375 0.9375 0.2254 0.9565 -0.185 +0.270598 0.92388 -0.270598 0.625 0.875 0.2254 0.9565 -0.185 +0.162212 0.980785 -0.108386 0.59375 0.9375 0.2254 0.9565 -0.185 +0.31819 0.92388 -0.212608 0.59375 0.875 0.2254 0.9565 -0.185 +0.653281 -0.382683 -0.653281 0.625 0.375 0.74 -0.289 -0.6073 +0.69352 -0.19509 -0.69352 0.625 0.4375 0.74 -0.289 -0.6073 +0.815493 -0.19509 -0.544895 0.59375 0.4375 0.74 -0.289 -0.6073 +0.653281 -0.382683 -0.653281 0.625 0.375 0.74 -0.289 -0.6073 +0.815493 -0.19509 -0.544895 0.59375 0.4375 0.74 -0.289 -0.6073 +0.768178 -0.382683 -0.51328 0.59375 0.375 0.74 -0.289 -0.6073 +0.392847 0.83147 -0.392847 0.625 0.8125 0.3658 0.881 -0.3002 +0.270598 0.92388 -0.270598 0.625 0.875 0.3658 0.881 -0.3002 +0.31819 0.92388 -0.212608 0.59375 0.875 0.3658 0.881 -0.3002 +0.392847 0.83147 -0.392847 0.625 0.8125 0.3658 0.881 -0.3002 +0.31819 0.92388 -0.212608 0.59375 0.875 0.3658 0.881 -0.3002 +0.46194 0.83147 -0.308658 0.59375 0.8125 0.3658 0.881 -0.3002 +0.587938 -0.55557 -0.587938 0.625 0.3125 0.6825 -0.4696 -0.5601 +0.653281 -0.382683 -0.653281 0.625 0.375 0.6825 -0.4696 -0.5601 +0.768178 -0.382683 -0.51328 0.59375 0.375 0.6825 -0.4696 -0.5601 +0.587938 -0.55557 -0.587938 0.625 0.3125 0.6825 -0.4696 -0.5601 +0.768178 -0.382683 -0.51328 0.59375 0.375 0.6825 -0.4696 -0.5601 +0.691342 -0.55557 -0.46194 0.59375 0.3125 0.6825 -0.4696 -0.5601 +0.5 0.707107 -0.5 0.625 0.75 0.4918 0.7715 -0.4036 +0.392847 0.83147 -0.392847 0.625 0.8125 0.4918 0.7715 -0.4036 +0.46194 0.83147 -0.308658 0.59375 0.8125 0.4918 0.7715 -0.4036 +0.5 0.707107 -0.5 0.625 0.75 0.4918 0.7715 -0.4036 +0.46194 0.83147 -0.308658 0.59375 0.8125 0.4918 0.7715 -0.4036 +0.587938 0.707107 -0.392847 0.59375 0.75 0.4918 0.7715 -0.4036 0.162212 0.980785 -0.108386 0.59375 0.9375 0.0869 0.9951 -0.0464 0 1 0 0.578125 1 0.0869 0.9951 -0.0464 0.18024 0.980785 -0.074658 0.5625 0.9375 0.0869 0.9951 -0.0464 @@ -542,48 +500,48 @@ Data: 0.587938 -0.707107 -0.392847 0.59375 0.25 0.6831 -0.6326 -0.3651 0.768178 -0.55557 -0.31819 0.5625 0.3125 0.6831 -0.6326 -0.3651 0.653281 -0.707107 -0.270598 0.5625 0.25 0.6831 -0.6326 -0.3651 -0.906127 -0.19509 -0.37533 0.5625 0.4375 0.9524 -0.0975 -0.2889 -0.923879 0 -0.382683 0.5625 0.5 0.9524 -0.0975 -0.2889 -0.980785 0 -0.19509 0.53125 0.5 0.9524 -0.0975 -0.2889 -0.906127 -0.19509 -0.37533 0.5625 0.4375 0.9524 -0.0975 -0.2889 -0.980785 0 -0.19509 0.53125 0.5 0.9524 -0.0975 -0.2889 -0.96194 -0.19509 -0.191342 0.53125 0.4375 0.9524 -0.0975 -0.2889 -0.353553 0.92388 -0.146447 0.5625 0.875 0.279 0.9565 -0.0846 -0.18024 0.980785 -0.074658 0.5625 0.9375 0.279 0.9565 -0.0846 -0.191342 0.980785 -0.03806 0.53125 0.9375 0.279 0.9565 -0.0846 -0.353553 0.92388 -0.146447 0.5625 0.875 0.279 0.9565 -0.0846 -0.191342 0.980785 -0.03806 0.53125 0.9375 0.279 0.9565 -0.0846 -0.37533 0.92388 -0.074658 0.53125 0.875 0.279 0.9565 -0.0846 -0.853553 -0.382683 -0.353553 0.5625 0.375 0.9161 -0.289 -0.2779 -0.906127 -0.19509 -0.37533 0.5625 0.4375 0.9161 -0.289 -0.2779 -0.96194 -0.19509 -0.191342 0.53125 0.4375 0.9161 -0.289 -0.2779 -0.853553 -0.382683 -0.353553 0.5625 0.375 0.9161 -0.289 -0.2779 -0.96194 -0.19509 -0.191342 0.53125 0.4375 0.9161 -0.289 -0.2779 -0.906127 -0.382683 -0.18024 0.53125 0.375 0.9161 -0.289 -0.2779 -0.51328 0.83147 -0.212607 0.5625 0.8125 0.4528 0.881 -0.1374 -0.353553 0.92388 -0.146447 0.5625 0.875 0.4528 0.881 -0.1374 -0.37533 0.92388 -0.074658 0.53125 0.875 0.4528 0.881 -0.1374 -0.51328 0.83147 -0.212607 0.5625 0.8125 0.4528 0.881 -0.1374 -0.37533 0.92388 -0.074658 0.53125 0.875 0.4528 0.881 -0.1374 -0.544895 0.83147 -0.108386 0.53125 0.8125 0.4528 0.881 -0.1374 -0.768178 -0.55557 -0.31819 0.5625 0.3125 0.8448 -0.4696 -0.2563 -0.853553 -0.382683 -0.353553 0.5625 0.375 0.8448 -0.4696 -0.2563 -0.906127 -0.382683 -0.18024 0.53125 0.375 0.8448 -0.4696 -0.2563 -0.768178 -0.55557 -0.31819 0.5625 0.3125 0.8448 -0.4696 -0.2563 -0.906127 -0.382683 -0.18024 0.53125 0.375 0.8448 -0.4696 -0.2563 -0.815493 -0.55557 -0.162212 0.53125 0.3125 0.8448 -0.4696 -0.2563 -0.653281 0.707107 -0.270598 0.5625 0.75 0.6088 0.7715 -0.1847 -0.51328 0.83147 -0.212607 0.5625 0.8125 0.6088 0.7715 -0.1847 -0.544895 0.83147 -0.108386 0.53125 0.8125 0.6088 0.7715 -0.1847 -0.653281 0.707107 -0.270598 0.5625 0.75 0.6088 0.7715 -0.1847 -0.544895 0.83147 -0.108386 0.53125 0.8125 0.6088 0.7715 -0.1847 -0.69352 0.707107 -0.13795 0.53125 0.75 0.6088 0.7715 -0.1847 -0.653281 -0.707107 -0.270598 0.5625 0.25 0.7412 -0.6326 -0.2248 -0.768178 -0.55557 -0.31819 0.5625 0.3125 0.7412 -0.6326 -0.2248 -0.815493 -0.55557 -0.162212 0.53125 0.3125 0.7412 -0.6326 -0.2248 -0.653281 -0.707107 -0.270598 0.5625 0.25 0.7412 -0.6326 -0.2248 -0.815493 -0.55557 -0.162212 0.53125 0.3125 0.7412 -0.6326 -0.2248 -0.69352 -0.707107 -0.13795 0.53125 0.25 0.7412 -0.6326 -0.2248 +0.691342 0.55557 -0.46194 0.59375 0.6875 0.6831 0.6326 -0.3651 +0.587938 0.707107 -0.392847 0.59375 0.75 0.6831 0.6326 -0.3651 +0.653281 0.707107 -0.270598 0.5625 0.75 0.6831 0.6326 -0.3651 +0.691342 0.55557 -0.46194 0.59375 0.6875 0.6831 0.6326 -0.3651 +0.653281 0.707107 -0.270598 0.5625 0.75 0.6831 0.6326 -0.3651 +0.768178 0.55557 -0.31819 0.5625 0.6875 0.6831 0.6326 -0.3651 +0.46194 -0.83147 -0.308658 0.59375 0.1875 0.5611 -0.7715 -0.2999 +0.587938 -0.707107 -0.392847 0.59375 0.25 0.5611 -0.7715 -0.2999 +0.653281 -0.707107 -0.270598 0.5625 0.25 0.5611 -0.7715 -0.2999 +0.46194 -0.83147 -0.308658 0.59375 0.1875 0.5611 -0.7715 -0.2999 +0.653281 -0.707107 -0.270598 0.5625 0.25 0.5611 -0.7715 -0.2999 +0.51328 -0.83147 -0.212607 0.5625 0.1875 0.5611 -0.7715 -0.2999 +0.768178 0.382683 -0.51328 0.59375 0.625 0.7786 0.4696 -0.4162 +0.691342 0.55557 -0.46194 0.59375 0.6875 0.7786 0.4696 -0.4162 +0.768178 0.55557 -0.31819 0.5625 0.6875 0.7786 0.4696 -0.4162 +0.768178 0.382683 -0.51328 0.59375 0.625 0.7786 0.4696 -0.4162 +0.768178 0.55557 -0.31819 0.5625 0.6875 0.7786 0.4696 -0.4162 +0.853553 0.382683 -0.353553 0.5625 0.625 0.7786 0.4696 -0.4162 +0.31819 -0.92388 -0.212608 0.59375 0.125 0.4173 -0.881 -0.223 +0.46194 -0.83147 -0.308658 0.59375 0.1875 0.4173 -0.881 -0.223 +0.51328 -0.83147 -0.212607 0.5625 0.1875 0.4173 -0.881 -0.223 +0.31819 -0.92388 -0.212608 0.59375 0.125 0.4173 -0.881 -0.223 +0.51328 -0.83147 -0.212607 0.5625 0.1875 0.4173 -0.881 -0.223 +0.353553 -0.92388 -0.146447 0.5625 0.125 0.4173 -0.881 -0.223 +0.815493 0.19509 -0.544895 0.59375 0.5625 0.8443 0.289 -0.4513 +0.768178 0.382683 -0.51328 0.59375 0.625 0.8443 0.289 -0.4513 +0.853553 0.382683 -0.353553 0.5625 0.625 0.8443 0.289 -0.4513 +0.815493 0.19509 -0.544895 0.59375 0.5625 0.8443 0.289 -0.4513 +0.853553 0.382683 -0.353553 0.5625 0.625 0.8443 0.289 -0.4513 +0.906127 0.19509 -0.37533 0.5625 0.5625 0.8443 0.289 -0.4513 +0.162212 -0.980785 -0.108386 0.59375 0.0625 0.2571 -0.9565 -0.1374 +0.31819 -0.92388 -0.212608 0.59375 0.125 0.2571 -0.9565 -0.1374 +0.353553 -0.92388 -0.146447 0.5625 0.125 0.2571 -0.9565 -0.1374 +0.162212 -0.980785 -0.108386 0.59375 0.0625 0.2571 -0.9565 -0.1374 +0.353553 -0.92388 -0.146447 0.5625 0.125 0.2571 -0.9565 -0.1374 +0.18024 -0.980785 -0.074658 0.5625 0.0625 0.2571 -0.9565 -0.1374 +0.83147 0 -0.55557 0.59375 0.5 0.8777 0.0975 -0.4691 +0.815493 0.19509 -0.544895 0.59375 0.5625 0.8777 0.0975 -0.4691 +0.906127 0.19509 -0.37533 0.5625 0.5625 0.8777 0.0975 -0.4691 +0.83147 0 -0.55557 0.59375 0.5 0.8777 0.0975 -0.4691 +0.906127 0.19509 -0.37533 0.5625 0.5625 0.8777 0.0975 -0.4691 +0.923879 0 -0.382683 0.5625 0.5 0.8777 0.0975 -0.4691 0.768178 0.55557 -0.31819 0.5625 0.6875 0.7412 0.6326 -0.2248 0.653281 0.707107 -0.270598 0.5625 0.75 0.7412 0.6326 -0.2248 0.69352 0.707107 -0.13795 0.53125 0.75 0.7412 0.6326 -0.2248 @@ -632,48 +590,48 @@ Data: 0 -1 0 0.546875 0 0.0942 -0.9951 -0.0286 0.18024 -0.980785 -0.074658 0.5625 0.0625 0.0942 -0.9951 -0.0286 0.191342 -0.980785 -0.03806 0.53125 0.0625 0.0942 -0.9951 -0.0286 -0.544895 -0.83147 -0.108386 0.53125 0.1875 0.6332 -0.7715 -0.0624 -0.69352 -0.707107 -0.13795 0.53125 0.25 0.6332 -0.7715 -0.0624 -0.707107 -0.707107 -0 0.5 0.25 0.6332 -0.7715 -0.0624 -0.544895 -0.83147 -0.108386 0.53125 0.1875 0.6332 -0.7715 -0.0624 -0.707107 -0.707107 -0 0.5 0.25 0.6332 -0.7715 -0.0624 -0.55557 -0.83147 0 0.5 0.1875 0.6332 -0.7715 -0.0624 -0.906127 0.382683 -0.18024 0.53125 0.625 0.8786 0.4696 -0.0865 -0.815493 0.55557 -0.162212 0.53125 0.6875 0.8786 0.4696 -0.0865 -0.831469 0.55557 0 0.5 0.6875 0.8786 0.4696 -0.0865 -0.906127 0.382683 -0.18024 0.53125 0.625 0.8786 0.4696 -0.0865 -0.831469 0.55557 0 0.5 0.6875 0.8786 0.4696 -0.0865 -0.923879 0.382683 -0 0.5 0.625 0.8786 0.4696 -0.0865 -0.37533 -0.92388 -0.074658 0.53125 0.125 0.4709 -0.881 -0.0464 -0.544895 -0.83147 -0.108386 0.53125 0.1875 0.4709 -0.881 -0.0464 -0.55557 -0.83147 0 0.5 0.1875 0.4709 -0.881 -0.0464 -0.37533 -0.92388 -0.074658 0.53125 0.125 0.4709 -0.881 -0.0464 -0.55557 -0.83147 0 0.5 0.1875 0.4709 -0.881 -0.0464 -0.382683 -0.92388 0 0.5 0.125 0.4709 -0.881 -0.0464 -0.96194 0.19509 -0.191342 0.53125 0.5625 0.9527 0.289 -0.0938 -0.906127 0.382683 -0.18024 0.53125 0.625 0.9527 0.289 -0.0938 -0.923879 0.382683 -0 0.5 0.625 0.9527 0.289 -0.0938 -0.96194 0.19509 -0.191342 0.53125 0.5625 0.9527 0.289 -0.0938 -0.923879 0.382683 -0 0.5 0.625 0.9527 0.289 -0.0938 -0.980785 0.19509 0 0.5 0.5625 0.9527 0.289 -0.0938 -0.191342 -0.980785 -0.03806 0.53125 0.0625 0.2902 -0.9565 -0.0286 -0.37533 -0.92388 -0.074658 0.53125 0.125 0.2902 -0.9565 -0.0286 -0.382683 -0.92388 0 0.5 0.125 0.2902 -0.9565 -0.0286 -0.191342 -0.980785 -0.03806 0.53125 0.0625 0.2902 -0.9565 -0.0286 -0.382683 -0.92388 0 0.5 0.125 0.2902 -0.9565 -0.0286 -0.19509 -0.980785 0 0.5 0.0625 0.2902 -0.9565 -0.0286 -0.980785 0 -0.19509 0.53125 0.5 0.9904 0.0975 -0.0975 -0.96194 0.19509 -0.191342 0.53125 0.5625 0.9904 0.0975 -0.0975 -0.980785 0.19509 0 0.5 0.5625 0.9904 0.0975 -0.0975 -0.980785 0 -0.19509 0.53125 0.5 0.9904 0.0975 -0.0975 -0.980785 0.19509 0 0.5 0.5625 0.9904 0.0975 -0.0975 -1 0 0 0.5 0.5 0.9904 0.0975 -0.0975 -0.191342 0.980785 -0.03806 0.53125 0.9375 0.098 0.9951 -0.0097 -0 1 0 0.515625 1 0.098 0.9951 -0.0097 -0.19509 0.980785 0 0.5 0.9375 0.098 0.9951 -0.0097 -0 -1 0 0.515625 0 0.098 -0.9951 -0.0097 -0.191342 -0.980785 -0.03806 0.53125 0.0625 0.098 -0.9951 -0.0097 -0.19509 -0.980785 0 0.5 0.0625 0.098 -0.9951 -0.0097 +0.906127 -0.19509 -0.37533 0.5625 0.4375 0.9524 -0.0975 -0.2889 +0.923879 0 -0.382683 0.5625 0.5 0.9524 -0.0975 -0.2889 +0.980785 0 -0.19509 0.53125 0.5 0.9524 -0.0975 -0.2889 +0.906127 -0.19509 -0.37533 0.5625 0.4375 0.9524 -0.0975 -0.2889 +0.980785 0 -0.19509 0.53125 0.5 0.9524 -0.0975 -0.2889 +0.96194 -0.19509 -0.191342 0.53125 0.4375 0.9524 -0.0975 -0.2889 +0.353553 0.92388 -0.146447 0.5625 0.875 0.279 0.9565 -0.0846 +0.18024 0.980785 -0.074658 0.5625 0.9375 0.279 0.9565 -0.0846 +0.191342 0.980785 -0.03806 0.53125 0.9375 0.279 0.9565 -0.0846 +0.353553 0.92388 -0.146447 0.5625 0.875 0.279 0.9565 -0.0846 +0.191342 0.980785 -0.03806 0.53125 0.9375 0.279 0.9565 -0.0846 +0.37533 0.92388 -0.074658 0.53125 0.875 0.279 0.9565 -0.0846 +0.853553 -0.382683 -0.353553 0.5625 0.375 0.9161 -0.289 -0.2779 +0.906127 -0.19509 -0.37533 0.5625 0.4375 0.9161 -0.289 -0.2779 +0.96194 -0.19509 -0.191342 0.53125 0.4375 0.9161 -0.289 -0.2779 +0.853553 -0.382683 -0.353553 0.5625 0.375 0.9161 -0.289 -0.2779 +0.96194 -0.19509 -0.191342 0.53125 0.4375 0.9161 -0.289 -0.2779 +0.906127 -0.382683 -0.18024 0.53125 0.375 0.9161 -0.289 -0.2779 +0.51328 0.83147 -0.212607 0.5625 0.8125 0.4528 0.881 -0.1374 +0.353553 0.92388 -0.146447 0.5625 0.875 0.4528 0.881 -0.1374 +0.37533 0.92388 -0.074658 0.53125 0.875 0.4528 0.881 -0.1374 +0.51328 0.83147 -0.212607 0.5625 0.8125 0.4528 0.881 -0.1374 +0.37533 0.92388 -0.074658 0.53125 0.875 0.4528 0.881 -0.1374 +0.544895 0.83147 -0.108386 0.53125 0.8125 0.4528 0.881 -0.1374 +0.768178 -0.55557 -0.31819 0.5625 0.3125 0.8448 -0.4696 -0.2563 +0.853553 -0.382683 -0.353553 0.5625 0.375 0.8448 -0.4696 -0.2563 +0.906127 -0.382683 -0.18024 0.53125 0.375 0.8448 -0.4696 -0.2563 +0.768178 -0.55557 -0.31819 0.5625 0.3125 0.8448 -0.4696 -0.2563 +0.906127 -0.382683 -0.18024 0.53125 0.375 0.8448 -0.4696 -0.2563 +0.815493 -0.55557 -0.162212 0.53125 0.3125 0.8448 -0.4696 -0.2563 +0.653281 0.707107 -0.270598 0.5625 0.75 0.6088 0.7715 -0.1847 +0.51328 0.83147 -0.212607 0.5625 0.8125 0.6088 0.7715 -0.1847 +0.544895 0.83147 -0.108386 0.53125 0.8125 0.6088 0.7715 -0.1847 +0.653281 0.707107 -0.270598 0.5625 0.75 0.6088 0.7715 -0.1847 +0.544895 0.83147 -0.108386 0.53125 0.8125 0.6088 0.7715 -0.1847 +0.69352 0.707107 -0.13795 0.53125 0.75 0.6088 0.7715 -0.1847 +0.653281 -0.707107 -0.270598 0.5625 0.25 0.7412 -0.6326 -0.2248 +0.768178 -0.55557 -0.31819 0.5625 0.3125 0.7412 -0.6326 -0.2248 +0.815493 -0.55557 -0.162212 0.53125 0.3125 0.7412 -0.6326 -0.2248 +0.653281 -0.707107 -0.270598 0.5625 0.25 0.7412 -0.6326 -0.2248 +0.815493 -0.55557 -0.162212 0.53125 0.3125 0.7412 -0.6326 -0.2248 +0.69352 -0.707107 -0.13795 0.53125 0.25 0.7412 -0.6326 -0.2248 0.96194 -0.19509 -0.191342 0.53125 0.4375 0.9904 -0.0975 -0.0975 0.980785 0 -0.19509 0.53125 0.5 0.9904 -0.0975 -0.0975 1 0 0 0.5 0.5 0.9904 -0.0975 -0.0975 @@ -722,42 +680,48 @@ Data: 0.815493 0.55557 -0.162212 0.53125 0.6875 0.7708 0.6326 -0.0759 0.707107 0.707107 -0 0.5 0.75 0.7708 0.6326 -0.0759 0.831469 0.55557 0 0.5 0.6875 0.7708 0.6326 -0.0759 -0.923879 -0.382683 -0 0.5 0.375 0.9527 -0.289 0.0938 -0.980785 -0.19509 0 0.5 0.4375 0.9527 -0.289 0.0938 -0.96194 -0.19509 0.191342 0.46875 0.4375 0.9527 -0.289 0.0938 -0.923879 -0.382683 -0 0.5 0.375 0.9527 -0.289 0.0938 -0.96194 -0.19509 0.191342 0.46875 0.4375 0.9527 -0.289 0.0938 -0.906127 -0.382683 0.18024 0.46875 0.375 0.9527 -0.289 0.0938 -0.55557 0.83147 0 0.5 0.8125 0.4709 0.881 0.0464 -0.382683 0.92388 0 0.5 0.875 0.4709 0.881 0.0464 -0.37533 0.92388 0.074658 0.46875 0.875 0.4709 0.881 0.0464 -0.55557 0.83147 0 0.5 0.8125 0.4709 0.881 0.0464 -0.37533 0.92388 0.074658 0.46875 0.875 0.4709 0.881 0.0464 -0.544895 0.83147 0.108386 0.46875 0.8125 0.4709 0.881 0.0464 -0.831469 -0.55557 0 0.5 0.3125 0.8786 -0.4696 0.0865 -0.923879 -0.382683 -0 0.5 0.375 0.8786 -0.4696 0.0865 -0.906127 -0.382683 0.18024 0.46875 0.375 0.8786 -0.4696 0.0865 -0.831469 -0.55557 0 0.5 0.3125 0.8786 -0.4696 0.0865 -0.906127 -0.382683 0.18024 0.46875 0.375 0.8786 -0.4696 0.0865 -0.815493 -0.55557 0.162212 0.46875 0.3125 0.8786 -0.4696 0.0865 -0.707107 0.707107 -0 0.5 0.75 0.6332 0.7715 0.0624 -0.55557 0.83147 0 0.5 0.8125 0.6332 0.7715 0.0624 -0.544895 0.83147 0.108386 0.46875 0.8125 0.6332 0.7715 0.0624 -0.707107 0.707107 -0 0.5 0.75 0.6332 0.7715 0.0624 -0.544895 0.83147 0.108386 0.46875 0.8125 0.6332 0.7715 0.0624 -0.69352 0.707107 0.13795 0.46875 0.75 0.6332 0.7715 0.0624 -0.707107 -0.707107 -0 0.5 0.25 0.7708 -0.6326 0.0759 -0.831469 -0.55557 0 0.5 0.3125 0.7708 -0.6326 0.0759 -0.815493 -0.55557 0.162212 0.46875 0.3125 0.7708 -0.6326 0.0759 -0.707107 -0.707107 -0 0.5 0.25 0.7708 -0.6326 0.0759 -0.815493 -0.55557 0.162212 0.46875 0.3125 0.7708 -0.6326 0.0759 -0.69352 -0.707107 0.13795 0.46875 0.25 0.7708 -0.6326 0.0759 -0.831469 0.55557 0 0.5 0.6875 0.7708 0.6326 0.0759 -0.707107 0.707107 -0 0.5 0.75 0.7708 0.6326 0.0759 -0.69352 0.707107 0.13795 0.46875 0.75 0.7708 0.6326 0.0759 -0.831469 0.55557 0 0.5 0.6875 0.7708 0.6326 0.0759 -0.69352 0.707107 0.13795 0.46875 0.75 0.7708 0.6326 0.0759 -0.815493 0.55557 0.162212 0.46875 0.6875 0.7708 0.6326 0.0759 +0.544895 -0.83147 -0.108386 0.53125 0.1875 0.6332 -0.7715 -0.0624 +0.69352 -0.707107 -0.13795 0.53125 0.25 0.6332 -0.7715 -0.0624 +0.707107 -0.707107 -0 0.5 0.25 0.6332 -0.7715 -0.0624 +0.544895 -0.83147 -0.108386 0.53125 0.1875 0.6332 -0.7715 -0.0624 +0.707107 -0.707107 -0 0.5 0.25 0.6332 -0.7715 -0.0624 +0.55557 -0.83147 0 0.5 0.1875 0.6332 -0.7715 -0.0624 +0.906127 0.382683 -0.18024 0.53125 0.625 0.8786 0.4696 -0.0865 +0.815493 0.55557 -0.162212 0.53125 0.6875 0.8786 0.4696 -0.0865 +0.831469 0.55557 0 0.5 0.6875 0.8786 0.4696 -0.0865 +0.906127 0.382683 -0.18024 0.53125 0.625 0.8786 0.4696 -0.0865 +0.831469 0.55557 0 0.5 0.6875 0.8786 0.4696 -0.0865 +0.923879 0.382683 -0 0.5 0.625 0.8786 0.4696 -0.0865 +0.37533 -0.92388 -0.074658 0.53125 0.125 0.4709 -0.881 -0.0464 +0.544895 -0.83147 -0.108386 0.53125 0.1875 0.4709 -0.881 -0.0464 +0.55557 -0.83147 0 0.5 0.1875 0.4709 -0.881 -0.0464 +0.37533 -0.92388 -0.074658 0.53125 0.125 0.4709 -0.881 -0.0464 +0.55557 -0.83147 0 0.5 0.1875 0.4709 -0.881 -0.0464 +0.382683 -0.92388 0 0.5 0.125 0.4709 -0.881 -0.0464 +0.96194 0.19509 -0.191342 0.53125 0.5625 0.9527 0.289 -0.0938 +0.906127 0.382683 -0.18024 0.53125 0.625 0.9527 0.289 -0.0938 +0.923879 0.382683 -0 0.5 0.625 0.9527 0.289 -0.0938 +0.96194 0.19509 -0.191342 0.53125 0.5625 0.9527 0.289 -0.0938 +0.923879 0.382683 -0 0.5 0.625 0.9527 0.289 -0.0938 +0.980785 0.19509 0 0.5 0.5625 0.9527 0.289 -0.0938 +0.191342 -0.980785 -0.03806 0.53125 0.0625 0.2902 -0.9565 -0.0286 +0.37533 -0.92388 -0.074658 0.53125 0.125 0.2902 -0.9565 -0.0286 +0.382683 -0.92388 0 0.5 0.125 0.2902 -0.9565 -0.0286 +0.191342 -0.980785 -0.03806 0.53125 0.0625 0.2902 -0.9565 -0.0286 +0.382683 -0.92388 0 0.5 0.125 0.2902 -0.9565 -0.0286 +0.19509 -0.980785 0 0.5 0.0625 0.2902 -0.9565 -0.0286 +0.980785 0 -0.19509 0.53125 0.5 0.9904 0.0975 -0.0975 +0.96194 0.19509 -0.191342 0.53125 0.5625 0.9904 0.0975 -0.0975 +0.980785 0.19509 0 0.5 0.5625 0.9904 0.0975 -0.0975 +0.980785 0 -0.19509 0.53125 0.5 0.9904 0.0975 -0.0975 +0.980785 0.19509 0 0.5 0.5625 0.9904 0.0975 -0.0975 +1 0 0 0.5 0.5 0.9904 0.0975 -0.0975 +0.191342 0.980785 -0.03806 0.53125 0.9375 0.098 0.9951 -0.0097 +0 1 0 0.515625 1 0.098 0.9951 -0.0097 +0.19509 0.980785 0 0.5 0.9375 0.098 0.9951 -0.0097 +0 -1 0 0.515625 0 0.098 -0.9951 -0.0097 +0.191342 -0.980785 -0.03806 0.53125 0.0625 0.098 -0.9951 -0.0097 +0.19509 -0.980785 0 0.5 0.0625 0.098 -0.9951 -0.0097 0.55557 -0.83147 0 0.5 0.1875 0.6332 -0.7715 0.0624 0.707107 -0.707107 -0 0.5 0.25 0.6332 -0.7715 0.0624 0.69352 -0.707107 0.13795 0.46875 0.25 0.6332 -0.7715 0.0624 @@ -812,48 +776,42 @@ Data: 0.382683 0.92388 0 0.5 0.875 0.2902 0.9565 0.0286 0.191342 0.980785 0.03806 0.46875 0.9375 0.2902 0.9565 0.0286 0.37533 0.92388 0.074658 0.46875 0.875 0.2902 0.9565 0.0286 -0.37533 -0.92388 0.074658 0.46875 0.125 0.4528 -0.881 0.1374 -0.544895 -0.83147 0.108386 0.46875 0.1875 0.4528 -0.881 0.1374 -0.51328 -0.83147 0.212608 0.4375 0.1875 0.4528 -0.881 0.1374 -0.37533 -0.92388 0.074658 0.46875 0.125 0.4528 -0.881 0.1374 -0.51328 -0.83147 0.212608 0.4375 0.1875 0.4528 -0.881 0.1374 -0.353553 -0.92388 0.146447 0.4375 0.125 0.4528 -0.881 0.1374 -0.96194 0.19509 0.191342 0.46875 0.5625 0.9161 0.289 0.2779 -0.906127 0.382683 0.18024 0.46875 0.625 0.9161 0.289 0.2779 -0.853553 0.382683 0.353553 0.4375 0.625 0.9161 0.289 0.2779 -0.96194 0.19509 0.191342 0.46875 0.5625 0.9161 0.289 0.2779 -0.853553 0.382683 0.353553 0.4375 0.625 0.9161 0.289 0.2779 -0.906127 0.19509 0.37533 0.4375 0.5625 0.9161 0.289 0.2779 -0.191342 -0.980785 0.03806 0.46875 0.0625 0.279 -0.9565 0.0846 -0.37533 -0.92388 0.074658 0.46875 0.125 0.279 -0.9565 0.0846 -0.353553 -0.92388 0.146447 0.4375 0.125 0.279 -0.9565 0.0846 -0.191342 -0.980785 0.03806 0.46875 0.0625 0.279 -0.9565 0.0846 -0.353553 -0.92388 0.146447 0.4375 0.125 0.279 -0.9565 0.0846 -0.18024 -0.980785 0.074658 0.4375 0.0625 0.279 -0.9565 0.0846 -0.980785 0 0.19509 0.46875 0.5 0.9524 0.0975 0.2889 -0.96194 0.19509 0.191342 0.46875 0.5625 0.9524 0.0975 0.2889 -0.906127 0.19509 0.37533 0.4375 0.5625 0.9524 0.0975 0.2889 -0.980785 0 0.19509 0.46875 0.5 0.9524 0.0975 0.2889 -0.906127 0.19509 0.37533 0.4375 0.5625 0.9524 0.0975 0.2889 -0.923879 0 0.382683 0.4375 0.5 0.9524 0.0975 0.2889 -0.191342 0.980785 0.03806 0.46875 0.9375 0.0942 0.9951 0.0286 -0 1 0 0.453125 1 0.0942 0.9951 0.0286 -0.18024 0.980785 0.074658 0.4375 0.9375 0.0942 0.9951 0.0286 -0 -1 0 0.453125 0 0.0942 -0.9951 0.0286 -0.191342 -0.980785 0.03806 0.46875 0.0625 0.0942 -0.9951 0.0286 -0.18024 -0.980785 0.074658 0.4375 0.0625 0.0942 -0.9951 0.0286 -0.96194 -0.19509 0.191342 0.46875 0.4375 0.9524 -0.0975 0.2889 -0.980785 0 0.19509 0.46875 0.5 0.9524 -0.0975 0.2889 -0.923879 0 0.382683 0.4375 0.5 0.9524 -0.0975 0.2889 -0.96194 -0.19509 0.191342 0.46875 0.4375 0.9524 -0.0975 0.2889 -0.923879 0 0.382683 0.4375 0.5 0.9524 -0.0975 0.2889 -0.906127 -0.19509 0.37533 0.4375 0.4375 0.9524 -0.0975 0.2889 -0.37533 0.92388 0.074658 0.46875 0.875 0.279 0.9565 0.0846 -0.191342 0.980785 0.03806 0.46875 0.9375 0.279 0.9565 0.0846 -0.18024 0.980785 0.074658 0.4375 0.9375 0.279 0.9565 0.0846 -0.37533 0.92388 0.074658 0.46875 0.875 0.279 0.9565 0.0846 -0.18024 0.980785 0.074658 0.4375 0.9375 0.279 0.9565 0.0846 -0.353553 0.92388 0.146447 0.4375 0.875 0.279 0.9565 0.0846 +0.923879 -0.382683 -0 0.5 0.375 0.9527 -0.289 0.0938 +0.980785 -0.19509 0 0.5 0.4375 0.9527 -0.289 0.0938 +0.96194 -0.19509 0.191342 0.46875 0.4375 0.9527 -0.289 0.0938 +0.923879 -0.382683 -0 0.5 0.375 0.9527 -0.289 0.0938 +0.96194 -0.19509 0.191342 0.46875 0.4375 0.9527 -0.289 0.0938 +0.906127 -0.382683 0.18024 0.46875 0.375 0.9527 -0.289 0.0938 +0.55557 0.83147 0 0.5 0.8125 0.4709 0.881 0.0464 +0.382683 0.92388 0 0.5 0.875 0.4709 0.881 0.0464 +0.37533 0.92388 0.074658 0.46875 0.875 0.4709 0.881 0.0464 +0.55557 0.83147 0 0.5 0.8125 0.4709 0.881 0.0464 +0.37533 0.92388 0.074658 0.46875 0.875 0.4709 0.881 0.0464 +0.544895 0.83147 0.108386 0.46875 0.8125 0.4709 0.881 0.0464 +0.831469 -0.55557 0 0.5 0.3125 0.8786 -0.4696 0.0865 +0.923879 -0.382683 -0 0.5 0.375 0.8786 -0.4696 0.0865 +0.906127 -0.382683 0.18024 0.46875 0.375 0.8786 -0.4696 0.0865 +0.831469 -0.55557 0 0.5 0.3125 0.8786 -0.4696 0.0865 +0.906127 -0.382683 0.18024 0.46875 0.375 0.8786 -0.4696 0.0865 +0.815493 -0.55557 0.162212 0.46875 0.3125 0.8786 -0.4696 0.0865 +0.707107 0.707107 -0 0.5 0.75 0.6332 0.7715 0.0624 +0.55557 0.83147 0 0.5 0.8125 0.6332 0.7715 0.0624 +0.544895 0.83147 0.108386 0.46875 0.8125 0.6332 0.7715 0.0624 +0.707107 0.707107 -0 0.5 0.75 0.6332 0.7715 0.0624 +0.544895 0.83147 0.108386 0.46875 0.8125 0.6332 0.7715 0.0624 +0.69352 0.707107 0.13795 0.46875 0.75 0.6332 0.7715 0.0624 +0.707107 -0.707107 -0 0.5 0.25 0.7708 -0.6326 0.0759 +0.831469 -0.55557 0 0.5 0.3125 0.7708 -0.6326 0.0759 +0.815493 -0.55557 0.162212 0.46875 0.3125 0.7708 -0.6326 0.0759 +0.707107 -0.707107 -0 0.5 0.25 0.7708 -0.6326 0.0759 +0.815493 -0.55557 0.162212 0.46875 0.3125 0.7708 -0.6326 0.0759 +0.69352 -0.707107 0.13795 0.46875 0.25 0.7708 -0.6326 0.0759 +0.831469 0.55557 0 0.5 0.6875 0.7708 0.6326 0.0759 +0.707107 0.707107 -0 0.5 0.75 0.7708 0.6326 0.0759 +0.69352 0.707107 0.13795 0.46875 0.75 0.7708 0.6326 0.0759 +0.831469 0.55557 0 0.5 0.6875 0.7708 0.6326 0.0759 +0.69352 0.707107 0.13795 0.46875 0.75 0.7708 0.6326 0.0759 +0.815493 0.55557 0.162212 0.46875 0.6875 0.7708 0.6326 0.0759 0.906127 -0.382683 0.18024 0.46875 0.375 0.9161 -0.289 0.2779 0.96194 -0.19509 0.191342 0.46875 0.4375 0.9161 -0.289 0.2779 0.906127 -0.19509 0.37533 0.4375 0.4375 0.9161 -0.289 0.2779 @@ -902,48 +860,48 @@ Data: 0.906127 0.382683 0.18024 0.46875 0.625 0.8448 0.4696 0.2563 0.768178 0.55557 0.31819 0.4375 0.6875 0.8448 0.4696 0.2563 0.853553 0.382683 0.353553 0.4375 0.625 0.8448 0.4696 0.2563 -0.51328 0.83147 0.212608 0.4375 0.8125 0.4173 0.881 0.223 -0.353553 0.92388 0.146447 0.4375 0.875 0.4173 0.881 0.223 -0.31819 0.92388 0.212608 0.40625 0.875 0.4173 0.881 0.223 -0.51328 0.83147 0.212608 0.4375 0.8125 0.4173 0.881 0.223 -0.31819 0.92388 0.212608 0.40625 0.875 0.4173 0.881 0.223 -0.46194 0.83147 0.308658 0.40625 0.8125 0.4173 0.881 0.223 -0.768178 -0.55557 0.31819 0.4375 0.3125 0.7786 -0.4696 0.4162 -0.853553 -0.382683 0.353553 0.4375 0.375 0.7786 -0.4696 0.4162 -0.768178 -0.382683 0.51328 0.40625 0.375 0.7786 -0.4696 0.4162 -0.768178 -0.55557 0.31819 0.4375 0.3125 0.7786 -0.4696 0.4162 -0.768178 -0.382683 0.51328 0.40625 0.375 0.7786 -0.4696 0.4162 -0.691341 -0.55557 0.46194 0.40625 0.3125 0.7786 -0.4696 0.4162 -0.653281 0.707107 0.270598 0.4375 0.75 0.5611 0.7715 0.2999 -0.51328 0.83147 0.212608 0.4375 0.8125 0.5611 0.7715 0.2999 -0.46194 0.83147 0.308658 0.40625 0.8125 0.5611 0.7715 0.2999 -0.653281 0.707107 0.270598 0.4375 0.75 0.5611 0.7715 0.2999 -0.46194 0.83147 0.308658 0.40625 0.8125 0.5611 0.7715 0.2999 -0.587938 0.707107 0.392847 0.40625 0.75 0.5611 0.7715 0.2999 -0.653281 -0.707107 0.270598 0.4375 0.25 0.6831 -0.6326 0.3651 -0.768178 -0.55557 0.31819 0.4375 0.3125 0.6831 -0.6326 0.3651 -0.691341 -0.55557 0.46194 0.40625 0.3125 0.6831 -0.6326 0.3651 -0.653281 -0.707107 0.270598 0.4375 0.25 0.6831 -0.6326 0.3651 -0.691341 -0.55557 0.46194 0.40625 0.3125 0.6831 -0.6326 0.3651 -0.587938 -0.707107 0.392847 0.40625 0.25 0.6831 -0.6326 0.3651 -0.768178 0.55557 0.31819 0.4375 0.6875 0.6831 0.6326 0.3651 -0.653281 0.707107 0.270598 0.4375 0.75 0.6831 0.6326 0.3651 -0.587938 0.707107 0.392847 0.40625 0.75 0.6831 0.6326 0.3651 -0.768178 0.55557 0.31819 0.4375 0.6875 0.6831 0.6326 0.3651 -0.587938 0.707107 0.392847 0.40625 0.75 0.6831 0.6326 0.3651 -0.691341 0.55557 0.46194 0.40625 0.6875 0.6831 0.6326 0.3651 -0.51328 -0.83147 0.212608 0.4375 0.1875 0.5611 -0.7715 0.2999 -0.653281 -0.707107 0.270598 0.4375 0.25 0.5611 -0.7715 0.2999 -0.587938 -0.707107 0.392847 0.40625 0.25 0.5611 -0.7715 0.2999 -0.51328 -0.83147 0.212608 0.4375 0.1875 0.5611 -0.7715 0.2999 -0.587938 -0.707107 0.392847 0.40625 0.25 0.5611 -0.7715 0.2999 -0.46194 -0.83147 0.308658 0.40625 0.1875 0.5611 -0.7715 0.2999 -0.853553 0.382683 0.353553 0.4375 0.625 0.7786 0.4696 0.4162 -0.768178 0.55557 0.31819 0.4375 0.6875 0.7786 0.4696 0.4162 -0.691341 0.55557 0.46194 0.40625 0.6875 0.7786 0.4696 0.4162 -0.853553 0.382683 0.353553 0.4375 0.625 0.7786 0.4696 0.4162 -0.691341 0.55557 0.46194 0.40625 0.6875 0.7786 0.4696 0.4162 -0.768178 0.382683 0.51328 0.40625 0.625 0.7786 0.4696 0.4162 +0.37533 -0.92388 0.074658 0.46875 0.125 0.4528 -0.881 0.1374 +0.544895 -0.83147 0.108386 0.46875 0.1875 0.4528 -0.881 0.1374 +0.51328 -0.83147 0.212608 0.4375 0.1875 0.4528 -0.881 0.1374 +0.37533 -0.92388 0.074658 0.46875 0.125 0.4528 -0.881 0.1374 +0.51328 -0.83147 0.212608 0.4375 0.1875 0.4528 -0.881 0.1374 +0.353553 -0.92388 0.146447 0.4375 0.125 0.4528 -0.881 0.1374 +0.96194 0.19509 0.191342 0.46875 0.5625 0.9161 0.289 0.2779 +0.906127 0.382683 0.18024 0.46875 0.625 0.9161 0.289 0.2779 +0.853553 0.382683 0.353553 0.4375 0.625 0.9161 0.289 0.2779 +0.96194 0.19509 0.191342 0.46875 0.5625 0.9161 0.289 0.2779 +0.853553 0.382683 0.353553 0.4375 0.625 0.9161 0.289 0.2779 +0.906127 0.19509 0.37533 0.4375 0.5625 0.9161 0.289 0.2779 +0.191342 -0.980785 0.03806 0.46875 0.0625 0.279 -0.9565 0.0846 +0.37533 -0.92388 0.074658 0.46875 0.125 0.279 -0.9565 0.0846 +0.353553 -0.92388 0.146447 0.4375 0.125 0.279 -0.9565 0.0846 +0.191342 -0.980785 0.03806 0.46875 0.0625 0.279 -0.9565 0.0846 +0.353553 -0.92388 0.146447 0.4375 0.125 0.279 -0.9565 0.0846 +0.18024 -0.980785 0.074658 0.4375 0.0625 0.279 -0.9565 0.0846 +0.980785 0 0.19509 0.46875 0.5 0.9524 0.0975 0.2889 +0.96194 0.19509 0.191342 0.46875 0.5625 0.9524 0.0975 0.2889 +0.906127 0.19509 0.37533 0.4375 0.5625 0.9524 0.0975 0.2889 +0.980785 0 0.19509 0.46875 0.5 0.9524 0.0975 0.2889 +0.906127 0.19509 0.37533 0.4375 0.5625 0.9524 0.0975 0.2889 +0.923879 0 0.382683 0.4375 0.5 0.9524 0.0975 0.2889 +0.191342 0.980785 0.03806 0.46875 0.9375 0.0942 0.9951 0.0286 +0 1 0 0.453125 1 0.0942 0.9951 0.0286 +0.18024 0.980785 0.074658 0.4375 0.9375 0.0942 0.9951 0.0286 +0 -1 0 0.453125 0 0.0942 -0.9951 0.0286 +0.191342 -0.980785 0.03806 0.46875 0.0625 0.0942 -0.9951 0.0286 +0.18024 -0.980785 0.074658 0.4375 0.0625 0.0942 -0.9951 0.0286 +0.96194 -0.19509 0.191342 0.46875 0.4375 0.9524 -0.0975 0.2889 +0.980785 0 0.19509 0.46875 0.5 0.9524 -0.0975 0.2889 +0.923879 0 0.382683 0.4375 0.5 0.9524 -0.0975 0.2889 +0.96194 -0.19509 0.191342 0.46875 0.4375 0.9524 -0.0975 0.2889 +0.923879 0 0.382683 0.4375 0.5 0.9524 -0.0975 0.2889 +0.906127 -0.19509 0.37533 0.4375 0.4375 0.9524 -0.0975 0.2889 +0.37533 0.92388 0.074658 0.46875 0.875 0.279 0.9565 0.0846 +0.191342 0.980785 0.03806 0.46875 0.9375 0.279 0.9565 0.0846 +0.18024 0.980785 0.074658 0.4375 0.9375 0.279 0.9565 0.0846 +0.37533 0.92388 0.074658 0.46875 0.875 0.279 0.9565 0.0846 +0.18024 0.980785 0.074658 0.4375 0.9375 0.279 0.9565 0.0846 +0.353553 0.92388 0.146447 0.4375 0.875 0.279 0.9565 0.0846 0.353553 -0.92388 0.146447 0.4375 0.125 0.4173 -0.881 0.223 0.51328 -0.83147 0.212608 0.4375 0.1875 0.4173 -0.881 0.223 0.46194 -0.83147 0.308658 0.40625 0.1875 0.4173 -0.881 0.223 @@ -992,48 +950,48 @@ Data: 0.853553 -0.382683 0.353553 0.4375 0.375 0.8443 -0.289 0.4513 0.815493 -0.19509 0.544895 0.40625 0.4375 0.8443 -0.289 0.4513 0.768178 -0.382683 0.51328 0.40625 0.375 0.8443 -0.289 0.4513 -0.815493 0.19509 0.544895 0.40625 0.5625 0.74 0.289 0.6073 -0.768178 0.382683 0.51328 0.40625 0.625 0.74 0.289 0.6073 -0.653281 0.382683 0.653281 0.375 0.625 0.74 0.289 0.6073 -0.815493 0.19509 0.544895 0.40625 0.5625 0.74 0.289 0.6073 -0.653281 0.382683 0.653281 0.375 0.625 0.74 0.289 0.6073 -0.69352 0.19509 0.69352 0.375 0.5625 0.74 0.289 0.6073 -0.162212 -0.980785 0.108386 0.40625 0.0625 0.2254 -0.9565 0.185 -0.31819 -0.92388 0.212608 0.40625 0.125 0.2254 -0.9565 0.185 -0.270598 -0.92388 0.270598 0.375 0.125 0.2254 -0.9565 0.185 -0.162212 -0.980785 0.108386 0.40625 0.0625 0.2254 -0.9565 0.185 -0.270598 -0.92388 0.270598 0.375 0.125 0.2254 -0.9565 0.185 -0.13795 -0.980785 0.13795 0.375 0.0625 0.2254 -0.9565 0.185 -0.831469 0 0.55557 0.40625 0.5 0.7693 0.0975 0.6314 -0.815493 0.19509 0.544895 0.40625 0.5625 0.7693 0.0975 0.6314 -0.69352 0.19509 0.69352 0.375 0.5625 0.7693 0.0975 0.6314 -0.831469 0 0.55557 0.40625 0.5 0.7693 0.0975 0.6314 -0.69352 0.19509 0.69352 0.375 0.5625 0.7693 0.0975 0.6314 -0.707106 0 0.707107 0.375 0.5 0.7693 0.0975 0.6314 -0.162212 0.980785 0.108386 0.40625 0.9375 0.0761 0.9951 0.0625 -0 1 0 0.390625 1 0.0761 0.9951 0.0625 -0.13795 0.980785 0.13795 0.375 0.9375 0.0761 0.9951 0.0625 -0 -1 0 0.390625 0 0.0761 -0.9951 0.0625 -0.162212 -0.980785 0.108386 0.40625 0.0625 0.0761 -0.9951 0.0625 -0.13795 -0.980785 0.13795 0.375 0.0625 0.0761 -0.9951 0.0625 -0.815493 -0.19509 0.544895 0.40625 0.4375 0.7693 -0.0975 0.6314 -0.831469 0 0.55557 0.40625 0.5 0.7693 -0.0975 0.6314 -0.707106 0 0.707107 0.375 0.5 0.7693 -0.0975 0.6314 -0.815493 -0.19509 0.544895 0.40625 0.4375 0.7693 -0.0975 0.6314 -0.707106 0 0.707107 0.375 0.5 0.7693 -0.0975 0.6314 -0.69352 -0.19509 0.69352 0.375 0.4375 0.7693 -0.0975 0.6314 -0.31819 0.92388 0.212608 0.40625 0.875 0.2254 0.9565 0.185 -0.162212 0.980785 0.108386 0.40625 0.9375 0.2254 0.9565 0.185 -0.13795 0.980785 0.13795 0.375 0.9375 0.2254 0.9565 0.185 -0.31819 0.92388 0.212608 0.40625 0.875 0.2254 0.9565 0.185 -0.13795 0.980785 0.13795 0.375 0.9375 0.2254 0.9565 0.185 -0.270598 0.92388 0.270598 0.375 0.875 0.2254 0.9565 0.185 -0.768178 -0.382683 0.51328 0.40625 0.375 0.74 -0.289 0.6073 -0.815493 -0.19509 0.544895 0.40625 0.4375 0.74 -0.289 0.6073 -0.69352 -0.19509 0.69352 0.375 0.4375 0.74 -0.289 0.6073 -0.768178 -0.382683 0.51328 0.40625 0.375 0.74 -0.289 0.6073 -0.69352 -0.19509 0.69352 0.375 0.4375 0.74 -0.289 0.6073 -0.653281 -0.382683 0.653281 0.375 0.375 0.74 -0.289 0.6073 +0.51328 0.83147 0.212608 0.4375 0.8125 0.4173 0.881 0.223 +0.353553 0.92388 0.146447 0.4375 0.875 0.4173 0.881 0.223 +0.31819 0.92388 0.212608 0.40625 0.875 0.4173 0.881 0.223 +0.51328 0.83147 0.212608 0.4375 0.8125 0.4173 0.881 0.223 +0.31819 0.92388 0.212608 0.40625 0.875 0.4173 0.881 0.223 +0.46194 0.83147 0.308658 0.40625 0.8125 0.4173 0.881 0.223 +0.768178 -0.55557 0.31819 0.4375 0.3125 0.7786 -0.4696 0.4162 +0.853553 -0.382683 0.353553 0.4375 0.375 0.7786 -0.4696 0.4162 +0.768178 -0.382683 0.51328 0.40625 0.375 0.7786 -0.4696 0.4162 +0.768178 -0.55557 0.31819 0.4375 0.3125 0.7786 -0.4696 0.4162 +0.768178 -0.382683 0.51328 0.40625 0.375 0.7786 -0.4696 0.4162 +0.691341 -0.55557 0.46194 0.40625 0.3125 0.7786 -0.4696 0.4162 +0.653281 0.707107 0.270598 0.4375 0.75 0.5611 0.7715 0.2999 +0.51328 0.83147 0.212608 0.4375 0.8125 0.5611 0.7715 0.2999 +0.46194 0.83147 0.308658 0.40625 0.8125 0.5611 0.7715 0.2999 +0.653281 0.707107 0.270598 0.4375 0.75 0.5611 0.7715 0.2999 +0.46194 0.83147 0.308658 0.40625 0.8125 0.5611 0.7715 0.2999 +0.587938 0.707107 0.392847 0.40625 0.75 0.5611 0.7715 0.2999 +0.653281 -0.707107 0.270598 0.4375 0.25 0.6831 -0.6326 0.3651 +0.768178 -0.55557 0.31819 0.4375 0.3125 0.6831 -0.6326 0.3651 +0.691341 -0.55557 0.46194 0.40625 0.3125 0.6831 -0.6326 0.3651 +0.653281 -0.707107 0.270598 0.4375 0.25 0.6831 -0.6326 0.3651 +0.691341 -0.55557 0.46194 0.40625 0.3125 0.6831 -0.6326 0.3651 +0.587938 -0.707107 0.392847 0.40625 0.25 0.6831 -0.6326 0.3651 +0.768178 0.55557 0.31819 0.4375 0.6875 0.6831 0.6326 0.3651 +0.653281 0.707107 0.270598 0.4375 0.75 0.6831 0.6326 0.3651 +0.587938 0.707107 0.392847 0.40625 0.75 0.6831 0.6326 0.3651 +0.768178 0.55557 0.31819 0.4375 0.6875 0.6831 0.6326 0.3651 +0.587938 0.707107 0.392847 0.40625 0.75 0.6831 0.6326 0.3651 +0.691341 0.55557 0.46194 0.40625 0.6875 0.6831 0.6326 0.3651 +0.51328 -0.83147 0.212608 0.4375 0.1875 0.5611 -0.7715 0.2999 +0.653281 -0.707107 0.270598 0.4375 0.25 0.5611 -0.7715 0.2999 +0.587938 -0.707107 0.392847 0.40625 0.25 0.5611 -0.7715 0.2999 +0.51328 -0.83147 0.212608 0.4375 0.1875 0.5611 -0.7715 0.2999 +0.587938 -0.707107 0.392847 0.40625 0.25 0.5611 -0.7715 0.2999 +0.46194 -0.83147 0.308658 0.40625 0.1875 0.5611 -0.7715 0.2999 +0.853553 0.382683 0.353553 0.4375 0.625 0.7786 0.4696 0.4162 +0.768178 0.55557 0.31819 0.4375 0.6875 0.7786 0.4696 0.4162 +0.691341 0.55557 0.46194 0.40625 0.6875 0.7786 0.4696 0.4162 +0.853553 0.382683 0.353553 0.4375 0.625 0.7786 0.4696 0.4162 +0.691341 0.55557 0.46194 0.40625 0.6875 0.7786 0.4696 0.4162 +0.768178 0.382683 0.51328 0.40625 0.625 0.7786 0.4696 0.4162 0.46194 0.83147 0.308658 0.40625 0.8125 0.3658 0.881 0.3002 0.31819 0.92388 0.212608 0.40625 0.875 0.3658 0.881 0.3002 0.270598 0.92388 0.270598 0.375 0.875 0.3658 0.881 0.3002 @@ -1082,48 +1040,48 @@ Data: 0.31819 -0.92388 0.212608 0.40625 0.125 0.3658 -0.881 0.3002 0.392847 -0.83147 0.392847 0.375 0.1875 0.3658 -0.881 0.3002 0.270598 -0.92388 0.270598 0.375 0.125 0.3658 -0.881 0.3002 -0.587938 -0.55557 0.587938 0.375 0.3125 0.5601 -0.4696 0.6825 -0.653281 -0.382683 0.653281 0.375 0.375 0.5601 -0.4696 0.6825 -0.51328 -0.382683 0.768178 0.34375 0.375 0.5601 -0.4696 0.6825 -0.587938 -0.55557 0.587938 0.375 0.3125 0.5601 -0.4696 0.6825 -0.51328 -0.382683 0.768178 0.34375 0.375 0.5601 -0.4696 0.6825 -0.46194 -0.55557 0.691342 0.34375 0.3125 0.5601 -0.4696 0.6825 -0.5 0.707107 0.5 0.375 0.75 0.4036 0.7715 0.4918 -0.392847 0.83147 0.392847 0.375 0.8125 0.4036 0.7715 0.4918 -0.308658 0.83147 0.46194 0.34375 0.8125 0.4036 0.7715 0.4918 -0.5 0.707107 0.5 0.375 0.75 0.4036 0.7715 0.4918 -0.308658 0.83147 0.46194 0.34375 0.8125 0.4036 0.7715 0.4918 -0.392847 0.707107 0.587938 0.34375 0.75 0.4036 0.7715 0.4918 -0.5 -0.707107 0.5 0.375 0.25 0.4913 -0.6326 0.5987 -0.587938 -0.55557 0.587938 0.375 0.3125 0.4913 -0.6326 0.5987 -0.46194 -0.55557 0.691342 0.34375 0.3125 0.4913 -0.6326 0.5987 -0.5 -0.707107 0.5 0.375 0.25 0.4913 -0.6326 0.5987 -0.46194 -0.55557 0.691342 0.34375 0.3125 0.4913 -0.6326 0.5987 -0.392847 -0.707107 0.587938 0.34375 0.25 0.4913 -0.6326 0.5987 -0.587938 0.55557 0.587938 0.375 0.6875 0.4913 0.6326 0.5987 -0.5 0.707107 0.5 0.375 0.75 0.4913 0.6326 0.5987 -0.392847 0.707107 0.587938 0.34375 0.75 0.4913 0.6326 0.5987 -0.587938 0.55557 0.587938 0.375 0.6875 0.4913 0.6326 0.5987 -0.392847 0.707107 0.587938 0.34375 0.75 0.4913 0.6326 0.5987 -0.46194 0.55557 0.691342 0.34375 0.6875 0.4913 0.6326 0.5987 -0.392847 -0.83147 0.392847 0.375 0.1875 0.4036 -0.7715 0.4918 -0.5 -0.707107 0.5 0.375 0.25 0.4036 -0.7715 0.4918 -0.392847 -0.707107 0.587938 0.34375 0.25 0.4036 -0.7715 0.4918 -0.392847 -0.83147 0.392847 0.375 0.1875 0.4036 -0.7715 0.4918 -0.392847 -0.707107 0.587938 0.34375 0.25 0.4036 -0.7715 0.4918 -0.308658 -0.83147 0.46194 0.34375 0.1875 0.4036 -0.7715 0.4918 -0.653281 0.382683 0.653281 0.375 0.625 0.5601 0.4696 0.6825 -0.587938 0.55557 0.587938 0.375 0.6875 0.5601 0.4696 0.6825 -0.46194 0.55557 0.691342 0.34375 0.6875 0.5601 0.4696 0.6825 -0.653281 0.382683 0.653281 0.375 0.625 0.5601 0.4696 0.6825 -0.46194 0.55557 0.691342 0.34375 0.6875 0.5601 0.4696 0.6825 -0.51328 0.382683 0.768178 0.34375 0.625 0.5601 0.4696 0.6825 -0.270598 -0.92388 0.270598 0.375 0.125 0.3002 -0.881 0.3658 -0.392847 -0.83147 0.392847 0.375 0.1875 0.3002 -0.881 0.3658 -0.308658 -0.83147 0.46194 0.34375 0.1875 0.3002 -0.881 0.3658 -0.270598 -0.92388 0.270598 0.375 0.125 0.3002 -0.881 0.3658 -0.308658 -0.83147 0.46194 0.34375 0.1875 0.3002 -0.881 0.3658 -0.212607 -0.92388 0.31819 0.34375 0.125 0.3002 -0.881 0.3658 +0.815493 0.19509 0.544895 0.40625 0.5625 0.74 0.289 0.6073 +0.768178 0.382683 0.51328 0.40625 0.625 0.74 0.289 0.6073 +0.653281 0.382683 0.653281 0.375 0.625 0.74 0.289 0.6073 +0.815493 0.19509 0.544895 0.40625 0.5625 0.74 0.289 0.6073 +0.653281 0.382683 0.653281 0.375 0.625 0.74 0.289 0.6073 +0.69352 0.19509 0.69352 0.375 0.5625 0.74 0.289 0.6073 +0.162212 -0.980785 0.108386 0.40625 0.0625 0.2254 -0.9565 0.185 +0.31819 -0.92388 0.212608 0.40625 0.125 0.2254 -0.9565 0.185 +0.270598 -0.92388 0.270598 0.375 0.125 0.2254 -0.9565 0.185 +0.162212 -0.980785 0.108386 0.40625 0.0625 0.2254 -0.9565 0.185 +0.270598 -0.92388 0.270598 0.375 0.125 0.2254 -0.9565 0.185 +0.13795 -0.980785 0.13795 0.375 0.0625 0.2254 -0.9565 0.185 +0.831469 0 0.55557 0.40625 0.5 0.7693 0.0975 0.6314 +0.815493 0.19509 0.544895 0.40625 0.5625 0.7693 0.0975 0.6314 +0.69352 0.19509 0.69352 0.375 0.5625 0.7693 0.0975 0.6314 +0.831469 0 0.55557 0.40625 0.5 0.7693 0.0975 0.6314 +0.69352 0.19509 0.69352 0.375 0.5625 0.7693 0.0975 0.6314 +0.707106 0 0.707107 0.375 0.5 0.7693 0.0975 0.6314 +0.162212 0.980785 0.108386 0.40625 0.9375 0.0761 0.9951 0.0625 +0 1 0 0.390625 1 0.0761 0.9951 0.0625 +0.13795 0.980785 0.13795 0.375 0.9375 0.0761 0.9951 0.0625 +0 -1 0 0.390625 0 0.0761 -0.9951 0.0625 +0.162212 -0.980785 0.108386 0.40625 0.0625 0.0761 -0.9951 0.0625 +0.13795 -0.980785 0.13795 0.375 0.0625 0.0761 -0.9951 0.0625 +0.815493 -0.19509 0.544895 0.40625 0.4375 0.7693 -0.0975 0.6314 +0.831469 0 0.55557 0.40625 0.5 0.7693 -0.0975 0.6314 +0.707106 0 0.707107 0.375 0.5 0.7693 -0.0975 0.6314 +0.815493 -0.19509 0.544895 0.40625 0.4375 0.7693 -0.0975 0.6314 +0.707106 0 0.707107 0.375 0.5 0.7693 -0.0975 0.6314 +0.69352 -0.19509 0.69352 0.375 0.4375 0.7693 -0.0975 0.6314 +0.31819 0.92388 0.212608 0.40625 0.875 0.2254 0.9565 0.185 +0.162212 0.980785 0.108386 0.40625 0.9375 0.2254 0.9565 0.185 +0.13795 0.980785 0.13795 0.375 0.9375 0.2254 0.9565 0.185 +0.31819 0.92388 0.212608 0.40625 0.875 0.2254 0.9565 0.185 +0.13795 0.980785 0.13795 0.375 0.9375 0.2254 0.9565 0.185 +0.270598 0.92388 0.270598 0.375 0.875 0.2254 0.9565 0.185 +0.768178 -0.382683 0.51328 0.40625 0.375 0.74 -0.289 0.6073 +0.815493 -0.19509 0.544895 0.40625 0.4375 0.74 -0.289 0.6073 +0.69352 -0.19509 0.69352 0.375 0.4375 0.74 -0.289 0.6073 +0.768178 -0.382683 0.51328 0.40625 0.375 0.74 -0.289 0.6073 +0.69352 -0.19509 0.69352 0.375 0.4375 0.74 -0.289 0.6073 +0.653281 -0.382683 0.653281 0.375 0.375 0.74 -0.289 0.6073 0.69352 0.19509 0.69352 0.375 0.5625 0.6073 0.289 0.74 0.653281 0.382683 0.653281 0.375 0.625 0.6073 0.289 0.74 0.51328 0.382683 0.768178 0.34375 0.625 0.6073 0.289 0.74 @@ -1172,48 +1130,48 @@ Data: 0.392847 0.83147 0.392847 0.375 0.8125 0.3002 0.881 0.3658 0.212607 0.92388 0.31819 0.34375 0.875 0.3002 0.881 0.3658 0.308658 0.83147 0.46194 0.34375 0.8125 0.3002 0.881 0.3658 -0.108386 -0.980785 0.162212 0.34375 0.0625 0.1374 -0.9565 0.2571 -0.212607 -0.92388 0.31819 0.34375 0.125 0.1374 -0.9565 0.2571 -0.146447 -0.92388 0.353553 0.3125 0.125 0.1374 -0.9565 0.2571 -0.108386 -0.980785 0.162212 0.34375 0.0625 0.1374 -0.9565 0.2571 -0.146447 -0.92388 0.353553 0.3125 0.125 0.1374 -0.9565 0.2571 -0.074658 -0.980785 0.18024 0.3125 0.0625 0.1374 -0.9565 0.2571 -0.55557 0 0.831469 0.34375 0.5 0.4691 0.0975 0.8777 -0.544895 0.19509 0.815493 0.34375 0.5625 0.4691 0.0975 0.8777 -0.37533 0.19509 0.906127 0.3125 0.5625 0.4691 0.0975 0.8777 -0.55557 0 0.831469 0.34375 0.5 0.4691 0.0975 0.8777 -0.37533 0.19509 0.906127 0.3125 0.5625 0.4691 0.0975 0.8777 -0.382683 0 0.923879 0.3125 0.5 0.4691 0.0975 0.8777 -0.108386 0.980785 0.162212 0.34375 0.9375 0.0464 0.9951 0.0869 -0 1 0 0.328125 1 0.0464 0.9951 0.0869 -0.074658 0.980785 0.18024 0.3125 0.9375 0.0464 0.9951 0.0869 -0 -1 0 0.328125 0 0.0464 -0.9951 0.0869 -0.108386 -0.980785 0.162212 0.34375 0.0625 0.0464 -0.9951 0.0869 -0.074658 -0.980785 0.18024 0.3125 0.0625 0.0464 -0.9951 0.0869 -0.544895 -0.19509 0.815493 0.34375 0.4375 0.4691 -0.0975 0.8777 -0.55557 0 0.831469 0.34375 0.5 0.4691 -0.0975 0.8777 -0.382683 0 0.923879 0.3125 0.5 0.4691 -0.0975 0.8777 -0.544895 -0.19509 0.815493 0.34375 0.4375 0.4691 -0.0975 0.8777 -0.382683 0 0.923879 0.3125 0.5 0.4691 -0.0975 0.8777 -0.37533 -0.19509 0.906127 0.3125 0.4375 0.4691 -0.0975 0.8777 -0.212607 0.92388 0.31819 0.34375 0.875 0.1374 0.9565 0.2571 -0.108386 0.980785 0.162212 0.34375 0.9375 0.1374 0.9565 0.2571 -0.074658 0.980785 0.18024 0.3125 0.9375 0.1374 0.9565 0.2571 -0.212607 0.92388 0.31819 0.34375 0.875 0.1374 0.9565 0.2571 -0.074658 0.980785 0.18024 0.3125 0.9375 0.1374 0.9565 0.2571 -0.146447 0.92388 0.353553 0.3125 0.875 0.1374 0.9565 0.2571 -0.51328 -0.382683 0.768178 0.34375 0.375 0.4513 -0.289 0.8443 -0.544895 -0.19509 0.815493 0.34375 0.4375 0.4513 -0.289 0.8443 -0.37533 -0.19509 0.906127 0.3125 0.4375 0.4513 -0.289 0.8443 -0.51328 -0.382683 0.768178 0.34375 0.375 0.4513 -0.289 0.8443 -0.37533 -0.19509 0.906127 0.3125 0.4375 0.4513 -0.289 0.8443 -0.353553 -0.382683 0.853553 0.3125 0.375 0.4513 -0.289 0.8443 -0.308658 0.83147 0.46194 0.34375 0.8125 0.223 0.881 0.4173 -0.212607 0.92388 0.31819 0.34375 0.875 0.223 0.881 0.4173 -0.146447 0.92388 0.353553 0.3125 0.875 0.223 0.881 0.4173 -0.308658 0.83147 0.46194 0.34375 0.8125 0.223 0.881 0.4173 -0.146447 0.92388 0.353553 0.3125 0.875 0.223 0.881 0.4173 -0.212607 0.83147 0.51328 0.3125 0.8125 0.223 0.881 0.4173 +0.587938 -0.55557 0.587938 0.375 0.3125 0.5601 -0.4696 0.6825 +0.653281 -0.382683 0.653281 0.375 0.375 0.5601 -0.4696 0.6825 +0.51328 -0.382683 0.768178 0.34375 0.375 0.5601 -0.4696 0.6825 +0.587938 -0.55557 0.587938 0.375 0.3125 0.5601 -0.4696 0.6825 +0.51328 -0.382683 0.768178 0.34375 0.375 0.5601 -0.4696 0.6825 +0.46194 -0.55557 0.691342 0.34375 0.3125 0.5601 -0.4696 0.6825 +0.5 0.707107 0.5 0.375 0.75 0.4036 0.7715 0.4918 +0.392847 0.83147 0.392847 0.375 0.8125 0.4036 0.7715 0.4918 +0.308658 0.83147 0.46194 0.34375 0.8125 0.4036 0.7715 0.4918 +0.5 0.707107 0.5 0.375 0.75 0.4036 0.7715 0.4918 +0.308658 0.83147 0.46194 0.34375 0.8125 0.4036 0.7715 0.4918 +0.392847 0.707107 0.587938 0.34375 0.75 0.4036 0.7715 0.4918 +0.5 -0.707107 0.5 0.375 0.25 0.4913 -0.6326 0.5987 +0.587938 -0.55557 0.587938 0.375 0.3125 0.4913 -0.6326 0.5987 +0.46194 -0.55557 0.691342 0.34375 0.3125 0.4913 -0.6326 0.5987 +0.5 -0.707107 0.5 0.375 0.25 0.4913 -0.6326 0.5987 +0.46194 -0.55557 0.691342 0.34375 0.3125 0.4913 -0.6326 0.5987 +0.392847 -0.707107 0.587938 0.34375 0.25 0.4913 -0.6326 0.5987 +0.587938 0.55557 0.587938 0.375 0.6875 0.4913 0.6326 0.5987 +0.5 0.707107 0.5 0.375 0.75 0.4913 0.6326 0.5987 +0.392847 0.707107 0.587938 0.34375 0.75 0.4913 0.6326 0.5987 +0.587938 0.55557 0.587938 0.375 0.6875 0.4913 0.6326 0.5987 +0.392847 0.707107 0.587938 0.34375 0.75 0.4913 0.6326 0.5987 +0.46194 0.55557 0.691342 0.34375 0.6875 0.4913 0.6326 0.5987 +0.392847 -0.83147 0.392847 0.375 0.1875 0.4036 -0.7715 0.4918 +0.5 -0.707107 0.5 0.375 0.25 0.4036 -0.7715 0.4918 +0.392847 -0.707107 0.587938 0.34375 0.25 0.4036 -0.7715 0.4918 +0.392847 -0.83147 0.392847 0.375 0.1875 0.4036 -0.7715 0.4918 +0.392847 -0.707107 0.587938 0.34375 0.25 0.4036 -0.7715 0.4918 +0.308658 -0.83147 0.46194 0.34375 0.1875 0.4036 -0.7715 0.4918 +0.653281 0.382683 0.653281 0.375 0.625 0.5601 0.4696 0.6825 +0.587938 0.55557 0.587938 0.375 0.6875 0.5601 0.4696 0.6825 +0.46194 0.55557 0.691342 0.34375 0.6875 0.5601 0.4696 0.6825 +0.653281 0.382683 0.653281 0.375 0.625 0.5601 0.4696 0.6825 +0.46194 0.55557 0.691342 0.34375 0.6875 0.5601 0.4696 0.6825 +0.51328 0.382683 0.768178 0.34375 0.625 0.5601 0.4696 0.6825 +0.270598 -0.92388 0.270598 0.375 0.125 0.3002 -0.881 0.3658 +0.392847 -0.83147 0.392847 0.375 0.1875 0.3002 -0.881 0.3658 +0.308658 -0.83147 0.46194 0.34375 0.1875 0.3002 -0.881 0.3658 +0.270598 -0.92388 0.270598 0.375 0.125 0.3002 -0.881 0.3658 +0.308658 -0.83147 0.46194 0.34375 0.1875 0.3002 -0.881 0.3658 +0.212607 -0.92388 0.31819 0.34375 0.125 0.3002 -0.881 0.3658 0.46194 -0.55557 0.691342 0.34375 0.3125 0.4162 -0.4696 0.7786 0.51328 -0.382683 0.768178 0.34375 0.375 0.4162 -0.4696 0.7786 0.353553 -0.382683 0.853553 0.3125 0.375 0.4162 -0.4696 0.7786 @@ -1262,48 +1220,48 @@ Data: 0.544895 0.19509 0.815493 0.34375 0.5625 0.4513 0.289 0.8443 0.353553 0.382683 0.853553 0.3125 0.625 0.4513 0.289 0.8443 0.37533 0.19509 0.906127 0.3125 0.5625 0.4513 0.289 0.8443 -0.270598 0.707107 0.653281 0.3125 0.75 0.1847 0.7715 0.6088 -0.212607 0.83147 0.51328 0.3125 0.8125 0.1847 0.7715 0.6088 -0.108386 0.83147 0.544895 0.28125 0.8125 0.1847 0.7715 0.6088 -0.270598 0.707107 0.653281 0.3125 0.75 0.1847 0.7715 0.6088 -0.108386 0.83147 0.544895 0.28125 0.8125 0.1847 0.7715 0.6088 -0.13795 0.707107 0.69352 0.28125 0.75 0.1847 0.7715 0.6088 -0.270598 -0.707107 0.653281 0.3125 0.25 0.2248 -0.6326 0.7412 -0.318189 -0.55557 0.768178 0.3125 0.3125 0.2248 -0.6326 0.7412 -0.162212 -0.55557 0.815493 0.28125 0.3125 0.2248 -0.6326 0.7412 -0.270598 -0.707107 0.653281 0.3125 0.25 0.2248 -0.6326 0.7412 -0.162212 -0.55557 0.815493 0.28125 0.3125 0.2248 -0.6326 0.7412 -0.13795 -0.707107 0.69352 0.28125 0.25 0.2248 -0.6326 0.7412 -0.318189 0.55557 0.768178 0.3125 0.6875 0.2248 0.6326 0.7412 -0.270598 0.707107 0.653281 0.3125 0.75 0.2248 0.6326 0.7412 -0.13795 0.707107 0.69352 0.28125 0.75 0.2248 0.6326 0.7412 -0.318189 0.55557 0.768178 0.3125 0.6875 0.2248 0.6326 0.7412 -0.13795 0.707107 0.69352 0.28125 0.75 0.2248 0.6326 0.7412 -0.162212 0.55557 0.815493 0.28125 0.6875 0.2248 0.6326 0.7412 -0.212607 -0.83147 0.51328 0.3125 0.1875 0.1847 -0.7715 0.6088 -0.270598 -0.707107 0.653281 0.3125 0.25 0.1847 -0.7715 0.6088 -0.13795 -0.707107 0.69352 0.28125 0.25 0.1847 -0.7715 0.6088 -0.212607 -0.83147 0.51328 0.3125 0.1875 0.1847 -0.7715 0.6088 -0.13795 -0.707107 0.69352 0.28125 0.25 0.1847 -0.7715 0.6088 -0.108386 -0.83147 0.544895 0.28125 0.1875 0.1847 -0.7715 0.6088 -0.353553 0.382683 0.853553 0.3125 0.625 0.2563 0.4696 0.8448 -0.318189 0.55557 0.768178 0.3125 0.6875 0.2563 0.4696 0.8448 -0.162212 0.55557 0.815493 0.28125 0.6875 0.2563 0.4696 0.8448 -0.353553 0.382683 0.853553 0.3125 0.625 0.2563 0.4696 0.8448 -0.162212 0.55557 0.815493 0.28125 0.6875 0.2563 0.4696 0.8448 -0.18024 0.382683 0.906127 0.28125 0.625 0.2563 0.4696 0.8448 -0.146447 -0.92388 0.353553 0.3125 0.125 0.1374 -0.881 0.4528 -0.212607 -0.83147 0.51328 0.3125 0.1875 0.1374 -0.881 0.4528 -0.108386 -0.83147 0.544895 0.28125 0.1875 0.1374 -0.881 0.4528 -0.146447 -0.92388 0.353553 0.3125 0.125 0.1374 -0.881 0.4528 -0.108386 -0.83147 0.544895 0.28125 0.1875 0.1374 -0.881 0.4528 -0.074658 -0.92388 0.37533 0.28125 0.125 0.1374 -0.881 0.4528 -0.37533 0.19509 0.906127 0.3125 0.5625 0.2779 0.289 0.9161 -0.353553 0.382683 0.853553 0.3125 0.625 0.2779 0.289 0.9161 -0.18024 0.382683 0.906127 0.28125 0.625 0.2779 0.289 0.9161 -0.37533 0.19509 0.906127 0.3125 0.5625 0.2779 0.289 0.9161 -0.18024 0.382683 0.906127 0.28125 0.625 0.2779 0.289 0.9161 -0.191342 0.19509 0.961939 0.28125 0.5625 0.2779 0.289 0.9161 +0.108386 -0.980785 0.162212 0.34375 0.0625 0.1374 -0.9565 0.2571 +0.212607 -0.92388 0.31819 0.34375 0.125 0.1374 -0.9565 0.2571 +0.146447 -0.92388 0.353553 0.3125 0.125 0.1374 -0.9565 0.2571 +0.108386 -0.980785 0.162212 0.34375 0.0625 0.1374 -0.9565 0.2571 +0.146447 -0.92388 0.353553 0.3125 0.125 0.1374 -0.9565 0.2571 +0.074658 -0.980785 0.18024 0.3125 0.0625 0.1374 -0.9565 0.2571 +0.55557 0 0.831469 0.34375 0.5 0.4691 0.0975 0.8777 +0.544895 0.19509 0.815493 0.34375 0.5625 0.4691 0.0975 0.8777 +0.37533 0.19509 0.906127 0.3125 0.5625 0.4691 0.0975 0.8777 +0.55557 0 0.831469 0.34375 0.5 0.4691 0.0975 0.8777 +0.37533 0.19509 0.906127 0.3125 0.5625 0.4691 0.0975 0.8777 +0.382683 0 0.923879 0.3125 0.5 0.4691 0.0975 0.8777 +0.108386 0.980785 0.162212 0.34375 0.9375 0.0464 0.9951 0.0869 +0 1 0 0.328125 1 0.0464 0.9951 0.0869 +0.074658 0.980785 0.18024 0.3125 0.9375 0.0464 0.9951 0.0869 +0 -1 0 0.328125 0 0.0464 -0.9951 0.0869 +0.108386 -0.980785 0.162212 0.34375 0.0625 0.0464 -0.9951 0.0869 +0.074658 -0.980785 0.18024 0.3125 0.0625 0.0464 -0.9951 0.0869 +0.544895 -0.19509 0.815493 0.34375 0.4375 0.4691 -0.0975 0.8777 +0.55557 0 0.831469 0.34375 0.5 0.4691 -0.0975 0.8777 +0.382683 0 0.923879 0.3125 0.5 0.4691 -0.0975 0.8777 +0.544895 -0.19509 0.815493 0.34375 0.4375 0.4691 -0.0975 0.8777 +0.382683 0 0.923879 0.3125 0.5 0.4691 -0.0975 0.8777 +0.37533 -0.19509 0.906127 0.3125 0.4375 0.4691 -0.0975 0.8777 +0.212607 0.92388 0.31819 0.34375 0.875 0.1374 0.9565 0.2571 +0.108386 0.980785 0.162212 0.34375 0.9375 0.1374 0.9565 0.2571 +0.074658 0.980785 0.18024 0.3125 0.9375 0.1374 0.9565 0.2571 +0.212607 0.92388 0.31819 0.34375 0.875 0.1374 0.9565 0.2571 +0.074658 0.980785 0.18024 0.3125 0.9375 0.1374 0.9565 0.2571 +0.146447 0.92388 0.353553 0.3125 0.875 0.1374 0.9565 0.2571 +0.51328 -0.382683 0.768178 0.34375 0.375 0.4513 -0.289 0.8443 +0.544895 -0.19509 0.815493 0.34375 0.4375 0.4513 -0.289 0.8443 +0.37533 -0.19509 0.906127 0.3125 0.4375 0.4513 -0.289 0.8443 +0.51328 -0.382683 0.768178 0.34375 0.375 0.4513 -0.289 0.8443 +0.37533 -0.19509 0.906127 0.3125 0.4375 0.4513 -0.289 0.8443 +0.353553 -0.382683 0.853553 0.3125 0.375 0.4513 -0.289 0.8443 +0.308658 0.83147 0.46194 0.34375 0.8125 0.223 0.881 0.4173 +0.212607 0.92388 0.31819 0.34375 0.875 0.223 0.881 0.4173 +0.146447 0.92388 0.353553 0.3125 0.875 0.223 0.881 0.4173 +0.308658 0.83147 0.46194 0.34375 0.8125 0.223 0.881 0.4173 +0.146447 0.92388 0.353553 0.3125 0.875 0.223 0.881 0.4173 +0.212607 0.83147 0.51328 0.3125 0.8125 0.223 0.881 0.4173 0.074658 -0.980785 0.18024 0.3125 0.0625 0.0846 -0.9565 0.279 0.146447 -0.92388 0.353553 0.3125 0.125 0.0846 -0.9565 0.279 0.074658 -0.92388 0.37533 0.28125 0.125 0.0846 -0.9565 0.279 @@ -1352,48 +1310,48 @@ Data: 0.318189 -0.55557 0.768178 0.3125 0.3125 0.2563 -0.4696 0.8448 0.18024 -0.382683 0.906127 0.28125 0.375 0.2563 -0.4696 0.8448 0.162212 -0.55557 0.815493 0.28125 0.3125 0.2563 -0.4696 0.8448 -0.19509 0 0.980785 0.28125 0.5 0.0975 0.0975 0.9904 -0.191342 0.19509 0.961939 0.28125 0.5625 0.0975 0.0975 0.9904 --0 0.19509 0.980785 0.25 0.5625 0.0975 0.0975 0.9904 -0.19509 0 0.980785 0.28125 0.5 0.0975 0.0975 0.9904 --0 0.19509 0.980785 0.25 0.5625 0.0975 0.0975 0.9904 --0 0 0.999999 0.25 0.5 0.0975 0.0975 0.9904 -0.03806 0.980785 0.191342 0.28125 0.9375 0.0097 0.9951 0.098 -0 1 0 0.265625 1 0.0097 0.9951 0.098 --0 0.980785 0.19509 0.25 0.9375 0.0097 0.9951 0.098 -0 -1 0 0.265625 0 0.0097 -0.9951 0.098 -0.03806 -0.980785 0.191342 0.28125 0.0625 0.0097 -0.9951 0.098 --0 -0.980785 0.19509 0.25 0.0625 0.0097 -0.9951 0.098 -0.191342 -0.19509 0.961939 0.28125 0.4375 0.0975 -0.0975 0.9904 -0.19509 0 0.980785 0.28125 0.5 0.0975 -0.0975 0.9904 --0 0 0.999999 0.25 0.5 0.0975 -0.0975 0.9904 -0.191342 -0.19509 0.961939 0.28125 0.4375 0.0975 -0.0975 0.9904 --0 0 0.999999 0.25 0.5 0.0975 -0.0975 0.9904 --0 -0.19509 0.980785 0.25 0.4375 0.0975 -0.0975 0.9904 -0.074658 0.92388 0.37533 0.28125 0.875 0.0286 0.9565 0.2902 -0.03806 0.980785 0.191342 0.28125 0.9375 0.0286 0.9565 0.2902 --0 0.980785 0.19509 0.25 0.9375 0.0286 0.9565 0.2902 -0.074658 0.92388 0.37533 0.28125 0.875 0.0286 0.9565 0.2902 --0 0.980785 0.19509 0.25 0.9375 0.0286 0.9565 0.2902 --0 0.92388 0.382683 0.25 0.875 0.0286 0.9565 0.2902 -0.18024 -0.382683 0.906127 0.28125 0.375 0.0938 -0.289 0.9527 -0.191342 -0.19509 0.961939 0.28125 0.4375 0.0938 -0.289 0.9527 --0 -0.19509 0.980785 0.25 0.4375 0.0938 -0.289 0.9527 -0.18024 -0.382683 0.906127 0.28125 0.375 0.0938 -0.289 0.9527 --0 -0.19509 0.980785 0.25 0.4375 0.0938 -0.289 0.9527 -0 -0.382683 0.923879 0.25 0.375 0.0938 -0.289 0.9527 -0.108386 0.83147 0.544895 0.28125 0.8125 0.0464 0.881 0.4709 -0.074658 0.92388 0.37533 0.28125 0.875 0.0464 0.881 0.4709 --0 0.92388 0.382683 0.25 0.875 0.0464 0.881 0.4709 -0.108386 0.83147 0.544895 0.28125 0.8125 0.0464 0.881 0.4709 --0 0.92388 0.382683 0.25 0.875 0.0464 0.881 0.4709 --0 0.83147 0.55557 0.25 0.8125 0.0464 0.881 0.4709 -0.162212 -0.55557 0.815493 0.28125 0.3125 0.0865 -0.4696 0.8786 -0.18024 -0.382683 0.906127 0.28125 0.375 0.0865 -0.4696 0.8786 -0 -0.382683 0.923879 0.25 0.375 0.0865 -0.4696 0.8786 -0.162212 -0.55557 0.815493 0.28125 0.3125 0.0865 -0.4696 0.8786 -0 -0.382683 0.923879 0.25 0.375 0.0865 -0.4696 0.8786 --0 -0.55557 0.831469 0.25 0.3125 0.0865 -0.4696 0.8786 +0.270598 0.707107 0.653281 0.3125 0.75 0.1847 0.7715 0.6088 +0.212607 0.83147 0.51328 0.3125 0.8125 0.1847 0.7715 0.6088 +0.108386 0.83147 0.544895 0.28125 0.8125 0.1847 0.7715 0.6088 +0.270598 0.707107 0.653281 0.3125 0.75 0.1847 0.7715 0.6088 +0.108386 0.83147 0.544895 0.28125 0.8125 0.1847 0.7715 0.6088 +0.13795 0.707107 0.69352 0.28125 0.75 0.1847 0.7715 0.6088 +0.270598 -0.707107 0.653281 0.3125 0.25 0.2248 -0.6326 0.7412 +0.318189 -0.55557 0.768178 0.3125 0.3125 0.2248 -0.6326 0.7412 +0.162212 -0.55557 0.815493 0.28125 0.3125 0.2248 -0.6326 0.7412 +0.270598 -0.707107 0.653281 0.3125 0.25 0.2248 -0.6326 0.7412 +0.162212 -0.55557 0.815493 0.28125 0.3125 0.2248 -0.6326 0.7412 +0.13795 -0.707107 0.69352 0.28125 0.25 0.2248 -0.6326 0.7412 +0.318189 0.55557 0.768178 0.3125 0.6875 0.2248 0.6326 0.7412 +0.270598 0.707107 0.653281 0.3125 0.75 0.2248 0.6326 0.7412 +0.13795 0.707107 0.69352 0.28125 0.75 0.2248 0.6326 0.7412 +0.318189 0.55557 0.768178 0.3125 0.6875 0.2248 0.6326 0.7412 +0.13795 0.707107 0.69352 0.28125 0.75 0.2248 0.6326 0.7412 +0.162212 0.55557 0.815493 0.28125 0.6875 0.2248 0.6326 0.7412 +0.212607 -0.83147 0.51328 0.3125 0.1875 0.1847 -0.7715 0.6088 +0.270598 -0.707107 0.653281 0.3125 0.25 0.1847 -0.7715 0.6088 +0.13795 -0.707107 0.69352 0.28125 0.25 0.1847 -0.7715 0.6088 +0.212607 -0.83147 0.51328 0.3125 0.1875 0.1847 -0.7715 0.6088 +0.13795 -0.707107 0.69352 0.28125 0.25 0.1847 -0.7715 0.6088 +0.108386 -0.83147 0.544895 0.28125 0.1875 0.1847 -0.7715 0.6088 +0.353553 0.382683 0.853553 0.3125 0.625 0.2563 0.4696 0.8448 +0.318189 0.55557 0.768178 0.3125 0.6875 0.2563 0.4696 0.8448 +0.162212 0.55557 0.815493 0.28125 0.6875 0.2563 0.4696 0.8448 +0.353553 0.382683 0.853553 0.3125 0.625 0.2563 0.4696 0.8448 +0.162212 0.55557 0.815493 0.28125 0.6875 0.2563 0.4696 0.8448 +0.18024 0.382683 0.906127 0.28125 0.625 0.2563 0.4696 0.8448 +0.146447 -0.92388 0.353553 0.3125 0.125 0.1374 -0.881 0.4528 +0.212607 -0.83147 0.51328 0.3125 0.1875 0.1374 -0.881 0.4528 +0.108386 -0.83147 0.544895 0.28125 0.1875 0.1374 -0.881 0.4528 +0.146447 -0.92388 0.353553 0.3125 0.125 0.1374 -0.881 0.4528 +0.108386 -0.83147 0.544895 0.28125 0.1875 0.1374 -0.881 0.4528 +0.074658 -0.92388 0.37533 0.28125 0.125 0.1374 -0.881 0.4528 +0.37533 0.19509 0.906127 0.3125 0.5625 0.2779 0.289 0.9161 +0.353553 0.382683 0.853553 0.3125 0.625 0.2779 0.289 0.9161 +0.18024 0.382683 0.906127 0.28125 0.625 0.2779 0.289 0.9161 +0.37533 0.19509 0.906127 0.3125 0.5625 0.2779 0.289 0.9161 +0.18024 0.382683 0.906127 0.28125 0.625 0.2779 0.289 0.9161 +0.191342 0.19509 0.961939 0.28125 0.5625 0.2779 0.289 0.9161 0.13795 0.707107 0.69352 0.28125 0.75 0.0624 0.7715 0.6332 0.108386 0.83147 0.544895 0.28125 0.8125 0.0624 0.7715 0.6332 -0 0.83147 0.55557 0.25 0.8125 0.0624 0.7715 0.6332 @@ -1442,48 +1400,48 @@ Data: 0.03806 -0.980785 0.191342 0.28125 0.0625 0.0286 -0.9565 0.2902 -0 -0.92388 0.382683 0.25 0.125 0.0286 -0.9565 0.2902 -0 -0.980785 0.19509 0.25 0.0625 0.0286 -0.9565 0.2902 --0 -0.707107 0.707107 0.25 0.25 -0.0759 -0.6326 0.7708 --0 -0.55557 0.831469 0.25 0.3125 -0.0759 -0.6326 0.7708 --0.162212 -0.55557 0.815493 0.21875 0.3125 -0.0759 -0.6326 0.7708 --0 -0.707107 0.707107 0.25 0.25 -0.0759 -0.6326 0.7708 --0.162212 -0.55557 0.815493 0.21875 0.3125 -0.0759 -0.6326 0.7708 --0.13795 -0.707107 0.69352 0.21875 0.25 -0.0759 -0.6326 0.7708 --0 0.55557 0.831469 0.25 0.6875 -0.0759 0.6326 0.7708 --0 0.707107 0.707107 0.25 0.75 -0.0759 0.6326 0.7708 --0.13795 0.707107 0.69352 0.21875 0.75 -0.0759 0.6326 0.7708 --0 0.55557 0.831469 0.25 0.6875 -0.0759 0.6326 0.7708 --0.13795 0.707107 0.69352 0.21875 0.75 -0.0759 0.6326 0.7708 --0.162212 0.55557 0.815493 0.21875 0.6875 -0.0759 0.6326 0.7708 --0 -0.83147 0.55557 0.25 0.1875 -0.0624 -0.7715 0.6332 --0 -0.707107 0.707107 0.25 0.25 -0.0624 -0.7715 0.6332 --0.13795 -0.707107 0.69352 0.21875 0.25 -0.0624 -0.7715 0.6332 --0 -0.83147 0.55557 0.25 0.1875 -0.0624 -0.7715 0.6332 --0.13795 -0.707107 0.69352 0.21875 0.25 -0.0624 -0.7715 0.6332 --0.108386 -0.83147 0.544895 0.21875 0.1875 -0.0624 -0.7715 0.6332 -0 0.382683 0.923879 0.25 0.625 -0.0865 0.4696 0.8786 --0 0.55557 0.831469 0.25 0.6875 -0.0865 0.4696 0.8786 --0.162212 0.55557 0.815493 0.21875 0.6875 -0.0865 0.4696 0.8786 -0 0.382683 0.923879 0.25 0.625 -0.0865 0.4696 0.8786 --0.162212 0.55557 0.815493 0.21875 0.6875 -0.0865 0.4696 0.8786 --0.18024 0.382683 0.906127 0.21875 0.625 -0.0865 0.4696 0.8786 --0 -0.92388 0.382683 0.25 0.125 -0.0464 -0.881 0.4709 --0 -0.83147 0.55557 0.25 0.1875 -0.0464 -0.881 0.4709 --0.108386 -0.83147 0.544895 0.21875 0.1875 -0.0464 -0.881 0.4709 --0 -0.92388 0.382683 0.25 0.125 -0.0464 -0.881 0.4709 --0.108386 -0.83147 0.544895 0.21875 0.1875 -0.0464 -0.881 0.4709 --0.074658 -0.92388 0.37533 0.21875 0.125 -0.0464 -0.881 0.4709 --0 0.19509 0.980785 0.25 0.5625 -0.0938 0.289 0.9527 -0 0.382683 0.923879 0.25 0.625 -0.0938 0.289 0.9527 --0.18024 0.382683 0.906127 0.21875 0.625 -0.0938 0.289 0.9527 --0 0.19509 0.980785 0.25 0.5625 -0.0938 0.289 0.9527 --0.18024 0.382683 0.906127 0.21875 0.625 -0.0938 0.289 0.9527 --0.191342 0.19509 0.961939 0.21875 0.5625 -0.0938 0.289 0.9527 --0 -0.980785 0.19509 0.25 0.0625 -0.0286 -0.9565 0.2902 --0 -0.92388 0.382683 0.25 0.125 -0.0286 -0.9565 0.2902 --0.074658 -0.92388 0.37533 0.21875 0.125 -0.0286 -0.9565 0.2902 --0 -0.980785 0.19509 0.25 0.0625 -0.0286 -0.9565 0.2902 --0.074658 -0.92388 0.37533 0.21875 0.125 -0.0286 -0.9565 0.2902 --0.03806 -0.980785 0.191342 0.21875 0.0625 -0.0286 -0.9565 0.2902 +0.19509 0 0.980785 0.28125 0.5 0.0975 0.0975 0.9904 +0.191342 0.19509 0.961939 0.28125 0.5625 0.0975 0.0975 0.9904 +-0 0.19509 0.980785 0.25 0.5625 0.0975 0.0975 0.9904 +0.19509 0 0.980785 0.28125 0.5 0.0975 0.0975 0.9904 +-0 0.19509 0.980785 0.25 0.5625 0.0975 0.0975 0.9904 +-0 0 0.999999 0.25 0.5 0.0975 0.0975 0.9904 +0.03806 0.980785 0.191342 0.28125 0.9375 0.0097 0.9951 0.098 +0 1 0 0.265625 1 0.0097 0.9951 0.098 +-0 0.980785 0.19509 0.25 0.9375 0.0097 0.9951 0.098 +0 -1 0 0.265625 0 0.0097 -0.9951 0.098 +0.03806 -0.980785 0.191342 0.28125 0.0625 0.0097 -0.9951 0.098 +-0 -0.980785 0.19509 0.25 0.0625 0.0097 -0.9951 0.098 +0.191342 -0.19509 0.961939 0.28125 0.4375 0.0975 -0.0975 0.9904 +0.19509 0 0.980785 0.28125 0.5 0.0975 -0.0975 0.9904 +-0 0 0.999999 0.25 0.5 0.0975 -0.0975 0.9904 +0.191342 -0.19509 0.961939 0.28125 0.4375 0.0975 -0.0975 0.9904 +-0 0 0.999999 0.25 0.5 0.0975 -0.0975 0.9904 +-0 -0.19509 0.980785 0.25 0.4375 0.0975 -0.0975 0.9904 +0.074658 0.92388 0.37533 0.28125 0.875 0.0286 0.9565 0.2902 +0.03806 0.980785 0.191342 0.28125 0.9375 0.0286 0.9565 0.2902 +-0 0.980785 0.19509 0.25 0.9375 0.0286 0.9565 0.2902 +0.074658 0.92388 0.37533 0.28125 0.875 0.0286 0.9565 0.2902 +-0 0.980785 0.19509 0.25 0.9375 0.0286 0.9565 0.2902 +-0 0.92388 0.382683 0.25 0.875 0.0286 0.9565 0.2902 +0.18024 -0.382683 0.906127 0.28125 0.375 0.0938 -0.289 0.9527 +0.191342 -0.19509 0.961939 0.28125 0.4375 0.0938 -0.289 0.9527 +-0 -0.19509 0.980785 0.25 0.4375 0.0938 -0.289 0.9527 +0.18024 -0.382683 0.906127 0.28125 0.375 0.0938 -0.289 0.9527 +-0 -0.19509 0.980785 0.25 0.4375 0.0938 -0.289 0.9527 +0 -0.382683 0.923879 0.25 0.375 0.0938 -0.289 0.9527 +0.108386 0.83147 0.544895 0.28125 0.8125 0.0464 0.881 0.4709 +0.074658 0.92388 0.37533 0.28125 0.875 0.0464 0.881 0.4709 +-0 0.92388 0.382683 0.25 0.875 0.0464 0.881 0.4709 +0.108386 0.83147 0.544895 0.28125 0.8125 0.0464 0.881 0.4709 +-0 0.92388 0.382683 0.25 0.875 0.0464 0.881 0.4709 +-0 0.83147 0.55557 0.25 0.8125 0.0464 0.881 0.4709 +0.162212 -0.55557 0.815493 0.28125 0.3125 0.0865 -0.4696 0.8786 +0.18024 -0.382683 0.906127 0.28125 0.375 0.0865 -0.4696 0.8786 +0 -0.382683 0.923879 0.25 0.375 0.0865 -0.4696 0.8786 +0.162212 -0.55557 0.815493 0.28125 0.3125 0.0865 -0.4696 0.8786 +0 -0.382683 0.923879 0.25 0.375 0.0865 -0.4696 0.8786 +-0 -0.55557 0.831469 0.25 0.3125 0.0865 -0.4696 0.8786 -0 0 0.999999 0.25 0.5 -0.0976 0.0975 0.9904 -0 0.19509 0.980785 0.25 0.5625 -0.0976 0.0975 0.9904 -0.191342 0.19509 0.961939 0.21875 0.5625 -0.0976 0.0975 0.9904 @@ -1532,45 +1490,48 @@ Data: -0 0.707107 0.707107 0.25 0.75 -0.0624 0.7715 0.6332 -0.108386 0.83147 0.544895 0.21875 0.8125 -0.0624 0.7715 0.6332 -0.13795 0.707107 0.69352 0.21875 0.75 -0.0624 0.7715 0.6332 -0 -1 0 0.203125 0 -0.0286 -0.9951 0.0942 --0.03806 -0.980785 0.191342 0.21875 0.0625 -0.0286 -0.9951 0.0942 --0.074658 -0.980785 0.18024 0.1875 0.0625 -0.0286 -0.9951 0.0942 --0.191342 -0.19509 0.961939 0.21875 0.4375 -0.2889 -0.0975 0.9524 --0.195091 0 0.980785 0.21875 0.5 -0.2889 -0.0975 0.9524 --0.382683 0 0.923879 0.1875 0.5 -0.2889 -0.0975 0.9524 --0.191342 -0.19509 0.961939 0.21875 0.4375 -0.2889 -0.0975 0.9524 --0.382683 0 0.923879 0.1875 0.5 -0.2889 -0.0975 0.9524 --0.37533 -0.19509 0.906127 0.1875 0.4375 -0.2889 -0.0975 0.9524 --0.074658 0.92388 0.37533 0.21875 0.875 -0.0846 0.9565 0.279 --0.03806 0.980785 0.191342 0.21875 0.9375 -0.0846 0.9565 0.279 --0.074658 0.980785 0.18024 0.1875 0.9375 -0.0846 0.9565 0.279 --0.074658 0.92388 0.37533 0.21875 0.875 -0.0846 0.9565 0.279 --0.074658 0.980785 0.18024 0.1875 0.9375 -0.0846 0.9565 0.279 --0.146447 0.92388 0.353553 0.1875 0.875 -0.0846 0.9565 0.279 --0.18024 -0.382683 0.906127 0.21875 0.375 -0.2779 -0.289 0.9161 --0.191342 -0.19509 0.961939 0.21875 0.4375 -0.2779 -0.289 0.9161 --0.37533 -0.19509 0.906127 0.1875 0.4375 -0.2779 -0.289 0.9161 --0.18024 -0.382683 0.906127 0.21875 0.375 -0.2779 -0.289 0.9161 --0.37533 -0.19509 0.906127 0.1875 0.4375 -0.2779 -0.289 0.9161 --0.353553 -0.382683 0.853553 0.1875 0.375 -0.2779 -0.289 0.9161 --0.108386 0.83147 0.544895 0.21875 0.8125 -0.1374 0.881 0.4528 --0.074658 0.92388 0.37533 0.21875 0.875 -0.1374 0.881 0.4528 --0.146447 0.92388 0.353553 0.1875 0.875 -0.1374 0.881 0.4528 --0.108386 0.83147 0.544895 0.21875 0.8125 -0.1374 0.881 0.4528 --0.146447 0.92388 0.353553 0.1875 0.875 -0.1374 0.881 0.4528 --0.212608 0.83147 0.51328 0.1875 0.8125 -0.1374 0.881 0.4528 --0.162212 -0.55557 0.815493 0.21875 0.3125 -0.2563 -0.4696 0.8448 --0.18024 -0.382683 0.906127 0.21875 0.375 -0.2563 -0.4696 0.8448 --0.353553 -0.382683 0.853553 0.1875 0.375 -0.2563 -0.4696 0.8448 --0.162212 -0.55557 0.815493 0.21875 0.3125 -0.2563 -0.4696 0.8448 --0.353553 -0.382683 0.853553 0.1875 0.375 -0.2563 -0.4696 0.8448 --0.31819 -0.55557 0.768177 0.1875 0.3125 -0.2563 -0.4696 0.8448 --0.13795 0.707107 0.69352 0.21875 0.75 -0.1847 0.7715 0.6088 --0.108386 0.83147 0.544895 0.21875 0.8125 -0.1847 0.7715 0.6088 --0.212608 0.83147 0.51328 0.1875 0.8125 -0.1847 0.7715 0.6088 --0.13795 0.707107 0.69352 0.21875 0.75 -0.1847 0.7715 0.6088 --0.212608 0.83147 0.51328 0.1875 0.8125 -0.1847 0.7715 0.6088 --0.270598 0.707107 0.653281 0.1875 0.75 -0.1847 0.7715 0.6088 +-0 -0.707107 0.707107 0.25 0.25 -0.0759 -0.6326 0.7708 +-0 -0.55557 0.831469 0.25 0.3125 -0.0759 -0.6326 0.7708 +-0.162212 -0.55557 0.815493 0.21875 0.3125 -0.0759 -0.6326 0.7708 +-0 -0.707107 0.707107 0.25 0.25 -0.0759 -0.6326 0.7708 +-0.162212 -0.55557 0.815493 0.21875 0.3125 -0.0759 -0.6326 0.7708 +-0.13795 -0.707107 0.69352 0.21875 0.25 -0.0759 -0.6326 0.7708 +-0 0.55557 0.831469 0.25 0.6875 -0.0759 0.6326 0.7708 +-0 0.707107 0.707107 0.25 0.75 -0.0759 0.6326 0.7708 +-0.13795 0.707107 0.69352 0.21875 0.75 -0.0759 0.6326 0.7708 +-0 0.55557 0.831469 0.25 0.6875 -0.0759 0.6326 0.7708 +-0.13795 0.707107 0.69352 0.21875 0.75 -0.0759 0.6326 0.7708 +-0.162212 0.55557 0.815493 0.21875 0.6875 -0.0759 0.6326 0.7708 +-0 -0.83147 0.55557 0.25 0.1875 -0.0624 -0.7715 0.6332 +-0 -0.707107 0.707107 0.25 0.25 -0.0624 -0.7715 0.6332 +-0.13795 -0.707107 0.69352 0.21875 0.25 -0.0624 -0.7715 0.6332 +-0 -0.83147 0.55557 0.25 0.1875 -0.0624 -0.7715 0.6332 +-0.13795 -0.707107 0.69352 0.21875 0.25 -0.0624 -0.7715 0.6332 +-0.108386 -0.83147 0.544895 0.21875 0.1875 -0.0624 -0.7715 0.6332 +0 0.382683 0.923879 0.25 0.625 -0.0865 0.4696 0.8786 +-0 0.55557 0.831469 0.25 0.6875 -0.0865 0.4696 0.8786 +-0.162212 0.55557 0.815493 0.21875 0.6875 -0.0865 0.4696 0.8786 +0 0.382683 0.923879 0.25 0.625 -0.0865 0.4696 0.8786 +-0.162212 0.55557 0.815493 0.21875 0.6875 -0.0865 0.4696 0.8786 +-0.18024 0.382683 0.906127 0.21875 0.625 -0.0865 0.4696 0.8786 +-0 -0.92388 0.382683 0.25 0.125 -0.0464 -0.881 0.4709 +-0 -0.83147 0.55557 0.25 0.1875 -0.0464 -0.881 0.4709 +-0.108386 -0.83147 0.544895 0.21875 0.1875 -0.0464 -0.881 0.4709 +-0 -0.92388 0.382683 0.25 0.125 -0.0464 -0.881 0.4709 +-0.108386 -0.83147 0.544895 0.21875 0.1875 -0.0464 -0.881 0.4709 +-0.074658 -0.92388 0.37533 0.21875 0.125 -0.0464 -0.881 0.4709 +-0 0.19509 0.980785 0.25 0.5625 -0.0938 0.289 0.9527 +0 0.382683 0.923879 0.25 0.625 -0.0938 0.289 0.9527 +-0.18024 0.382683 0.906127 0.21875 0.625 -0.0938 0.289 0.9527 +-0 0.19509 0.980785 0.25 0.5625 -0.0938 0.289 0.9527 +-0.18024 0.382683 0.906127 0.21875 0.625 -0.0938 0.289 0.9527 +-0.191342 0.19509 0.961939 0.21875 0.5625 -0.0938 0.289 0.9527 +-0 -0.980785 0.19509 0.25 0.0625 -0.0286 -0.9565 0.2902 +-0 -0.92388 0.382683 0.25 0.125 -0.0286 -0.9565 0.2902 +-0.074658 -0.92388 0.37533 0.21875 0.125 -0.0286 -0.9565 0.2902 +-0 -0.980785 0.19509 0.25 0.0625 -0.0286 -0.9565 0.2902 +-0.074658 -0.92388 0.37533 0.21875 0.125 -0.0286 -0.9565 0.2902 +-0.03806 -0.980785 0.191342 0.21875 0.0625 -0.0286 -0.9565 0.2902 -0.13795 -0.707107 0.69352 0.21875 0.25 -0.2248 -0.6326 0.7412 -0.162212 -0.55557 0.815493 0.21875 0.3125 -0.2248 -0.6326 0.7412 -0.31819 -0.55557 0.768177 0.1875 0.3125 -0.2248 -0.6326 0.7412 @@ -1622,45 +1583,45 @@ Data: -0.03806 0.980785 0.191342 0.21875 0.9375 -0.0286 0.9951 0.0942 0 1 0 0.203125 1 -0.0286 0.9951 0.0942 -0.074658 0.980785 0.18024 0.1875 0.9375 -0.0286 0.9951 0.0942 --0.212608 -0.83147 0.51328 0.1875 0.1875 -0.2999 -0.7715 0.5611 --0.270598 -0.707107 0.653281 0.1875 0.25 -0.2999 -0.7715 0.5611 --0.392847 -0.707107 0.587938 0.15625 0.25 -0.2999 -0.7715 0.5611 --0.212608 -0.83147 0.51328 0.1875 0.1875 -0.2999 -0.7715 0.5611 --0.392847 -0.707107 0.587938 0.15625 0.25 -0.2999 -0.7715 0.5611 --0.308658 -0.83147 0.461939 0.15625 0.1875 -0.2999 -0.7715 0.5611 --0.353553 0.382683 0.853553 0.1875 0.625 -0.4162 0.4696 0.7786 --0.31819 0.55557 0.768177 0.1875 0.6875 -0.4162 0.4696 0.7786 --0.46194 0.55557 0.691341 0.15625 0.6875 -0.4162 0.4696 0.7786 --0.353553 0.382683 0.853553 0.1875 0.625 -0.4162 0.4696 0.7786 --0.46194 0.55557 0.691341 0.15625 0.6875 -0.4162 0.4696 0.7786 --0.51328 0.382683 0.768178 0.15625 0.625 -0.4162 0.4696 0.7786 --0.146447 -0.92388 0.353553 0.1875 0.125 -0.223 -0.881 0.4173 --0.212608 -0.83147 0.51328 0.1875 0.1875 -0.223 -0.881 0.4173 --0.308658 -0.83147 0.461939 0.15625 0.1875 -0.223 -0.881 0.4173 --0.146447 -0.92388 0.353553 0.1875 0.125 -0.223 -0.881 0.4173 --0.308658 -0.83147 0.461939 0.15625 0.1875 -0.223 -0.881 0.4173 --0.212608 -0.92388 0.31819 0.15625 0.125 -0.223 -0.881 0.4173 --0.37533 0.19509 0.906127 0.1875 0.5625 -0.4513 0.289 0.8443 --0.353553 0.382683 0.853553 0.1875 0.625 -0.4513 0.289 0.8443 --0.51328 0.382683 0.768178 0.15625 0.625 -0.4513 0.289 0.8443 --0.37533 0.19509 0.906127 0.1875 0.5625 -0.4513 0.289 0.8443 --0.51328 0.382683 0.768178 0.15625 0.625 -0.4513 0.289 0.8443 --0.544895 0.19509 0.815493 0.15625 0.5625 -0.4513 0.289 0.8443 --0.074658 -0.980785 0.18024 0.1875 0.0625 -0.1374 -0.9565 0.2571 --0.146447 -0.92388 0.353553 0.1875 0.125 -0.1374 -0.9565 0.2571 --0.212608 -0.92388 0.31819 0.15625 0.125 -0.1374 -0.9565 0.2571 --0.074658 -0.980785 0.18024 0.1875 0.0625 -0.1374 -0.9565 0.2571 --0.212608 -0.92388 0.31819 0.15625 0.125 -0.1374 -0.9565 0.2571 --0.108386 -0.980785 0.162212 0.15625 0.0625 -0.1374 -0.9565 0.2571 --0.382683 0 0.923879 0.1875 0.5 -0.4691 0.0975 0.8777 --0.37533 0.19509 0.906127 0.1875 0.5625 -0.4691 0.0975 0.8777 --0.544895 0.19509 0.815493 0.15625 0.5625 -0.4691 0.0975 0.8777 --0.382683 0 0.923879 0.1875 0.5 -0.4691 0.0975 0.8777 --0.544895 0.19509 0.815493 0.15625 0.5625 -0.4691 0.0975 0.8777 --0.55557 0 0.831469 0.15625 0.5 -0.4691 0.0975 0.8777 --0.074658 0.980785 0.18024 0.1875 0.9375 -0.0464 0.9951 0.0869 -0 1 0 0.171875 1 -0.0464 0.9951 0.0869 --0.108386 0.980785 0.162212 0.15625 0.9375 -0.0464 0.9951 0.0869 +0 -1 0 0.203125 0 -0.0286 -0.9951 0.0942 +-0.03806 -0.980785 0.191342 0.21875 0.0625 -0.0286 -0.9951 0.0942 +-0.074658 -0.980785 0.18024 0.1875 0.0625 -0.0286 -0.9951 0.0942 +-0.191342 -0.19509 0.961939 0.21875 0.4375 -0.2889 -0.0975 0.9524 +-0.195091 0 0.980785 0.21875 0.5 -0.2889 -0.0975 0.9524 +-0.382683 0 0.923879 0.1875 0.5 -0.2889 -0.0975 0.9524 +-0.191342 -0.19509 0.961939 0.21875 0.4375 -0.2889 -0.0975 0.9524 +-0.382683 0 0.923879 0.1875 0.5 -0.2889 -0.0975 0.9524 +-0.37533 -0.19509 0.906127 0.1875 0.4375 -0.2889 -0.0975 0.9524 +-0.074658 0.92388 0.37533 0.21875 0.875 -0.0846 0.9565 0.279 +-0.03806 0.980785 0.191342 0.21875 0.9375 -0.0846 0.9565 0.279 +-0.074658 0.980785 0.18024 0.1875 0.9375 -0.0846 0.9565 0.279 +-0.074658 0.92388 0.37533 0.21875 0.875 -0.0846 0.9565 0.279 +-0.074658 0.980785 0.18024 0.1875 0.9375 -0.0846 0.9565 0.279 +-0.146447 0.92388 0.353553 0.1875 0.875 -0.0846 0.9565 0.279 +-0.18024 -0.382683 0.906127 0.21875 0.375 -0.2779 -0.289 0.9161 +-0.191342 -0.19509 0.961939 0.21875 0.4375 -0.2779 -0.289 0.9161 +-0.37533 -0.19509 0.906127 0.1875 0.4375 -0.2779 -0.289 0.9161 +-0.18024 -0.382683 0.906127 0.21875 0.375 -0.2779 -0.289 0.9161 +-0.37533 -0.19509 0.906127 0.1875 0.4375 -0.2779 -0.289 0.9161 +-0.353553 -0.382683 0.853553 0.1875 0.375 -0.2779 -0.289 0.9161 +-0.108386 0.83147 0.544895 0.21875 0.8125 -0.1374 0.881 0.4528 +-0.074658 0.92388 0.37533 0.21875 0.875 -0.1374 0.881 0.4528 +-0.146447 0.92388 0.353553 0.1875 0.875 -0.1374 0.881 0.4528 +-0.108386 0.83147 0.544895 0.21875 0.8125 -0.1374 0.881 0.4528 +-0.146447 0.92388 0.353553 0.1875 0.875 -0.1374 0.881 0.4528 +-0.212608 0.83147 0.51328 0.1875 0.8125 -0.1374 0.881 0.4528 +-0.162212 -0.55557 0.815493 0.21875 0.3125 -0.2563 -0.4696 0.8448 +-0.18024 -0.382683 0.906127 0.21875 0.375 -0.2563 -0.4696 0.8448 +-0.353553 -0.382683 0.853553 0.1875 0.375 -0.2563 -0.4696 0.8448 +-0.162212 -0.55557 0.815493 0.21875 0.3125 -0.2563 -0.4696 0.8448 +-0.353553 -0.382683 0.853553 0.1875 0.375 -0.2563 -0.4696 0.8448 +-0.31819 -0.55557 0.768177 0.1875 0.3125 -0.2563 -0.4696 0.8448 +-0.13795 0.707107 0.69352 0.21875 0.75 -0.1847 0.7715 0.6088 +-0.108386 0.83147 0.544895 0.21875 0.8125 -0.1847 0.7715 0.6088 +-0.212608 0.83147 0.51328 0.1875 0.8125 -0.1847 0.7715 0.6088 +-0.13795 0.707107 0.69352 0.21875 0.75 -0.1847 0.7715 0.6088 +-0.212608 0.83147 0.51328 0.1875 0.8125 -0.1847 0.7715 0.6088 +-0.270598 0.707107 0.653281 0.1875 0.75 -0.1847 0.7715 0.6088 0 -1 0 0.171875 0 -0.0464 -0.9951 0.0869 -0.074658 -0.980785 0.18024 0.1875 0.0625 -0.0464 -0.9951 0.0869 -0.108386 -0.980785 0.162212 0.15625 0.0625 -0.0464 -0.9951 0.0869 @@ -1712,48 +1673,45 @@ Data: -0.31819 0.55557 0.768177 0.1875 0.6875 -0.3651 0.6326 0.6831 -0.392847 0.707107 0.587938 0.15625 0.75 -0.3651 0.6326 0.6831 -0.46194 0.55557 0.691341 0.15625 0.6875 -0.3651 0.6326 0.6831 --0.212608 0.92388 0.31819 0.15625 0.875 -0.185 0.9565 0.2254 --0.108386 0.980785 0.162212 0.15625 0.9375 -0.185 0.9565 0.2254 --0.13795 0.980785 0.13795 0.125 0.9375 -0.185 0.9565 0.2254 --0.212608 0.92388 0.31819 0.15625 0.875 -0.185 0.9565 0.2254 --0.13795 0.980785 0.13795 0.125 0.9375 -0.185 0.9565 0.2254 --0.270598 0.92388 0.270598 0.125 0.875 -0.185 0.9565 0.2254 --0.51328 -0.382683 0.768178 0.15625 0.375 -0.6073 -0.289 0.74 --0.544895 -0.19509 0.815493 0.15625 0.4375 -0.6073 -0.289 0.74 --0.69352 -0.19509 0.69352 0.125 0.4375 -0.6073 -0.289 0.74 --0.51328 -0.382683 0.768178 0.15625 0.375 -0.6073 -0.289 0.74 --0.69352 -0.19509 0.69352 0.125 0.4375 -0.6073 -0.289 0.74 --0.653281 -0.382683 0.653281 0.125 0.375 -0.6073 -0.289 0.74 --0.308658 0.83147 0.461939 0.15625 0.8125 -0.3002 0.881 0.3658 --0.212608 0.92388 0.31819 0.15625 0.875 -0.3002 0.881 0.3658 --0.270598 0.92388 0.270598 0.125 0.875 -0.3002 0.881 0.3658 --0.308658 0.83147 0.461939 0.15625 0.8125 -0.3002 0.881 0.3658 --0.270598 0.92388 0.270598 0.125 0.875 -0.3002 0.881 0.3658 --0.392847 0.83147 0.392847 0.125 0.8125 -0.3002 0.881 0.3658 --0.46194 -0.55557 0.691341 0.15625 0.3125 -0.5601 -0.4696 0.6825 --0.51328 -0.382683 0.768178 0.15625 0.375 -0.5601 -0.4696 0.6825 --0.653281 -0.382683 0.653281 0.125 0.375 -0.5601 -0.4696 0.6825 --0.46194 -0.55557 0.691341 0.15625 0.3125 -0.5601 -0.4696 0.6825 --0.653281 -0.382683 0.653281 0.125 0.375 -0.5601 -0.4696 0.6825 --0.587938 -0.55557 0.587937 0.125 0.3125 -0.5601 -0.4696 0.6825 --0.392847 0.707107 0.587938 0.15625 0.75 -0.4036 0.7715 0.4918 --0.308658 0.83147 0.461939 0.15625 0.8125 -0.4036 0.7715 0.4918 --0.392847 0.83147 0.392847 0.125 0.8125 -0.4036 0.7715 0.4918 --0.392847 0.707107 0.587938 0.15625 0.75 -0.4036 0.7715 0.4918 --0.392847 0.83147 0.392847 0.125 0.8125 -0.4036 0.7715 0.4918 --0.5 0.707107 0.5 0.125 0.75 -0.4036 0.7715 0.4918 --0.392847 -0.707107 0.587938 0.15625 0.25 -0.4913 -0.6326 0.5987 --0.46194 -0.55557 0.691341 0.15625 0.3125 -0.4913 -0.6326 0.5987 --0.587938 -0.55557 0.587937 0.125 0.3125 -0.4913 -0.6326 0.5987 --0.392847 -0.707107 0.587938 0.15625 0.25 -0.4913 -0.6326 0.5987 --0.587938 -0.55557 0.587937 0.125 0.3125 -0.4913 -0.6326 0.5987 --0.5 -0.707107 0.5 0.125 0.25 -0.4913 -0.6326 0.5987 --0.46194 0.55557 0.691341 0.15625 0.6875 -0.4913 0.6326 0.5987 --0.392847 0.707107 0.587938 0.15625 0.75 -0.4913 0.6326 0.5987 --0.5 0.707107 0.5 0.125 0.75 -0.4913 0.6326 0.5987 --0.46194 0.55557 0.691341 0.15625 0.6875 -0.4913 0.6326 0.5987 --0.5 0.707107 0.5 0.125 0.75 -0.4913 0.6326 0.5987 --0.587938 0.55557 0.587937 0.125 0.6875 -0.4913 0.6326 0.5987 +-0.212608 -0.83147 0.51328 0.1875 0.1875 -0.2999 -0.7715 0.5611 +-0.270598 -0.707107 0.653281 0.1875 0.25 -0.2999 -0.7715 0.5611 +-0.392847 -0.707107 0.587938 0.15625 0.25 -0.2999 -0.7715 0.5611 +-0.212608 -0.83147 0.51328 0.1875 0.1875 -0.2999 -0.7715 0.5611 +-0.392847 -0.707107 0.587938 0.15625 0.25 -0.2999 -0.7715 0.5611 +-0.308658 -0.83147 0.461939 0.15625 0.1875 -0.2999 -0.7715 0.5611 +-0.353553 0.382683 0.853553 0.1875 0.625 -0.4162 0.4696 0.7786 +-0.31819 0.55557 0.768177 0.1875 0.6875 -0.4162 0.4696 0.7786 +-0.46194 0.55557 0.691341 0.15625 0.6875 -0.4162 0.4696 0.7786 +-0.353553 0.382683 0.853553 0.1875 0.625 -0.4162 0.4696 0.7786 +-0.46194 0.55557 0.691341 0.15625 0.6875 -0.4162 0.4696 0.7786 +-0.51328 0.382683 0.768178 0.15625 0.625 -0.4162 0.4696 0.7786 +-0.146447 -0.92388 0.353553 0.1875 0.125 -0.223 -0.881 0.4173 +-0.212608 -0.83147 0.51328 0.1875 0.1875 -0.223 -0.881 0.4173 +-0.308658 -0.83147 0.461939 0.15625 0.1875 -0.223 -0.881 0.4173 +-0.146447 -0.92388 0.353553 0.1875 0.125 -0.223 -0.881 0.4173 +-0.308658 -0.83147 0.461939 0.15625 0.1875 -0.223 -0.881 0.4173 +-0.212608 -0.92388 0.31819 0.15625 0.125 -0.223 -0.881 0.4173 +-0.37533 0.19509 0.906127 0.1875 0.5625 -0.4513 0.289 0.8443 +-0.353553 0.382683 0.853553 0.1875 0.625 -0.4513 0.289 0.8443 +-0.51328 0.382683 0.768178 0.15625 0.625 -0.4513 0.289 0.8443 +-0.37533 0.19509 0.906127 0.1875 0.5625 -0.4513 0.289 0.8443 +-0.51328 0.382683 0.768178 0.15625 0.625 -0.4513 0.289 0.8443 +-0.544895 0.19509 0.815493 0.15625 0.5625 -0.4513 0.289 0.8443 +-0.074658 -0.980785 0.18024 0.1875 0.0625 -0.1374 -0.9565 0.2571 +-0.146447 -0.92388 0.353553 0.1875 0.125 -0.1374 -0.9565 0.2571 +-0.212608 -0.92388 0.31819 0.15625 0.125 -0.1374 -0.9565 0.2571 +-0.074658 -0.980785 0.18024 0.1875 0.0625 -0.1374 -0.9565 0.2571 +-0.212608 -0.92388 0.31819 0.15625 0.125 -0.1374 -0.9565 0.2571 +-0.108386 -0.980785 0.162212 0.15625 0.0625 -0.1374 -0.9565 0.2571 +-0.382683 0 0.923879 0.1875 0.5 -0.4691 0.0975 0.8777 +-0.37533 0.19509 0.906127 0.1875 0.5625 -0.4691 0.0975 0.8777 +-0.544895 0.19509 0.815493 0.15625 0.5625 -0.4691 0.0975 0.8777 +-0.382683 0 0.923879 0.1875 0.5 -0.4691 0.0975 0.8777 +-0.544895 0.19509 0.815493 0.15625 0.5625 -0.4691 0.0975 0.8777 +-0.55557 0 0.831469 0.15625 0.5 -0.4691 0.0975 0.8777 +-0.074658 0.980785 0.18024 0.1875 0.9375 -0.0464 0.9951 0.0869 +0 1 0 0.171875 1 -0.0464 0.9951 0.0869 +-0.108386 0.980785 0.162212 0.15625 0.9375 -0.0464 0.9951 0.0869 -0.308658 -0.83147 0.461939 0.15625 0.1875 -0.4036 -0.7715 0.4918 -0.392847 -0.707107 0.587938 0.15625 0.25 -0.4036 -0.7715 0.4918 -0.5 -0.707107 0.5 0.125 0.25 -0.4036 -0.7715 0.4918 @@ -1802,48 +1760,48 @@ Data: -0.544895 -0.19509 0.815493 0.15625 0.4375 -0.6314 -0.0975 0.7693 -0.707106 0 0.707106 0.125 0.5 -0.6314 -0.0975 0.7693 -0.69352 -0.19509 0.69352 0.125 0.4375 -0.6314 -0.0975 0.7693 --0.653281 0.382683 0.653281 0.125 0.625 -0.6825 0.4696 0.5601 --0.587938 0.55557 0.587937 0.125 0.6875 -0.6825 0.4696 0.5601 --0.691341 0.55557 0.461939 0.09375 0.6875 -0.6825 0.4696 0.5601 --0.653281 0.382683 0.653281 0.125 0.625 -0.6825 0.4696 0.5601 --0.691341 0.55557 0.461939 0.09375 0.6875 -0.6825 0.4696 0.5601 --0.768177 0.382683 0.51328 0.09375 0.625 -0.6825 0.4696 0.5601 --0.270598 -0.92388 0.270598 0.125 0.125 -0.3658 -0.881 0.3002 --0.392847 -0.83147 0.392847 0.125 0.1875 -0.3658 -0.881 0.3002 --0.46194 -0.83147 0.308658 0.09375 0.1875 -0.3658 -0.881 0.3002 --0.270598 -0.92388 0.270598 0.125 0.125 -0.3658 -0.881 0.3002 --0.46194 -0.83147 0.308658 0.09375 0.1875 -0.3658 -0.881 0.3002 --0.31819 -0.92388 0.212607 0.09375 0.125 -0.3658 -0.881 0.3002 --0.69352 0.19509 0.69352 0.125 0.5625 -0.74 0.289 0.6073 --0.653281 0.382683 0.653281 0.125 0.625 -0.74 0.289 0.6073 --0.768177 0.382683 0.51328 0.09375 0.625 -0.74 0.289 0.6073 --0.69352 0.19509 0.69352 0.125 0.5625 -0.74 0.289 0.6073 --0.768177 0.382683 0.51328 0.09375 0.625 -0.74 0.289 0.6073 --0.815493 0.19509 0.544895 0.09375 0.5625 -0.74 0.289 0.6073 --0.13795 -0.980785 0.13795 0.125 0.0625 -0.2254 -0.9565 0.185 --0.270598 -0.92388 0.270598 0.125 0.125 -0.2254 -0.9565 0.185 --0.31819 -0.92388 0.212607 0.09375 0.125 -0.2254 -0.9565 0.185 --0.13795 -0.980785 0.13795 0.125 0.0625 -0.2254 -0.9565 0.185 --0.31819 -0.92388 0.212607 0.09375 0.125 -0.2254 -0.9565 0.185 --0.162212 -0.980785 0.108386 0.09375 0.0625 -0.2254 -0.9565 0.185 --0.707106 0 0.707106 0.125 0.5 -0.7693 0.0975 0.6314 --0.69352 0.19509 0.69352 0.125 0.5625 -0.7693 0.0975 0.6314 --0.815493 0.19509 0.544895 0.09375 0.5625 -0.7693 0.0975 0.6314 --0.707106 0 0.707106 0.125 0.5 -0.7693 0.0975 0.6314 --0.815493 0.19509 0.544895 0.09375 0.5625 -0.7693 0.0975 0.6314 --0.831469 0 0.555569 0.09375 0.5 -0.7693 0.0975 0.6314 --0.13795 0.980785 0.13795 0.125 0.9375 -0.0761 0.9951 0.0625 -0 1 0 0.109375 1 -0.0761 0.9951 0.0625 --0.162212 0.980785 0.108386 0.09375 0.9375 -0.0761 0.9951 0.0625 -0 -1 0 0.109375 0 -0.0761 -0.9951 0.0625 --0.13795 -0.980785 0.13795 0.125 0.0625 -0.0761 -0.9951 0.0625 --0.162212 -0.980785 0.108386 0.09375 0.0625 -0.0761 -0.9951 0.0625 --0.69352 -0.19509 0.69352 0.125 0.4375 -0.7693 -0.0975 0.6314 --0.707106 0 0.707106 0.125 0.5 -0.7693 -0.0975 0.6314 --0.831469 0 0.555569 0.09375 0.5 -0.7693 -0.0975 0.6314 --0.69352 -0.19509 0.69352 0.125 0.4375 -0.7693 -0.0975 0.6314 --0.831469 0 0.555569 0.09375 0.5 -0.7693 -0.0975 0.6314 --0.815493 -0.19509 0.544895 0.09375 0.4375 -0.7693 -0.0975 0.6314 +-0.212608 0.92388 0.31819 0.15625 0.875 -0.185 0.9565 0.2254 +-0.108386 0.980785 0.162212 0.15625 0.9375 -0.185 0.9565 0.2254 +-0.13795 0.980785 0.13795 0.125 0.9375 -0.185 0.9565 0.2254 +-0.212608 0.92388 0.31819 0.15625 0.875 -0.185 0.9565 0.2254 +-0.13795 0.980785 0.13795 0.125 0.9375 -0.185 0.9565 0.2254 +-0.270598 0.92388 0.270598 0.125 0.875 -0.185 0.9565 0.2254 +-0.51328 -0.382683 0.768178 0.15625 0.375 -0.6073 -0.289 0.74 +-0.544895 -0.19509 0.815493 0.15625 0.4375 -0.6073 -0.289 0.74 +-0.69352 -0.19509 0.69352 0.125 0.4375 -0.6073 -0.289 0.74 +-0.51328 -0.382683 0.768178 0.15625 0.375 -0.6073 -0.289 0.74 +-0.69352 -0.19509 0.69352 0.125 0.4375 -0.6073 -0.289 0.74 +-0.653281 -0.382683 0.653281 0.125 0.375 -0.6073 -0.289 0.74 +-0.308658 0.83147 0.461939 0.15625 0.8125 -0.3002 0.881 0.3658 +-0.212608 0.92388 0.31819 0.15625 0.875 -0.3002 0.881 0.3658 +-0.270598 0.92388 0.270598 0.125 0.875 -0.3002 0.881 0.3658 +-0.308658 0.83147 0.461939 0.15625 0.8125 -0.3002 0.881 0.3658 +-0.270598 0.92388 0.270598 0.125 0.875 -0.3002 0.881 0.3658 +-0.392847 0.83147 0.392847 0.125 0.8125 -0.3002 0.881 0.3658 +-0.46194 -0.55557 0.691341 0.15625 0.3125 -0.5601 -0.4696 0.6825 +-0.51328 -0.382683 0.768178 0.15625 0.375 -0.5601 -0.4696 0.6825 +-0.653281 -0.382683 0.653281 0.125 0.375 -0.5601 -0.4696 0.6825 +-0.46194 -0.55557 0.691341 0.15625 0.3125 -0.5601 -0.4696 0.6825 +-0.653281 -0.382683 0.653281 0.125 0.375 -0.5601 -0.4696 0.6825 +-0.587938 -0.55557 0.587937 0.125 0.3125 -0.5601 -0.4696 0.6825 +-0.392847 0.707107 0.587938 0.15625 0.75 -0.4036 0.7715 0.4918 +-0.308658 0.83147 0.461939 0.15625 0.8125 -0.4036 0.7715 0.4918 +-0.392847 0.83147 0.392847 0.125 0.8125 -0.4036 0.7715 0.4918 +-0.392847 0.707107 0.587938 0.15625 0.75 -0.4036 0.7715 0.4918 +-0.392847 0.83147 0.392847 0.125 0.8125 -0.4036 0.7715 0.4918 +-0.5 0.707107 0.5 0.125 0.75 -0.4036 0.7715 0.4918 +-0.392847 -0.707107 0.587938 0.15625 0.25 -0.4913 -0.6326 0.5987 +-0.46194 -0.55557 0.691341 0.15625 0.3125 -0.4913 -0.6326 0.5987 +-0.587938 -0.55557 0.587937 0.125 0.3125 -0.4913 -0.6326 0.5987 +-0.392847 -0.707107 0.587938 0.15625 0.25 -0.4913 -0.6326 0.5987 +-0.587938 -0.55557 0.587937 0.125 0.3125 -0.4913 -0.6326 0.5987 +-0.5 -0.707107 0.5 0.125 0.25 -0.4913 -0.6326 0.5987 +-0.46194 0.55557 0.691341 0.15625 0.6875 -0.4913 0.6326 0.5987 +-0.392847 0.707107 0.587938 0.15625 0.75 -0.4913 0.6326 0.5987 +-0.5 0.707107 0.5 0.125 0.75 -0.4913 0.6326 0.5987 +-0.46194 0.55557 0.691341 0.15625 0.6875 -0.4913 0.6326 0.5987 +-0.5 0.707107 0.5 0.125 0.75 -0.4913 0.6326 0.5987 +-0.587938 0.55557 0.587937 0.125 0.6875 -0.4913 0.6326 0.5987 -0.270598 0.92388 0.270598 0.125 0.875 -0.2254 0.9565 0.185 -0.13795 0.980785 0.13795 0.125 0.9375 -0.2254 0.9565 0.185 -0.162212 0.980785 0.108386 0.09375 0.9375 -0.2254 0.9565 0.185 @@ -1892,48 +1850,48 @@ Data: -0.392847 -0.83147 0.392847 0.125 0.1875 -0.4918 -0.7715 0.4036 -0.587938 -0.707107 0.392847 0.09375 0.25 -0.4918 -0.7715 0.4036 -0.46194 -0.83147 0.308658 0.09375 0.1875 -0.4918 -0.7715 0.4036 --0.768177 -0.382683 0.51328 0.09375 0.375 -0.8443 -0.289 0.4513 --0.815493 -0.19509 0.544895 0.09375 0.4375 -0.8443 -0.289 0.4513 --0.906127 -0.19509 0.37533 0.0625 0.4375 -0.8443 -0.289 0.4513 --0.768177 -0.382683 0.51328 0.09375 0.375 -0.8443 -0.289 0.4513 --0.906127 -0.19509 0.37533 0.0625 0.4375 -0.8443 -0.289 0.4513 --0.853553 -0.382683 0.353553 0.0625 0.375 -0.8443 -0.289 0.4513 --0.46194 0.83147 0.308658 0.09375 0.8125 -0.4173 0.881 0.223 --0.31819 0.92388 0.212607 0.09375 0.875 -0.4173 0.881 0.223 --0.353553 0.92388 0.146447 0.0625 0.875 -0.4173 0.881 0.223 --0.46194 0.83147 0.308658 0.09375 0.8125 -0.4173 0.881 0.223 --0.353553 0.92388 0.146447 0.0625 0.875 -0.4173 0.881 0.223 --0.51328 0.83147 0.212607 0.0625 0.8125 -0.4173 0.881 0.223 --0.691341 -0.55557 0.461939 0.09375 0.3125 -0.7786 -0.4696 0.4162 --0.768177 -0.382683 0.51328 0.09375 0.375 -0.7786 -0.4696 0.4162 --0.853553 -0.382683 0.353553 0.0625 0.375 -0.7786 -0.4696 0.4162 --0.691341 -0.55557 0.461939 0.09375 0.3125 -0.7786 -0.4696 0.4162 --0.853553 -0.382683 0.353553 0.0625 0.375 -0.7786 -0.4696 0.4162 --0.768177 -0.55557 0.318189 0.0625 0.3125 -0.7786 -0.4696 0.4162 --0.587938 0.707107 0.392847 0.09375 0.75 -0.5611 0.7715 0.2999 --0.46194 0.83147 0.308658 0.09375 0.8125 -0.5611 0.7715 0.2999 --0.51328 0.83147 0.212607 0.0625 0.8125 -0.5611 0.7715 0.2999 --0.587938 0.707107 0.392847 0.09375 0.75 -0.5611 0.7715 0.2999 --0.51328 0.83147 0.212607 0.0625 0.8125 -0.5611 0.7715 0.2999 --0.653281 0.707107 0.270598 0.0625 0.75 -0.5611 0.7715 0.2999 --0.587938 -0.707107 0.392847 0.09375 0.25 -0.6831 -0.6326 0.3651 --0.691341 -0.55557 0.461939 0.09375 0.3125 -0.6831 -0.6326 0.3651 --0.768177 -0.55557 0.318189 0.0625 0.3125 -0.6831 -0.6326 0.3651 --0.587938 -0.707107 0.392847 0.09375 0.25 -0.6831 -0.6326 0.3651 --0.768177 -0.55557 0.318189 0.0625 0.3125 -0.6831 -0.6326 0.3651 --0.653281 -0.707107 0.270598 0.0625 0.25 -0.6831 -0.6326 0.3651 --0.691341 0.55557 0.461939 0.09375 0.6875 -0.6831 0.6326 0.3651 --0.587938 0.707107 0.392847 0.09375 0.75 -0.6831 0.6326 0.3651 --0.653281 0.707107 0.270598 0.0625 0.75 -0.6831 0.6326 0.3651 --0.691341 0.55557 0.461939 0.09375 0.6875 -0.6831 0.6326 0.3651 --0.653281 0.707107 0.270598 0.0625 0.75 -0.6831 0.6326 0.3651 --0.768177 0.55557 0.318189 0.0625 0.6875 -0.6831 0.6326 0.3651 --0.46194 -0.83147 0.308658 0.09375 0.1875 -0.5611 -0.7715 0.2999 --0.587938 -0.707107 0.392847 0.09375 0.25 -0.5611 -0.7715 0.2999 --0.653281 -0.707107 0.270598 0.0625 0.25 -0.5611 -0.7715 0.2999 --0.46194 -0.83147 0.308658 0.09375 0.1875 -0.5611 -0.7715 0.2999 --0.653281 -0.707107 0.270598 0.0625 0.25 -0.5611 -0.7715 0.2999 --0.51328 -0.83147 0.212607 0.0625 0.1875 -0.5611 -0.7715 0.2999 +-0.653281 0.382683 0.653281 0.125 0.625 -0.6825 0.4696 0.5601 +-0.587938 0.55557 0.587937 0.125 0.6875 -0.6825 0.4696 0.5601 +-0.691341 0.55557 0.461939 0.09375 0.6875 -0.6825 0.4696 0.5601 +-0.653281 0.382683 0.653281 0.125 0.625 -0.6825 0.4696 0.5601 +-0.691341 0.55557 0.461939 0.09375 0.6875 -0.6825 0.4696 0.5601 +-0.768177 0.382683 0.51328 0.09375 0.625 -0.6825 0.4696 0.5601 +-0.270598 -0.92388 0.270598 0.125 0.125 -0.3658 -0.881 0.3002 +-0.392847 -0.83147 0.392847 0.125 0.1875 -0.3658 -0.881 0.3002 +-0.46194 -0.83147 0.308658 0.09375 0.1875 -0.3658 -0.881 0.3002 +-0.270598 -0.92388 0.270598 0.125 0.125 -0.3658 -0.881 0.3002 +-0.46194 -0.83147 0.308658 0.09375 0.1875 -0.3658 -0.881 0.3002 +-0.31819 -0.92388 0.212607 0.09375 0.125 -0.3658 -0.881 0.3002 +-0.69352 0.19509 0.69352 0.125 0.5625 -0.74 0.289 0.6073 +-0.653281 0.382683 0.653281 0.125 0.625 -0.74 0.289 0.6073 +-0.768177 0.382683 0.51328 0.09375 0.625 -0.74 0.289 0.6073 +-0.69352 0.19509 0.69352 0.125 0.5625 -0.74 0.289 0.6073 +-0.768177 0.382683 0.51328 0.09375 0.625 -0.74 0.289 0.6073 +-0.815493 0.19509 0.544895 0.09375 0.5625 -0.74 0.289 0.6073 +-0.13795 -0.980785 0.13795 0.125 0.0625 -0.2254 -0.9565 0.185 +-0.270598 -0.92388 0.270598 0.125 0.125 -0.2254 -0.9565 0.185 +-0.31819 -0.92388 0.212607 0.09375 0.125 -0.2254 -0.9565 0.185 +-0.13795 -0.980785 0.13795 0.125 0.0625 -0.2254 -0.9565 0.185 +-0.31819 -0.92388 0.212607 0.09375 0.125 -0.2254 -0.9565 0.185 +-0.162212 -0.980785 0.108386 0.09375 0.0625 -0.2254 -0.9565 0.185 +-0.707106 0 0.707106 0.125 0.5 -0.7693 0.0975 0.6314 +-0.69352 0.19509 0.69352 0.125 0.5625 -0.7693 0.0975 0.6314 +-0.815493 0.19509 0.544895 0.09375 0.5625 -0.7693 0.0975 0.6314 +-0.707106 0 0.707106 0.125 0.5 -0.7693 0.0975 0.6314 +-0.815493 0.19509 0.544895 0.09375 0.5625 -0.7693 0.0975 0.6314 +-0.831469 0 0.555569 0.09375 0.5 -0.7693 0.0975 0.6314 +-0.13795 0.980785 0.13795 0.125 0.9375 -0.0761 0.9951 0.0625 +0 1 0 0.109375 1 -0.0761 0.9951 0.0625 +-0.162212 0.980785 0.108386 0.09375 0.9375 -0.0761 0.9951 0.0625 +0 -1 0 0.109375 0 -0.0761 -0.9951 0.0625 +-0.13795 -0.980785 0.13795 0.125 0.0625 -0.0761 -0.9951 0.0625 +-0.162212 -0.980785 0.108386 0.09375 0.0625 -0.0761 -0.9951 0.0625 +-0.69352 -0.19509 0.69352 0.125 0.4375 -0.7693 -0.0975 0.6314 +-0.707106 0 0.707106 0.125 0.5 -0.7693 -0.0975 0.6314 +-0.831469 0 0.555569 0.09375 0.5 -0.7693 -0.0975 0.6314 +-0.69352 -0.19509 0.69352 0.125 0.4375 -0.7693 -0.0975 0.6314 +-0.831469 0 0.555569 0.09375 0.5 -0.7693 -0.0975 0.6314 +-0.815493 -0.19509 0.544895 0.09375 0.4375 -0.7693 -0.0975 0.6314 -0.768177 0.382683 0.51328 0.09375 0.625 -0.7786 0.4696 0.4162 -0.691341 0.55557 0.461939 0.09375 0.6875 -0.7786 0.4696 0.4162 -0.768177 0.55557 0.318189 0.0625 0.6875 -0.7786 0.4696 0.4162 @@ -1982,48 +1940,48 @@ Data: -0.31819 0.92388 0.212607 0.09375 0.875 -0.2571 0.9565 0.1374 -0.18024 0.980785 0.074658 0.0625 0.9375 -0.2571 0.9565 0.1374 -0.353553 0.92388 0.146447 0.0625 0.875 -0.2571 0.9565 0.1374 --0.353553 -0.92388 0.146447 0.0625 0.125 -0.4528 -0.881 0.1374 --0.51328 -0.83147 0.212607 0.0625 0.1875 -0.4528 -0.881 0.1374 --0.544895 -0.83147 0.108386 0.03125 0.1875 -0.4528 -0.881 0.1374 --0.353553 -0.92388 0.146447 0.0625 0.125 -0.4528 -0.881 0.1374 --0.544895 -0.83147 0.108386 0.03125 0.1875 -0.4528 -0.881 0.1374 --0.37533 -0.92388 0.074658 0.03125 0.125 -0.4528 -0.881 0.1374 --0.906127 0.19509 0.37533 0.0625 0.5625 -0.9161 0.289 0.2779 --0.853553 0.382683 0.353553 0.0625 0.625 -0.9161 0.289 0.2779 --0.906127 0.382683 0.18024 0.03125 0.625 -0.9161 0.289 0.2779 --0.906127 0.19509 0.37533 0.0625 0.5625 -0.9161 0.289 0.2779 --0.906127 0.382683 0.18024 0.03125 0.625 -0.9161 0.289 0.2779 --0.961939 0.19509 0.191341 0.03125 0.5625 -0.9161 0.289 0.2779 --0.18024 -0.980785 0.074658 0.0625 0.0625 -0.279 -0.9565 0.0846 --0.353553 -0.92388 0.146447 0.0625 0.125 -0.279 -0.9565 0.0846 --0.37533 -0.92388 0.074658 0.03125 0.125 -0.279 -0.9565 0.0846 --0.18024 -0.980785 0.074658 0.0625 0.0625 -0.279 -0.9565 0.0846 --0.37533 -0.92388 0.074658 0.03125 0.125 -0.279 -0.9565 0.0846 --0.191342 -0.980785 0.03806 0.03125 0.0625 -0.279 -0.9565 0.0846 --0.923879 0 0.382683 0.0625 0.5 -0.9524 0.0975 0.2889 --0.906127 0.19509 0.37533 0.0625 0.5625 -0.9524 0.0975 0.2889 --0.961939 0.19509 0.191341 0.03125 0.5625 -0.9524 0.0975 0.2889 --0.923879 0 0.382683 0.0625 0.5 -0.9524 0.0975 0.2889 --0.961939 0.19509 0.191341 0.03125 0.5625 -0.9524 0.0975 0.2889 --0.980784 0 0.19509 0.03125 0.5 -0.9524 0.0975 0.2889 --0.18024 0.980785 0.074658 0.0625 0.9375 -0.0942 0.9951 0.0286 -0 1 0 0.046875 1 -0.0942 0.9951 0.0286 --0.191342 0.980785 0.03806 0.03125 0.9375 -0.0942 0.9951 0.0286 -0 -1 0 0.046875 0 -0.0942 -0.9951 0.0286 --0.18024 -0.980785 0.074658 0.0625 0.0625 -0.0942 -0.9951 0.0286 --0.191342 -0.980785 0.03806 0.03125 0.0625 -0.0942 -0.9951 0.0286 --0.906127 -0.19509 0.37533 0.0625 0.4375 -0.9524 -0.0975 0.2889 --0.923879 0 0.382683 0.0625 0.5 -0.9524 -0.0975 0.2889 --0.980784 0 0.19509 0.03125 0.5 -0.9524 -0.0975 0.2889 --0.906127 -0.19509 0.37533 0.0625 0.4375 -0.9524 -0.0975 0.2889 --0.980784 0 0.19509 0.03125 0.5 -0.9524 -0.0975 0.2889 --0.961939 -0.19509 0.191341 0.03125 0.4375 -0.9524 -0.0975 0.2889 --0.353553 0.92388 0.146447 0.0625 0.875 -0.279 0.9565 0.0846 --0.18024 0.980785 0.074658 0.0625 0.9375 -0.279 0.9565 0.0846 --0.191342 0.980785 0.03806 0.03125 0.9375 -0.279 0.9565 0.0846 --0.353553 0.92388 0.146447 0.0625 0.875 -0.279 0.9565 0.0846 --0.191342 0.980785 0.03806 0.03125 0.9375 -0.279 0.9565 0.0846 --0.37533 0.92388 0.074658 0.03125 0.875 -0.279 0.9565 0.0846 +-0.768177 -0.382683 0.51328 0.09375 0.375 -0.8443 -0.289 0.4513 +-0.815493 -0.19509 0.544895 0.09375 0.4375 -0.8443 -0.289 0.4513 +-0.906127 -0.19509 0.37533 0.0625 0.4375 -0.8443 -0.289 0.4513 +-0.768177 -0.382683 0.51328 0.09375 0.375 -0.8443 -0.289 0.4513 +-0.906127 -0.19509 0.37533 0.0625 0.4375 -0.8443 -0.289 0.4513 +-0.853553 -0.382683 0.353553 0.0625 0.375 -0.8443 -0.289 0.4513 +-0.46194 0.83147 0.308658 0.09375 0.8125 -0.4173 0.881 0.223 +-0.31819 0.92388 0.212607 0.09375 0.875 -0.4173 0.881 0.223 +-0.353553 0.92388 0.146447 0.0625 0.875 -0.4173 0.881 0.223 +-0.46194 0.83147 0.308658 0.09375 0.8125 -0.4173 0.881 0.223 +-0.353553 0.92388 0.146447 0.0625 0.875 -0.4173 0.881 0.223 +-0.51328 0.83147 0.212607 0.0625 0.8125 -0.4173 0.881 0.223 +-0.691341 -0.55557 0.461939 0.09375 0.3125 -0.7786 -0.4696 0.4162 +-0.768177 -0.382683 0.51328 0.09375 0.375 -0.7786 -0.4696 0.4162 +-0.853553 -0.382683 0.353553 0.0625 0.375 -0.7786 -0.4696 0.4162 +-0.691341 -0.55557 0.461939 0.09375 0.3125 -0.7786 -0.4696 0.4162 +-0.853553 -0.382683 0.353553 0.0625 0.375 -0.7786 -0.4696 0.4162 +-0.768177 -0.55557 0.318189 0.0625 0.3125 -0.7786 -0.4696 0.4162 +-0.587938 0.707107 0.392847 0.09375 0.75 -0.5611 0.7715 0.2999 +-0.46194 0.83147 0.308658 0.09375 0.8125 -0.5611 0.7715 0.2999 +-0.51328 0.83147 0.212607 0.0625 0.8125 -0.5611 0.7715 0.2999 +-0.587938 0.707107 0.392847 0.09375 0.75 -0.5611 0.7715 0.2999 +-0.51328 0.83147 0.212607 0.0625 0.8125 -0.5611 0.7715 0.2999 +-0.653281 0.707107 0.270598 0.0625 0.75 -0.5611 0.7715 0.2999 +-0.587938 -0.707107 0.392847 0.09375 0.25 -0.6831 -0.6326 0.3651 +-0.691341 -0.55557 0.461939 0.09375 0.3125 -0.6831 -0.6326 0.3651 +-0.768177 -0.55557 0.318189 0.0625 0.3125 -0.6831 -0.6326 0.3651 +-0.587938 -0.707107 0.392847 0.09375 0.25 -0.6831 -0.6326 0.3651 +-0.768177 -0.55557 0.318189 0.0625 0.3125 -0.6831 -0.6326 0.3651 +-0.653281 -0.707107 0.270598 0.0625 0.25 -0.6831 -0.6326 0.3651 +-0.691341 0.55557 0.461939 0.09375 0.6875 -0.6831 0.6326 0.3651 +-0.587938 0.707107 0.392847 0.09375 0.75 -0.6831 0.6326 0.3651 +-0.653281 0.707107 0.270598 0.0625 0.75 -0.6831 0.6326 0.3651 +-0.691341 0.55557 0.461939 0.09375 0.6875 -0.6831 0.6326 0.3651 +-0.653281 0.707107 0.270598 0.0625 0.75 -0.6831 0.6326 0.3651 +-0.768177 0.55557 0.318189 0.0625 0.6875 -0.6831 0.6326 0.3651 +-0.46194 -0.83147 0.308658 0.09375 0.1875 -0.5611 -0.7715 0.2999 +-0.587938 -0.707107 0.392847 0.09375 0.25 -0.5611 -0.7715 0.2999 +-0.653281 -0.707107 0.270598 0.0625 0.25 -0.5611 -0.7715 0.2999 +-0.46194 -0.83147 0.308658 0.09375 0.1875 -0.5611 -0.7715 0.2999 +-0.653281 -0.707107 0.270598 0.0625 0.25 -0.5611 -0.7715 0.2999 +-0.51328 -0.83147 0.212607 0.0625 0.1875 -0.5611 -0.7715 0.2999 -0.853553 -0.382683 0.353553 0.0625 0.375 -0.9161 -0.289 0.2779 -0.906127 -0.19509 0.37533 0.0625 0.4375 -0.9161 -0.289 0.2779 -0.961939 -0.19509 0.191341 0.03125 0.4375 -0.9161 -0.289 0.2779 @@ -2072,48 +2030,48 @@ Data: -0.853553 0.382683 0.353553 0.0625 0.625 -0.8448 0.4696 0.2563 -0.815493 0.55557 0.162211 0.03125 0.6875 -0.8448 0.4696 0.2563 -0.906127 0.382683 0.18024 0.03125 0.625 -0.8448 0.4696 0.2563 --0.544895 0.83147 0.108386 0.03125 0.8125 -0.4709 0.881 0.0464 --0.37533 0.92388 0.074658 0.03125 0.875 -0.4709 0.881 0.0464 --0.382683 0.92388 -0 0 0.875 -0.4709 0.881 0.0464 --0.544895 0.83147 0.108386 0.03125 0.8125 -0.4709 0.881 0.0464 --0.382683 0.92388 -0 0 0.875 -0.4709 0.881 0.0464 --0.55557 0.83147 -0 0 0.8125 -0.4709 0.881 0.0464 --0.815493 -0.55557 0.162211 0.03125 0.3125 -0.8786 -0.4696 0.0865 --0.906127 -0.382683 0.18024 0.03125 0.375 -0.8786 -0.4696 0.0865 --0.923879 -0.382683 -0 0 0.375 -0.8786 -0.4696 0.0865 --0.815493 -0.55557 0.162211 0.03125 0.3125 -0.8786 -0.4696 0.0865 --0.923879 -0.382683 -0 0 0.375 -0.8786 -0.4696 0.0865 --0.831469 -0.55557 -0 0 0.3125 -0.8786 -0.4696 0.0865 --0.69352 0.707107 0.13795 0.03125 0.75 -0.6332 0.7715 0.0624 --0.544895 0.83147 0.108386 0.03125 0.8125 -0.6332 0.7715 0.0624 --0.55557 0.83147 -0 0 0.8125 -0.6332 0.7715 0.0624 --0.69352 0.707107 0.13795 0.03125 0.75 -0.6332 0.7715 0.0624 --0.55557 0.83147 -0 0 0.8125 -0.6332 0.7715 0.0624 --0.707107 0.707107 -0 0 0.75 -0.6332 0.7715 0.0624 --0.69352 -0.707107 0.13795 0.03125 0.25 -0.7708 -0.6326 0.0759 --0.815493 -0.55557 0.162211 0.03125 0.3125 -0.7708 -0.6326 0.0759 --0.831469 -0.55557 -0 0 0.3125 -0.7708 -0.6326 0.0759 --0.69352 -0.707107 0.13795 0.03125 0.25 -0.7708 -0.6326 0.0759 --0.831469 -0.55557 -0 0 0.3125 -0.7708 -0.6326 0.0759 --0.707107 -0.707107 -0 0 0.25 -0.7708 -0.6326 0.0759 --0.815493 0.55557 0.162211 0.03125 0.6875 -0.7708 0.6326 0.0759 --0.69352 0.707107 0.13795 0.03125 0.75 -0.7708 0.6326 0.0759 --0.707107 0.707107 -0 0 0.75 -0.7708 0.6326 0.0759 --0.815493 0.55557 0.162211 0.03125 0.6875 -0.7708 0.6326 0.0759 --0.707107 0.707107 -0 0 0.75 -0.7708 0.6326 0.0759 --0.831469 0.55557 -0 0 0.6875 -0.7708 0.6326 0.0759 --0.544895 -0.83147 0.108386 0.03125 0.1875 -0.6332 -0.7715 0.0624 --0.69352 -0.707107 0.13795 0.03125 0.25 -0.6332 -0.7715 0.0624 --0.707107 -0.707107 -0 0 0.25 -0.6332 -0.7715 0.0624 --0.544895 -0.83147 0.108386 0.03125 0.1875 -0.6332 -0.7715 0.0624 --0.707107 -0.707107 -0 0 0.25 -0.6332 -0.7715 0.0624 --0.55557 -0.83147 -0 0 0.1875 -0.6332 -0.7715 0.0624 --0.906127 0.382683 0.18024 0.03125 0.625 -0.8786 0.4696 0.0865 --0.815493 0.55557 0.162211 0.03125 0.6875 -0.8786 0.4696 0.0865 --0.831469 0.55557 -0 0 0.6875 -0.8786 0.4696 0.0865 --0.906127 0.382683 0.18024 0.03125 0.625 -0.8786 0.4696 0.0865 --0.831469 0.55557 -0 0 0.6875 -0.8786 0.4696 0.0865 --0.923879 0.382683 -0 0 0.625 -0.8786 0.4696 0.0865 +-0.353553 -0.92388 0.146447 0.0625 0.125 -0.4528 -0.881 0.1374 +-0.51328 -0.83147 0.212607 0.0625 0.1875 -0.4528 -0.881 0.1374 +-0.544895 -0.83147 0.108386 0.03125 0.1875 -0.4528 -0.881 0.1374 +-0.353553 -0.92388 0.146447 0.0625 0.125 -0.4528 -0.881 0.1374 +-0.544895 -0.83147 0.108386 0.03125 0.1875 -0.4528 -0.881 0.1374 +-0.37533 -0.92388 0.074658 0.03125 0.125 -0.4528 -0.881 0.1374 +-0.906127 0.19509 0.37533 0.0625 0.5625 -0.9161 0.289 0.2779 +-0.853553 0.382683 0.353553 0.0625 0.625 -0.9161 0.289 0.2779 +-0.906127 0.382683 0.18024 0.03125 0.625 -0.9161 0.289 0.2779 +-0.906127 0.19509 0.37533 0.0625 0.5625 -0.9161 0.289 0.2779 +-0.906127 0.382683 0.18024 0.03125 0.625 -0.9161 0.289 0.2779 +-0.961939 0.19509 0.191341 0.03125 0.5625 -0.9161 0.289 0.2779 +-0.18024 -0.980785 0.074658 0.0625 0.0625 -0.279 -0.9565 0.0846 +-0.353553 -0.92388 0.146447 0.0625 0.125 -0.279 -0.9565 0.0846 +-0.37533 -0.92388 0.074658 0.03125 0.125 -0.279 -0.9565 0.0846 +-0.18024 -0.980785 0.074658 0.0625 0.0625 -0.279 -0.9565 0.0846 +-0.37533 -0.92388 0.074658 0.03125 0.125 -0.279 -0.9565 0.0846 +-0.191342 -0.980785 0.03806 0.03125 0.0625 -0.279 -0.9565 0.0846 +-0.923879 0 0.382683 0.0625 0.5 -0.9524 0.0975 0.2889 +-0.906127 0.19509 0.37533 0.0625 0.5625 -0.9524 0.0975 0.2889 +-0.961939 0.19509 0.191341 0.03125 0.5625 -0.9524 0.0975 0.2889 +-0.923879 0 0.382683 0.0625 0.5 -0.9524 0.0975 0.2889 +-0.961939 0.19509 0.191341 0.03125 0.5625 -0.9524 0.0975 0.2889 +-0.980784 0 0.19509 0.03125 0.5 -0.9524 0.0975 0.2889 +-0.18024 0.980785 0.074658 0.0625 0.9375 -0.0942 0.9951 0.0286 +0 1 0 0.046875 1 -0.0942 0.9951 0.0286 +-0.191342 0.980785 0.03806 0.03125 0.9375 -0.0942 0.9951 0.0286 +0 -1 0 0.046875 0 -0.0942 -0.9951 0.0286 +-0.18024 -0.980785 0.074658 0.0625 0.0625 -0.0942 -0.9951 0.0286 +-0.191342 -0.980785 0.03806 0.03125 0.0625 -0.0942 -0.9951 0.0286 +-0.906127 -0.19509 0.37533 0.0625 0.4375 -0.9524 -0.0975 0.2889 +-0.923879 0 0.382683 0.0625 0.5 -0.9524 -0.0975 0.2889 +-0.980784 0 0.19509 0.03125 0.5 -0.9524 -0.0975 0.2889 +-0.906127 -0.19509 0.37533 0.0625 0.4375 -0.9524 -0.0975 0.2889 +-0.980784 0 0.19509 0.03125 0.5 -0.9524 -0.0975 0.2889 +-0.961939 -0.19509 0.191341 0.03125 0.4375 -0.9524 -0.0975 0.2889 +-0.353553 0.92388 0.146447 0.0625 0.875 -0.279 0.9565 0.0846 +-0.18024 0.980785 0.074658 0.0625 0.9375 -0.279 0.9565 0.0846 +-0.191342 0.980785 0.03806 0.03125 0.9375 -0.279 0.9565 0.0846 +-0.353553 0.92388 0.146447 0.0625 0.875 -0.279 0.9565 0.0846 +-0.191342 0.980785 0.03806 0.03125 0.9375 -0.279 0.9565 0.0846 +-0.37533 0.92388 0.074658 0.03125 0.875 -0.279 0.9565 0.0846 -0.37533 -0.92388 0.074658 0.03125 0.125 -0.4709 -0.881 0.0464 -0.544895 -0.83147 0.108386 0.03125 0.1875 -0.4709 -0.881 0.0464 -0.55557 -0.83147 -0 0 0.1875 -0.4709 -0.881 0.0464 @@ -2162,48 +2120,48 @@ Data: -0.906127 -0.382683 0.18024 0.03125 0.375 -0.9527 -0.289 0.0938 -0.980785 -0.19509 -0 0 0.4375 -0.9527 -0.289 0.0938 -0.923879 -0.382683 -0 0 0.375 -0.9527 -0.289 0.0938 --0.980785 0.19509 -0 1 0.5625 -0.9527 0.289 -0.0938 --0.923879 0.382683 -0 1 0.625 -0.9527 0.289 -0.0938 --0.906127 0.382683 -0.18024 0.96875 0.625 -0.9527 0.289 -0.0938 --0.980785 0.19509 -0 1 0.5625 -0.9527 0.289 -0.0938 --0.906127 0.382683 -0.18024 0.96875 0.625 -0.9527 0.289 -0.0938 --0.961939 0.19509 -0.191342 0.96875 0.5625 -0.9527 0.289 -0.0938 --0.19509 -0.980785 -0 1 0.0625 -0.2902 -0.9565 -0.0286 --0.382683 -0.92388 -0 1 0.125 -0.2902 -0.9565 -0.0286 --0.37533 -0.92388 -0.074658 0.96875 0.125 -0.2902 -0.9565 -0.0286 --0.19509 -0.980785 -0 1 0.0625 -0.2902 -0.9565 -0.0286 --0.37533 -0.92388 -0.074658 0.96875 0.125 -0.2902 -0.9565 -0.0286 --0.191342 -0.980785 -0.03806 0.96875 0.0625 -0.2902 -0.9565 -0.0286 --0.999999 0 -0 1 0.5 -0.9904 0.0975 -0.0976 --0.980785 0.19509 -0 1 0.5625 -0.9904 0.0975 -0.0976 --0.961939 0.19509 -0.191342 0.96875 0.5625 -0.9904 0.0975 -0.0976 --0.999999 0 -0 1 0.5 -0.9904 0.0975 -0.0976 --0.961939 0.19509 -0.191342 0.96875 0.5625 -0.9904 0.0975 -0.0976 --0.980784 0 -0.195091 0.96875 0.5 -0.9904 0.0975 -0.0976 --0.19509 0.980785 -0 1 0.9375 -0.098 0.9951 -0.0097 -0 1 0 0.984375 1 -0.098 0.9951 -0.0097 --0.191342 0.980785 -0.03806 0.96875 0.9375 -0.098 0.9951 -0.0097 -0 -1 0 0.984375 0 -0.098 -0.9951 -0.0097 --0.19509 -0.980785 -0 1 0.0625 -0.098 -0.9951 -0.0097 --0.191342 -0.980785 -0.03806 0.96875 0.0625 -0.098 -0.9951 -0.0097 --0.980785 -0.19509 -0 1 0.4375 -0.9904 -0.0975 -0.0976 --0.999999 0 -0 1 0.5 -0.9904 -0.0975 -0.0976 --0.980784 0 -0.195091 0.96875 0.5 -0.9904 -0.0975 -0.0976 --0.980785 -0.19509 -0 1 0.4375 -0.9904 -0.0975 -0.0976 --0.980784 0 -0.195091 0.96875 0.5 -0.9904 -0.0975 -0.0976 --0.961939 -0.19509 -0.191342 0.96875 0.4375 -0.9904 -0.0975 -0.0976 --0.382683 0.92388 -0 1 0.875 -0.2902 0.9565 -0.0286 --0.19509 0.980785 -0 1 0.9375 -0.2902 0.9565 -0.0286 --0.191342 0.980785 -0.03806 0.96875 0.9375 -0.2902 0.9565 -0.0286 --0.382683 0.92388 -0 1 0.875 -0.2902 0.9565 -0.0286 --0.191342 0.980785 -0.03806 0.96875 0.9375 -0.2902 0.9565 -0.0286 --0.37533 0.92388 -0.074658 0.96875 0.875 -0.2902 0.9565 -0.0286 --0.923879 -0.382683 -0 1 0.375 -0.9527 -0.289 -0.0938 --0.980785 -0.19509 -0 1 0.4375 -0.9527 -0.289 -0.0938 --0.961939 -0.19509 -0.191342 0.96875 0.4375 -0.9527 -0.289 -0.0938 --0.923879 -0.382683 -0 1 0.375 -0.9527 -0.289 -0.0938 --0.961939 -0.19509 -0.191342 0.96875 0.4375 -0.9527 -0.289 -0.0938 --0.906127 -0.382683 -0.18024 0.96875 0.375 -0.9527 -0.289 -0.0938 +-0.544895 0.83147 0.108386 0.03125 0.8125 -0.4709 0.881 0.0464 +-0.37533 0.92388 0.074658 0.03125 0.875 -0.4709 0.881 0.0464 +-0.382683 0.92388 -0 0 0.875 -0.4709 0.881 0.0464 +-0.544895 0.83147 0.108386 0.03125 0.8125 -0.4709 0.881 0.0464 +-0.382683 0.92388 -0 0 0.875 -0.4709 0.881 0.0464 +-0.55557 0.83147 -0 0 0.8125 -0.4709 0.881 0.0464 +-0.815493 -0.55557 0.162211 0.03125 0.3125 -0.8786 -0.4696 0.0865 +-0.906127 -0.382683 0.18024 0.03125 0.375 -0.8786 -0.4696 0.0865 +-0.923879 -0.382683 -0 0 0.375 -0.8786 -0.4696 0.0865 +-0.815493 -0.55557 0.162211 0.03125 0.3125 -0.8786 -0.4696 0.0865 +-0.923879 -0.382683 -0 0 0.375 -0.8786 -0.4696 0.0865 +-0.831469 -0.55557 -0 0 0.3125 -0.8786 -0.4696 0.0865 +-0.69352 0.707107 0.13795 0.03125 0.75 -0.6332 0.7715 0.0624 +-0.544895 0.83147 0.108386 0.03125 0.8125 -0.6332 0.7715 0.0624 +-0.55557 0.83147 -0 0 0.8125 -0.6332 0.7715 0.0624 +-0.69352 0.707107 0.13795 0.03125 0.75 -0.6332 0.7715 0.0624 +-0.55557 0.83147 -0 0 0.8125 -0.6332 0.7715 0.0624 +-0.707107 0.707107 -0 0 0.75 -0.6332 0.7715 0.0624 +-0.69352 -0.707107 0.13795 0.03125 0.25 -0.7708 -0.6326 0.0759 +-0.815493 -0.55557 0.162211 0.03125 0.3125 -0.7708 -0.6326 0.0759 +-0.831469 -0.55557 -0 0 0.3125 -0.7708 -0.6326 0.0759 +-0.69352 -0.707107 0.13795 0.03125 0.25 -0.7708 -0.6326 0.0759 +-0.831469 -0.55557 -0 0 0.3125 -0.7708 -0.6326 0.0759 +-0.707107 -0.707107 -0 0 0.25 -0.7708 -0.6326 0.0759 +-0.815493 0.55557 0.162211 0.03125 0.6875 -0.7708 0.6326 0.0759 +-0.69352 0.707107 0.13795 0.03125 0.75 -0.7708 0.6326 0.0759 +-0.707107 0.707107 -0 0 0.75 -0.7708 0.6326 0.0759 +-0.815493 0.55557 0.162211 0.03125 0.6875 -0.7708 0.6326 0.0759 +-0.707107 0.707107 -0 0 0.75 -0.7708 0.6326 0.0759 +-0.831469 0.55557 -0 0 0.6875 -0.7708 0.6326 0.0759 +-0.544895 -0.83147 0.108386 0.03125 0.1875 -0.6332 -0.7715 0.0624 +-0.69352 -0.707107 0.13795 0.03125 0.25 -0.6332 -0.7715 0.0624 +-0.707107 -0.707107 -0 0 0.25 -0.6332 -0.7715 0.0624 +-0.544895 -0.83147 0.108386 0.03125 0.1875 -0.6332 -0.7715 0.0624 +-0.707107 -0.707107 -0 0 0.25 -0.6332 -0.7715 0.0624 +-0.55557 -0.83147 -0 0 0.1875 -0.6332 -0.7715 0.0624 +-0.906127 0.382683 0.18024 0.03125 0.625 -0.8786 0.4696 0.0865 +-0.815493 0.55557 0.162211 0.03125 0.6875 -0.8786 0.4696 0.0865 +-0.831469 0.55557 -0 0 0.6875 -0.8786 0.4696 0.0865 +-0.906127 0.382683 0.18024 0.03125 0.625 -0.8786 0.4696 0.0865 +-0.831469 0.55557 -0 0 0.6875 -0.8786 0.4696 0.0865 +-0.923879 0.382683 -0 0 0.625 -0.8786 0.4696 0.0865 -0.55557 0.83147 -0 1 0.8125 -0.4709 0.881 -0.0464 -0.382683 0.92388 -0 1 0.875 -0.4709 0.881 -0.0464 -0.37533 0.92388 -0.074658 0.96875 0.875 -0.4709 0.881 -0.0464 @@ -2252,48 +2210,48 @@ Data: -0.382683 -0.92388 -0 1 0.125 -0.4709 -0.881 -0.0464 -0.544895 -0.83147 -0.108386 0.96875 0.1875 -0.4709 -0.881 -0.0464 -0.37533 -0.92388 -0.074658 0.96875 0.125 -0.4709 -0.881 -0.0464 --0.815493 -0.55557 -0.162212 0.96875 0.3125 -0.8448 -0.4696 -0.2563 --0.906127 -0.382683 -0.18024 0.96875 0.375 -0.8448 -0.4696 -0.2563 --0.853553 -0.382683 -0.353553 0.9375 0.375 -0.8448 -0.4696 -0.2563 --0.815493 -0.55557 -0.162212 0.96875 0.3125 -0.8448 -0.4696 -0.2563 --0.853553 -0.382683 -0.353553 0.9375 0.375 -0.8448 -0.4696 -0.2563 --0.768177 -0.55557 -0.31819 0.9375 0.3125 -0.8448 -0.4696 -0.2563 --0.69352 0.707107 -0.13795 0.96875 0.75 -0.6088 0.7715 -0.1847 --0.544895 0.83147 -0.108386 0.96875 0.8125 -0.6088 0.7715 -0.1847 --0.513279 0.83147 -0.212607 0.9375 0.8125 -0.6088 0.7715 -0.1847 --0.69352 0.707107 -0.13795 0.96875 0.75 -0.6088 0.7715 -0.1847 --0.513279 0.83147 -0.212607 0.9375 0.8125 -0.6088 0.7715 -0.1847 --0.653281 0.707107 -0.270598 0.9375 0.75 -0.6088 0.7715 -0.1847 --0.69352 -0.707107 -0.13795 0.96875 0.25 -0.7412 -0.6326 -0.2248 --0.815493 -0.55557 -0.162212 0.96875 0.3125 -0.7412 -0.6326 -0.2248 --0.768177 -0.55557 -0.31819 0.9375 0.3125 -0.7412 -0.6326 -0.2248 --0.69352 -0.707107 -0.13795 0.96875 0.25 -0.7412 -0.6326 -0.2248 --0.768177 -0.55557 -0.31819 0.9375 0.3125 -0.7412 -0.6326 -0.2248 --0.653281 -0.707107 -0.270598 0.9375 0.25 -0.7412 -0.6326 -0.2248 --0.815493 0.55557 -0.162212 0.96875 0.6875 -0.7412 0.6326 -0.2248 --0.69352 0.707107 -0.13795 0.96875 0.75 -0.7412 0.6326 -0.2248 --0.653281 0.707107 -0.270598 0.9375 0.75 -0.7412 0.6326 -0.2248 --0.815493 0.55557 -0.162212 0.96875 0.6875 -0.7412 0.6326 -0.2248 --0.653281 0.707107 -0.270598 0.9375 0.75 -0.7412 0.6326 -0.2248 --0.768177 0.55557 -0.31819 0.9375 0.6875 -0.7412 0.6326 -0.2248 --0.544895 -0.83147 -0.108386 0.96875 0.1875 -0.6088 -0.7715 -0.1847 --0.69352 -0.707107 -0.13795 0.96875 0.25 -0.6088 -0.7715 -0.1847 --0.653281 -0.707107 -0.270598 0.9375 0.25 -0.6088 -0.7715 -0.1847 --0.544895 -0.83147 -0.108386 0.96875 0.1875 -0.6088 -0.7715 -0.1847 --0.653281 -0.707107 -0.270598 0.9375 0.25 -0.6088 -0.7715 -0.1847 --0.513279 -0.83147 -0.212607 0.9375 0.1875 -0.6088 -0.7715 -0.1847 --0.906127 0.382683 -0.18024 0.96875 0.625 -0.8448 0.4696 -0.2563 --0.815493 0.55557 -0.162212 0.96875 0.6875 -0.8448 0.4696 -0.2563 --0.768177 0.55557 -0.31819 0.9375 0.6875 -0.8448 0.4696 -0.2563 --0.906127 0.382683 -0.18024 0.96875 0.625 -0.8448 0.4696 -0.2563 --0.768177 0.55557 -0.31819 0.9375 0.6875 -0.8448 0.4696 -0.2563 --0.853553 0.382683 -0.353553 0.9375 0.625 -0.8448 0.4696 -0.2563 --0.37533 -0.92388 -0.074658 0.96875 0.125 -0.4528 -0.881 -0.1374 --0.544895 -0.83147 -0.108386 0.96875 0.1875 -0.4528 -0.881 -0.1374 --0.513279 -0.83147 -0.212607 0.9375 0.1875 -0.4528 -0.881 -0.1374 --0.37533 -0.92388 -0.074658 0.96875 0.125 -0.4528 -0.881 -0.1374 --0.513279 -0.83147 -0.212607 0.9375 0.1875 -0.4528 -0.881 -0.1374 --0.353553 -0.92388 -0.146447 0.9375 0.125 -0.4528 -0.881 -0.1374 +-0.980785 0.19509 -0 1 0.5625 -0.9527 0.289 -0.0938 +-0.923879 0.382683 -0 1 0.625 -0.9527 0.289 -0.0938 +-0.906127 0.382683 -0.18024 0.96875 0.625 -0.9527 0.289 -0.0938 +-0.980785 0.19509 -0 1 0.5625 -0.9527 0.289 -0.0938 +-0.906127 0.382683 -0.18024 0.96875 0.625 -0.9527 0.289 -0.0938 +-0.961939 0.19509 -0.191342 0.96875 0.5625 -0.9527 0.289 -0.0938 +-0.19509 -0.980785 -0 1 0.0625 -0.2902 -0.9565 -0.0286 +-0.382683 -0.92388 -0 1 0.125 -0.2902 -0.9565 -0.0286 +-0.37533 -0.92388 -0.074658 0.96875 0.125 -0.2902 -0.9565 -0.0286 +-0.19509 -0.980785 -0 1 0.0625 -0.2902 -0.9565 -0.0286 +-0.37533 -0.92388 -0.074658 0.96875 0.125 -0.2902 -0.9565 -0.0286 +-0.191342 -0.980785 -0.03806 0.96875 0.0625 -0.2902 -0.9565 -0.0286 +-0.999999 0 -0 1 0.5 -0.9904 0.0975 -0.0976 +-0.980785 0.19509 -0 1 0.5625 -0.9904 0.0975 -0.0976 +-0.961939 0.19509 -0.191342 0.96875 0.5625 -0.9904 0.0975 -0.0976 +-0.999999 0 -0 1 0.5 -0.9904 0.0975 -0.0976 +-0.961939 0.19509 -0.191342 0.96875 0.5625 -0.9904 0.0975 -0.0976 +-0.980784 0 -0.195091 0.96875 0.5 -0.9904 0.0975 -0.0976 +-0.19509 0.980785 -0 1 0.9375 -0.098 0.9951 -0.0097 +0 1 0 0.984375 1 -0.098 0.9951 -0.0097 +-0.191342 0.980785 -0.03806 0.96875 0.9375 -0.098 0.9951 -0.0097 +0 -1 0 0.984375 0 -0.098 -0.9951 -0.0097 +-0.19509 -0.980785 -0 1 0.0625 -0.098 -0.9951 -0.0097 +-0.191342 -0.980785 -0.03806 0.96875 0.0625 -0.098 -0.9951 -0.0097 +-0.980785 -0.19509 -0 1 0.4375 -0.9904 -0.0975 -0.0976 +-0.999999 0 -0 1 0.5 -0.9904 -0.0975 -0.0976 +-0.980784 0 -0.195091 0.96875 0.5 -0.9904 -0.0975 -0.0976 +-0.980785 -0.19509 -0 1 0.4375 -0.9904 -0.0975 -0.0976 +-0.980784 0 -0.195091 0.96875 0.5 -0.9904 -0.0975 -0.0976 +-0.961939 -0.19509 -0.191342 0.96875 0.4375 -0.9904 -0.0975 -0.0976 +-0.382683 0.92388 -0 1 0.875 -0.2902 0.9565 -0.0286 +-0.19509 0.980785 -0 1 0.9375 -0.2902 0.9565 -0.0286 +-0.191342 0.980785 -0.03806 0.96875 0.9375 -0.2902 0.9565 -0.0286 +-0.382683 0.92388 -0 1 0.875 -0.2902 0.9565 -0.0286 +-0.191342 0.980785 -0.03806 0.96875 0.9375 -0.2902 0.9565 -0.0286 +-0.37533 0.92388 -0.074658 0.96875 0.875 -0.2902 0.9565 -0.0286 +-0.923879 -0.382683 -0 1 0.375 -0.9527 -0.289 -0.0938 +-0.980785 -0.19509 -0 1 0.4375 -0.9527 -0.289 -0.0938 +-0.961939 -0.19509 -0.191342 0.96875 0.4375 -0.9527 -0.289 -0.0938 +-0.923879 -0.382683 -0 1 0.375 -0.9527 -0.289 -0.0938 +-0.961939 -0.19509 -0.191342 0.96875 0.4375 -0.9527 -0.289 -0.0938 +-0.906127 -0.382683 -0.18024 0.96875 0.375 -0.9527 -0.289 -0.0938 -0.961939 0.19509 -0.191342 0.96875 0.5625 -0.9161 0.289 -0.2779 -0.906127 0.382683 -0.18024 0.96875 0.625 -0.9161 0.289 -0.2779 -0.853553 0.382683 -0.353553 0.9375 0.625 -0.9161 0.289 -0.2779 @@ -2342,48 +2300,48 @@ Data: -0.544895 0.83147 -0.108386 0.96875 0.8125 -0.4528 0.881 -0.1374 -0.353553 0.92388 -0.146447 0.9375 0.875 -0.4528 0.881 -0.1374 -0.513279 0.83147 -0.212607 0.9375 0.8125 -0.4528 0.881 -0.1374 --0.18024 -0.980785 -0.074658 0.9375 0.0625 -0.2571 -0.9565 -0.1374 --0.353553 -0.92388 -0.146447 0.9375 0.125 -0.2571 -0.9565 -0.1374 --0.318189 -0.92388 -0.212607 0.90625 0.125 -0.2571 -0.9565 -0.1374 --0.18024 -0.980785 -0.074658 0.9375 0.0625 -0.2571 -0.9565 -0.1374 --0.318189 -0.92388 -0.212607 0.90625 0.125 -0.2571 -0.9565 -0.1374 --0.162212 -0.980785 -0.108386 0.90625 0.0625 -0.2571 -0.9565 -0.1374 --0.923878 0 -0.382683 0.9375 0.5 -0.8777 0.0975 -0.4691 --0.906127 0.19509 -0.37533 0.9375 0.5625 -0.8777 0.0975 -0.4691 --0.815493 0.19509 -0.544895 0.90625 0.5625 -0.8777 0.0975 -0.4691 --0.923878 0 -0.382683 0.9375 0.5 -0.8777 0.0975 -0.4691 --0.815493 0.19509 -0.544895 0.90625 0.5625 -0.8777 0.0975 -0.4691 --0.831468 0 -0.55557 0.90625 0.5 -0.8777 0.0975 -0.4691 --0.18024 0.980785 -0.074658 0.9375 0.9375 -0.0869 0.9951 -0.0464 -0 1 0 0.921875 1 -0.0869 0.9951 -0.0464 --0.162212 0.980785 -0.108386 0.90625 0.9375 -0.0869 0.9951 -0.0464 -0 -1 0 0.921875 0 -0.0869 -0.9951 -0.0464 --0.18024 -0.980785 -0.074658 0.9375 0.0625 -0.0869 -0.9951 -0.0464 --0.162212 -0.980785 -0.108386 0.90625 0.0625 -0.0869 -0.9951 -0.0464 --0.906127 -0.19509 -0.37533 0.9375 0.4375 -0.8777 -0.0975 -0.4691 --0.923878 0 -0.382683 0.9375 0.5 -0.8777 -0.0975 -0.4691 --0.831468 0 -0.55557 0.90625 0.5 -0.8777 -0.0975 -0.4691 --0.906127 -0.19509 -0.37533 0.9375 0.4375 -0.8777 -0.0975 -0.4691 --0.831468 0 -0.55557 0.90625 0.5 -0.8777 -0.0975 -0.4691 --0.815493 -0.19509 -0.544895 0.90625 0.4375 -0.8777 -0.0975 -0.4691 --0.353553 0.92388 -0.146447 0.9375 0.875 -0.2571 0.9565 -0.1374 --0.18024 0.980785 -0.074658 0.9375 0.9375 -0.2571 0.9565 -0.1374 --0.162212 0.980785 -0.108386 0.90625 0.9375 -0.2571 0.9565 -0.1374 --0.353553 0.92388 -0.146447 0.9375 0.875 -0.2571 0.9565 -0.1374 --0.162212 0.980785 -0.108386 0.90625 0.9375 -0.2571 0.9565 -0.1374 --0.318189 0.92388 -0.212607 0.90625 0.875 -0.2571 0.9565 -0.1374 --0.853553 -0.382683 -0.353553 0.9375 0.375 -0.8443 -0.289 -0.4513 --0.906127 -0.19509 -0.37533 0.9375 0.4375 -0.8443 -0.289 -0.4513 --0.815493 -0.19509 -0.544895 0.90625 0.4375 -0.8443 -0.289 -0.4513 --0.853553 -0.382683 -0.353553 0.9375 0.375 -0.8443 -0.289 -0.4513 --0.815493 -0.19509 -0.544895 0.90625 0.4375 -0.8443 -0.289 -0.4513 --0.768177 -0.382683 -0.51328 0.90625 0.375 -0.8443 -0.289 -0.4513 --0.513279 0.83147 -0.212607 0.9375 0.8125 -0.4173 0.881 -0.2231 --0.353553 0.92388 -0.146447 0.9375 0.875 -0.4173 0.881 -0.2231 --0.318189 0.92388 -0.212607 0.90625 0.875 -0.4173 0.881 -0.2231 --0.513279 0.83147 -0.212607 0.9375 0.8125 -0.4173 0.881 -0.2231 --0.318189 0.92388 -0.212607 0.90625 0.875 -0.4173 0.881 -0.2231 --0.461939 0.83147 -0.308658 0.90625 0.8125 -0.4173 0.881 -0.2231 +-0.815493 -0.55557 -0.162212 0.96875 0.3125 -0.8448 -0.4696 -0.2563 +-0.906127 -0.382683 -0.18024 0.96875 0.375 -0.8448 -0.4696 -0.2563 +-0.853553 -0.382683 -0.353553 0.9375 0.375 -0.8448 -0.4696 -0.2563 +-0.815493 -0.55557 -0.162212 0.96875 0.3125 -0.8448 -0.4696 -0.2563 +-0.853553 -0.382683 -0.353553 0.9375 0.375 -0.8448 -0.4696 -0.2563 +-0.768177 -0.55557 -0.31819 0.9375 0.3125 -0.8448 -0.4696 -0.2563 +-0.69352 0.707107 -0.13795 0.96875 0.75 -0.6088 0.7715 -0.1847 +-0.544895 0.83147 -0.108386 0.96875 0.8125 -0.6088 0.7715 -0.1847 +-0.513279 0.83147 -0.212607 0.9375 0.8125 -0.6088 0.7715 -0.1847 +-0.69352 0.707107 -0.13795 0.96875 0.75 -0.6088 0.7715 -0.1847 +-0.513279 0.83147 -0.212607 0.9375 0.8125 -0.6088 0.7715 -0.1847 +-0.653281 0.707107 -0.270598 0.9375 0.75 -0.6088 0.7715 -0.1847 +-0.69352 -0.707107 -0.13795 0.96875 0.25 -0.7412 -0.6326 -0.2248 +-0.815493 -0.55557 -0.162212 0.96875 0.3125 -0.7412 -0.6326 -0.2248 +-0.768177 -0.55557 -0.31819 0.9375 0.3125 -0.7412 -0.6326 -0.2248 +-0.69352 -0.707107 -0.13795 0.96875 0.25 -0.7412 -0.6326 -0.2248 +-0.768177 -0.55557 -0.31819 0.9375 0.3125 -0.7412 -0.6326 -0.2248 +-0.653281 -0.707107 -0.270598 0.9375 0.25 -0.7412 -0.6326 -0.2248 +-0.815493 0.55557 -0.162212 0.96875 0.6875 -0.7412 0.6326 -0.2248 +-0.69352 0.707107 -0.13795 0.96875 0.75 -0.7412 0.6326 -0.2248 +-0.653281 0.707107 -0.270598 0.9375 0.75 -0.7412 0.6326 -0.2248 +-0.815493 0.55557 -0.162212 0.96875 0.6875 -0.7412 0.6326 -0.2248 +-0.653281 0.707107 -0.270598 0.9375 0.75 -0.7412 0.6326 -0.2248 +-0.768177 0.55557 -0.31819 0.9375 0.6875 -0.7412 0.6326 -0.2248 +-0.544895 -0.83147 -0.108386 0.96875 0.1875 -0.6088 -0.7715 -0.1847 +-0.69352 -0.707107 -0.13795 0.96875 0.25 -0.6088 -0.7715 -0.1847 +-0.653281 -0.707107 -0.270598 0.9375 0.25 -0.6088 -0.7715 -0.1847 +-0.544895 -0.83147 -0.108386 0.96875 0.1875 -0.6088 -0.7715 -0.1847 +-0.653281 -0.707107 -0.270598 0.9375 0.25 -0.6088 -0.7715 -0.1847 +-0.513279 -0.83147 -0.212607 0.9375 0.1875 -0.6088 -0.7715 -0.1847 +-0.906127 0.382683 -0.18024 0.96875 0.625 -0.8448 0.4696 -0.2563 +-0.815493 0.55557 -0.162212 0.96875 0.6875 -0.8448 0.4696 -0.2563 +-0.768177 0.55557 -0.31819 0.9375 0.6875 -0.8448 0.4696 -0.2563 +-0.906127 0.382683 -0.18024 0.96875 0.625 -0.8448 0.4696 -0.2563 +-0.768177 0.55557 -0.31819 0.9375 0.6875 -0.8448 0.4696 -0.2563 +-0.853553 0.382683 -0.353553 0.9375 0.625 -0.8448 0.4696 -0.2563 +-0.37533 -0.92388 -0.074658 0.96875 0.125 -0.4528 -0.881 -0.1374 +-0.544895 -0.83147 -0.108386 0.96875 0.1875 -0.4528 -0.881 -0.1374 +-0.513279 -0.83147 -0.212607 0.9375 0.1875 -0.4528 -0.881 -0.1374 +-0.37533 -0.92388 -0.074658 0.96875 0.125 -0.4528 -0.881 -0.1374 +-0.513279 -0.83147 -0.212607 0.9375 0.1875 -0.4528 -0.881 -0.1374 +-0.353553 -0.92388 -0.146447 0.9375 0.125 -0.4528 -0.881 -0.1374 -0.768177 -0.55557 -0.31819 0.9375 0.3125 -0.7786 -0.4696 -0.4162 -0.853553 -0.382683 -0.353553 0.9375 0.375 -0.7786 -0.4696 -0.4162 -0.768177 -0.382683 -0.51328 0.90625 0.375 -0.7786 -0.4696 -0.4162 @@ -2432,42 +2390,48 @@ Data: -0.906127 0.19509 -0.37533 0.9375 0.5625 -0.8443 0.289 -0.4513 -0.768177 0.382683 -0.51328 0.90625 0.625 -0.8443 0.289 -0.4513 -0.815493 0.19509 -0.544895 0.90625 0.5625 -0.8443 0.289 -0.4513 --0.587938 -0.707107 -0.392847 0.90625 0.25 -0.5987 -0.6326 -0.4913 --0.691341 -0.55557 -0.46194 0.90625 0.3125 -0.5987 -0.6326 -0.4913 --0.587937 -0.55557 -0.587938 0.875 0.3125 -0.5987 -0.6326 -0.4913 --0.587938 -0.707107 -0.392847 0.90625 0.25 -0.5987 -0.6326 -0.4913 --0.587937 -0.55557 -0.587938 0.875 0.3125 -0.5987 -0.6326 -0.4913 --0.5 -0.707107 -0.5 0.875 0.25 -0.5987 -0.6326 -0.4913 --0.691341 0.55557 -0.46194 0.90625 0.6875 -0.5987 0.6326 -0.4913 --0.587938 0.707107 -0.392847 0.90625 0.75 -0.5987 0.6326 -0.4913 --0.5 0.707107 -0.5 0.875 0.75 -0.5987 0.6326 -0.4913 --0.691341 0.55557 -0.46194 0.90625 0.6875 -0.5987 0.6326 -0.4913 --0.5 0.707107 -0.5 0.875 0.75 -0.5987 0.6326 -0.4913 --0.587937 0.55557 -0.587938 0.875 0.6875 -0.5987 0.6326 -0.4913 --0.461939 -0.83147 -0.308658 0.90625 0.1875 -0.4918 -0.7715 -0.4036 --0.587938 -0.707107 -0.392847 0.90625 0.25 -0.4918 -0.7715 -0.4036 --0.5 -0.707107 -0.5 0.875 0.25 -0.4918 -0.7715 -0.4036 --0.461939 -0.83147 -0.308658 0.90625 0.1875 -0.4918 -0.7715 -0.4036 --0.5 -0.707107 -0.5 0.875 0.25 -0.4918 -0.7715 -0.4036 --0.392847 -0.83147 -0.392847 0.875 0.1875 -0.4918 -0.7715 -0.4036 --0.768177 0.382683 -0.51328 0.90625 0.625 -0.6825 0.4696 -0.5601 --0.691341 0.55557 -0.46194 0.90625 0.6875 -0.6825 0.4696 -0.5601 --0.587937 0.55557 -0.587938 0.875 0.6875 -0.6825 0.4696 -0.5601 --0.768177 0.382683 -0.51328 0.90625 0.625 -0.6825 0.4696 -0.5601 --0.587937 0.55557 -0.587938 0.875 0.6875 -0.6825 0.4696 -0.5601 --0.653281 0.382683 -0.653281 0.875 0.625 -0.6825 0.4696 -0.5601 --0.318189 -0.92388 -0.212607 0.90625 0.125 -0.3658 -0.881 -0.3002 --0.461939 -0.83147 -0.308658 0.90625 0.1875 -0.3658 -0.881 -0.3002 --0.392847 -0.83147 -0.392847 0.875 0.1875 -0.3658 -0.881 -0.3002 --0.318189 -0.92388 -0.212607 0.90625 0.125 -0.3658 -0.881 -0.3002 --0.392847 -0.83147 -0.392847 0.875 0.1875 -0.3658 -0.881 -0.3002 --0.270598 -0.92388 -0.270598 0.875 0.125 -0.3658 -0.881 -0.3002 --0.815493 0.19509 -0.544895 0.90625 0.5625 -0.74 0.289 -0.6073 --0.768177 0.382683 -0.51328 0.90625 0.625 -0.74 0.289 -0.6073 --0.653281 0.382683 -0.653281 0.875 0.625 -0.74 0.289 -0.6073 --0.815493 0.19509 -0.544895 0.90625 0.5625 -0.74 0.289 -0.6073 --0.653281 0.382683 -0.653281 0.875 0.625 -0.74 0.289 -0.6073 --0.693519 0.19509 -0.69352 0.875 0.5625 -0.74 0.289 -0.6073 +-0.18024 -0.980785 -0.074658 0.9375 0.0625 -0.2571 -0.9565 -0.1374 +-0.353553 -0.92388 -0.146447 0.9375 0.125 -0.2571 -0.9565 -0.1374 +-0.318189 -0.92388 -0.212607 0.90625 0.125 -0.2571 -0.9565 -0.1374 +-0.18024 -0.980785 -0.074658 0.9375 0.0625 -0.2571 -0.9565 -0.1374 +-0.318189 -0.92388 -0.212607 0.90625 0.125 -0.2571 -0.9565 -0.1374 +-0.162212 -0.980785 -0.108386 0.90625 0.0625 -0.2571 -0.9565 -0.1374 +-0.923878 0 -0.382683 0.9375 0.5 -0.8777 0.0975 -0.4691 +-0.906127 0.19509 -0.37533 0.9375 0.5625 -0.8777 0.0975 -0.4691 +-0.815493 0.19509 -0.544895 0.90625 0.5625 -0.8777 0.0975 -0.4691 +-0.923878 0 -0.382683 0.9375 0.5 -0.8777 0.0975 -0.4691 +-0.815493 0.19509 -0.544895 0.90625 0.5625 -0.8777 0.0975 -0.4691 +-0.831468 0 -0.55557 0.90625 0.5 -0.8777 0.0975 -0.4691 +-0.18024 0.980785 -0.074658 0.9375 0.9375 -0.0869 0.9951 -0.0464 +0 1 0 0.921875 1 -0.0869 0.9951 -0.0464 +-0.162212 0.980785 -0.108386 0.90625 0.9375 -0.0869 0.9951 -0.0464 +0 -1 0 0.921875 0 -0.0869 -0.9951 -0.0464 +-0.18024 -0.980785 -0.074658 0.9375 0.0625 -0.0869 -0.9951 -0.0464 +-0.162212 -0.980785 -0.108386 0.90625 0.0625 -0.0869 -0.9951 -0.0464 +-0.906127 -0.19509 -0.37533 0.9375 0.4375 -0.8777 -0.0975 -0.4691 +-0.923878 0 -0.382683 0.9375 0.5 -0.8777 -0.0975 -0.4691 +-0.831468 0 -0.55557 0.90625 0.5 -0.8777 -0.0975 -0.4691 +-0.906127 -0.19509 -0.37533 0.9375 0.4375 -0.8777 -0.0975 -0.4691 +-0.831468 0 -0.55557 0.90625 0.5 -0.8777 -0.0975 -0.4691 +-0.815493 -0.19509 -0.544895 0.90625 0.4375 -0.8777 -0.0975 -0.4691 +-0.353553 0.92388 -0.146447 0.9375 0.875 -0.2571 0.9565 -0.1374 +-0.18024 0.980785 -0.074658 0.9375 0.9375 -0.2571 0.9565 -0.1374 +-0.162212 0.980785 -0.108386 0.90625 0.9375 -0.2571 0.9565 -0.1374 +-0.353553 0.92388 -0.146447 0.9375 0.875 -0.2571 0.9565 -0.1374 +-0.162212 0.980785 -0.108386 0.90625 0.9375 -0.2571 0.9565 -0.1374 +-0.318189 0.92388 -0.212607 0.90625 0.875 -0.2571 0.9565 -0.1374 +-0.853553 -0.382683 -0.353553 0.9375 0.375 -0.8443 -0.289 -0.4513 +-0.906127 -0.19509 -0.37533 0.9375 0.4375 -0.8443 -0.289 -0.4513 +-0.815493 -0.19509 -0.544895 0.90625 0.4375 -0.8443 -0.289 -0.4513 +-0.853553 -0.382683 -0.353553 0.9375 0.375 -0.8443 -0.289 -0.4513 +-0.815493 -0.19509 -0.544895 0.90625 0.4375 -0.8443 -0.289 -0.4513 +-0.768177 -0.382683 -0.51328 0.90625 0.375 -0.8443 -0.289 -0.4513 +-0.513279 0.83147 -0.212607 0.9375 0.8125 -0.4173 0.881 -0.2231 +-0.353553 0.92388 -0.146447 0.9375 0.875 -0.4173 0.881 -0.2231 +-0.318189 0.92388 -0.212607 0.90625 0.875 -0.4173 0.881 -0.2231 +-0.513279 0.83147 -0.212607 0.9375 0.8125 -0.4173 0.881 -0.2231 +-0.318189 0.92388 -0.212607 0.90625 0.875 -0.4173 0.881 -0.2231 +-0.461939 0.83147 -0.308658 0.90625 0.8125 -0.4173 0.881 -0.2231 -0.162212 -0.980785 -0.108386 0.90625 0.0625 -0.2254 -0.9565 -0.185 -0.318189 -0.92388 -0.212607 0.90625 0.125 -0.2254 -0.9565 -0.185 -0.270598 -0.92388 -0.270598 0.875 0.125 -0.2254 -0.9565 -0.185 @@ -2522,48 +2486,42 @@ Data: -0.587938 0.707107 -0.392847 0.90625 0.75 -0.4918 0.7715 -0.4036 -0.392847 0.83147 -0.392847 0.875 0.8125 -0.4918 0.7715 -0.4036 -0.5 0.707107 -0.5 0.875 0.75 -0.4918 0.7715 -0.4036 --0.13795 0.980785 -0.13795 0.875 0.9375 -0.0625 0.9951 -0.0761 -0 1 0 0.859375 1 -0.0625 0.9951 -0.0761 --0.108386 0.980785 -0.162212 0.84375 0.9375 -0.0625 0.9951 -0.0761 -0 -1 0 0.859375 0 -0.0625 -0.9951 -0.0761 --0.13795 -0.980785 -0.13795 0.875 0.0625 -0.0625 -0.9951 -0.0761 --0.108386 -0.980785 -0.162212 0.84375 0.0625 -0.0625 -0.9951 -0.0761 --0.693519 -0.19509 -0.69352 0.875 0.4375 -0.6314 -0.0975 -0.7693 --0.707106 0 -0.707106 0.875 0.5 -0.6314 -0.0975 -0.7693 --0.555569 0 -0.831469 0.84375 0.5 -0.6314 -0.0975 -0.7693 --0.693519 -0.19509 -0.69352 0.875 0.4375 -0.6314 -0.0975 -0.7693 --0.555569 0 -0.831469 0.84375 0.5 -0.6314 -0.0975 -0.7693 --0.544895 -0.19509 -0.815493 0.84375 0.4375 -0.6314 -0.0975 -0.7693 --0.270598 0.92388 -0.270598 0.875 0.875 -0.185 0.9565 -0.2254 --0.13795 0.980785 -0.13795 0.875 0.9375 -0.185 0.9565 -0.2254 --0.108386 0.980785 -0.162212 0.84375 0.9375 -0.185 0.9565 -0.2254 --0.270598 0.92388 -0.270598 0.875 0.875 -0.185 0.9565 -0.2254 --0.108386 0.980785 -0.162212 0.84375 0.9375 -0.185 0.9565 -0.2254 --0.212607 0.92388 -0.31819 0.84375 0.875 -0.185 0.9565 -0.2254 --0.653281 -0.382683 -0.653281 0.875 0.375 -0.6073 -0.289 -0.74 --0.693519 -0.19509 -0.69352 0.875 0.4375 -0.6073 -0.289 -0.74 --0.544895 -0.19509 -0.815493 0.84375 0.4375 -0.6073 -0.289 -0.74 --0.653281 -0.382683 -0.653281 0.875 0.375 -0.6073 -0.289 -0.74 --0.544895 -0.19509 -0.815493 0.84375 0.4375 -0.6073 -0.289 -0.74 --0.51328 -0.382683 -0.768177 0.84375 0.375 -0.6073 -0.289 -0.74 --0.392847 0.83147 -0.392847 0.875 0.8125 -0.3002 0.881 -0.3658 --0.270598 0.92388 -0.270598 0.875 0.875 -0.3002 0.881 -0.3658 --0.212607 0.92388 -0.31819 0.84375 0.875 -0.3002 0.881 -0.3658 --0.392847 0.83147 -0.392847 0.875 0.8125 -0.3002 0.881 -0.3658 --0.212607 0.92388 -0.31819 0.84375 0.875 -0.3002 0.881 -0.3658 --0.308658 0.83147 -0.461939 0.84375 0.8125 -0.3002 0.881 -0.3658 --0.587937 -0.55557 -0.587938 0.875 0.3125 -0.5601 -0.4696 -0.6825 --0.653281 -0.382683 -0.653281 0.875 0.375 -0.5601 -0.4696 -0.6825 --0.51328 -0.382683 -0.768177 0.84375 0.375 -0.5601 -0.4696 -0.6825 --0.587937 -0.55557 -0.587938 0.875 0.3125 -0.5601 -0.4696 -0.6825 --0.51328 -0.382683 -0.768177 0.84375 0.375 -0.5601 -0.4696 -0.6825 --0.461939 -0.55557 -0.691341 0.84375 0.3125 -0.5601 -0.4696 -0.6825 --0.5 0.707107 -0.5 0.875 0.75 -0.4036 0.7715 -0.4918 --0.392847 0.83147 -0.392847 0.875 0.8125 -0.4036 0.7715 -0.4918 --0.308658 0.83147 -0.461939 0.84375 0.8125 -0.4036 0.7715 -0.4918 --0.5 0.707107 -0.5 0.875 0.75 -0.4036 0.7715 -0.4918 --0.308658 0.83147 -0.461939 0.84375 0.8125 -0.4036 0.7715 -0.4918 --0.392847 0.707107 -0.587938 0.84375 0.75 -0.4036 0.7715 -0.4918 +-0.587938 -0.707107 -0.392847 0.90625 0.25 -0.5987 -0.6326 -0.4913 +-0.691341 -0.55557 -0.46194 0.90625 0.3125 -0.5987 -0.6326 -0.4913 +-0.587937 -0.55557 -0.587938 0.875 0.3125 -0.5987 -0.6326 -0.4913 +-0.587938 -0.707107 -0.392847 0.90625 0.25 -0.5987 -0.6326 -0.4913 +-0.587937 -0.55557 -0.587938 0.875 0.3125 -0.5987 -0.6326 -0.4913 +-0.5 -0.707107 -0.5 0.875 0.25 -0.5987 -0.6326 -0.4913 +-0.691341 0.55557 -0.46194 0.90625 0.6875 -0.5987 0.6326 -0.4913 +-0.587938 0.707107 -0.392847 0.90625 0.75 -0.5987 0.6326 -0.4913 +-0.5 0.707107 -0.5 0.875 0.75 -0.5987 0.6326 -0.4913 +-0.691341 0.55557 -0.46194 0.90625 0.6875 -0.5987 0.6326 -0.4913 +-0.5 0.707107 -0.5 0.875 0.75 -0.5987 0.6326 -0.4913 +-0.587937 0.55557 -0.587938 0.875 0.6875 -0.5987 0.6326 -0.4913 +-0.461939 -0.83147 -0.308658 0.90625 0.1875 -0.4918 -0.7715 -0.4036 +-0.587938 -0.707107 -0.392847 0.90625 0.25 -0.4918 -0.7715 -0.4036 +-0.5 -0.707107 -0.5 0.875 0.25 -0.4918 -0.7715 -0.4036 +-0.461939 -0.83147 -0.308658 0.90625 0.1875 -0.4918 -0.7715 -0.4036 +-0.5 -0.707107 -0.5 0.875 0.25 -0.4918 -0.7715 -0.4036 +-0.392847 -0.83147 -0.392847 0.875 0.1875 -0.4918 -0.7715 -0.4036 +-0.768177 0.382683 -0.51328 0.90625 0.625 -0.6825 0.4696 -0.5601 +-0.691341 0.55557 -0.46194 0.90625 0.6875 -0.6825 0.4696 -0.5601 +-0.587937 0.55557 -0.587938 0.875 0.6875 -0.6825 0.4696 -0.5601 +-0.768177 0.382683 -0.51328 0.90625 0.625 -0.6825 0.4696 -0.5601 +-0.587937 0.55557 -0.587938 0.875 0.6875 -0.6825 0.4696 -0.5601 +-0.653281 0.382683 -0.653281 0.875 0.625 -0.6825 0.4696 -0.5601 +-0.318189 -0.92388 -0.212607 0.90625 0.125 -0.3658 -0.881 -0.3002 +-0.461939 -0.83147 -0.308658 0.90625 0.1875 -0.3658 -0.881 -0.3002 +-0.392847 -0.83147 -0.392847 0.875 0.1875 -0.3658 -0.881 -0.3002 +-0.318189 -0.92388 -0.212607 0.90625 0.125 -0.3658 -0.881 -0.3002 +-0.392847 -0.83147 -0.392847 0.875 0.1875 -0.3658 -0.881 -0.3002 +-0.270598 -0.92388 -0.270598 0.875 0.125 -0.3658 -0.881 -0.3002 +-0.815493 0.19509 -0.544895 0.90625 0.5625 -0.74 0.289 -0.6073 +-0.768177 0.382683 -0.51328 0.90625 0.625 -0.74 0.289 -0.6073 +-0.653281 0.382683 -0.653281 0.875 0.625 -0.74 0.289 -0.6073 +-0.815493 0.19509 -0.544895 0.90625 0.5625 -0.74 0.289 -0.6073 +-0.653281 0.382683 -0.653281 0.875 0.625 -0.74 0.289 -0.6073 +-0.693519 0.19509 -0.69352 0.875 0.5625 -0.74 0.289 -0.6073 -0.5 -0.707107 -0.5 0.875 0.25 -0.4913 -0.6326 -0.5987 -0.587937 -0.55557 -0.587938 0.875 0.3125 -0.4913 -0.6326 -0.5987 -0.461939 -0.55557 -0.691341 0.84375 0.3125 -0.4913 -0.6326 -0.5987 @@ -2612,48 +2570,48 @@ Data: -0.707106 0 -0.707106 0.875 0.5 -0.6314 0.0975 -0.7693 -0.544895 0.19509 -0.815493 0.84375 0.5625 -0.6314 0.0975 -0.7693 -0.555569 0 -0.831469 0.84375 0.5 -0.6314 0.0975 -0.7693 --0.461939 0.55557 -0.691341 0.84375 0.6875 -0.3651 0.6326 -0.6831 --0.392847 0.707107 -0.587938 0.84375 0.75 -0.3651 0.6326 -0.6831 --0.270598 0.707107 -0.653281 0.8125 0.75 -0.3651 0.6326 -0.6831 --0.461939 0.55557 -0.691341 0.84375 0.6875 -0.3651 0.6326 -0.6831 --0.270598 0.707107 -0.653281 0.8125 0.75 -0.3651 0.6326 -0.6831 --0.318189 0.55557 -0.768177 0.8125 0.6875 -0.3651 0.6326 -0.6831 --0.308658 -0.83147 -0.461939 0.84375 0.1875 -0.2999 -0.7715 -0.5611 --0.392847 -0.707107 -0.587938 0.84375 0.25 -0.2999 -0.7715 -0.5611 --0.270598 -0.707107 -0.653281 0.8125 0.25 -0.2999 -0.7715 -0.5611 --0.308658 -0.83147 -0.461939 0.84375 0.1875 -0.2999 -0.7715 -0.5611 --0.270598 -0.707107 -0.653281 0.8125 0.25 -0.2999 -0.7715 -0.5611 --0.212607 -0.83147 -0.513279 0.8125 0.1875 -0.2999 -0.7715 -0.5611 --0.51328 0.382683 -0.768177 0.84375 0.625 -0.4162 0.4696 -0.7786 --0.461939 0.55557 -0.691341 0.84375 0.6875 -0.4162 0.4696 -0.7786 --0.318189 0.55557 -0.768177 0.8125 0.6875 -0.4162 0.4696 -0.7786 --0.51328 0.382683 -0.768177 0.84375 0.625 -0.4162 0.4696 -0.7786 --0.318189 0.55557 -0.768177 0.8125 0.6875 -0.4162 0.4696 -0.7786 --0.353553 0.382683 -0.853553 0.8125 0.625 -0.4162 0.4696 -0.7786 --0.212607 -0.92388 -0.31819 0.84375 0.125 -0.223 -0.881 -0.4173 --0.308658 -0.83147 -0.461939 0.84375 0.1875 -0.223 -0.881 -0.4173 --0.212607 -0.83147 -0.513279 0.8125 0.1875 -0.223 -0.881 -0.4173 --0.212607 -0.92388 -0.31819 0.84375 0.125 -0.223 -0.881 -0.4173 --0.212607 -0.83147 -0.513279 0.8125 0.1875 -0.223 -0.881 -0.4173 --0.146446 -0.92388 -0.353553 0.8125 0.125 -0.223 -0.881 -0.4173 --0.544895 0.19509 -0.815493 0.84375 0.5625 -0.4513 0.289 -0.8443 --0.51328 0.382683 -0.768177 0.84375 0.625 -0.4513 0.289 -0.8443 --0.353553 0.382683 -0.853553 0.8125 0.625 -0.4513 0.289 -0.8443 --0.544895 0.19509 -0.815493 0.84375 0.5625 -0.4513 0.289 -0.8443 --0.353553 0.382683 -0.853553 0.8125 0.625 -0.4513 0.289 -0.8443 --0.37533 0.19509 -0.906127 0.8125 0.5625 -0.4513 0.289 -0.8443 --0.108386 -0.980785 -0.162212 0.84375 0.0625 -0.1374 -0.9565 -0.2571 --0.212607 -0.92388 -0.31819 0.84375 0.125 -0.1374 -0.9565 -0.2571 --0.146446 -0.92388 -0.353553 0.8125 0.125 -0.1374 -0.9565 -0.2571 --0.108386 -0.980785 -0.162212 0.84375 0.0625 -0.1374 -0.9565 -0.2571 --0.146446 -0.92388 -0.353553 0.8125 0.125 -0.1374 -0.9565 -0.2571 --0.074658 -0.980785 -0.18024 0.8125 0.0625 -0.1374 -0.9565 -0.2571 --0.555569 0 -0.831469 0.84375 0.5 -0.4691 0.0975 -0.8777 --0.544895 0.19509 -0.815493 0.84375 0.5625 -0.4691 0.0975 -0.8777 --0.37533 0.19509 -0.906127 0.8125 0.5625 -0.4691 0.0975 -0.8777 --0.555569 0 -0.831469 0.84375 0.5 -0.4691 0.0975 -0.8777 --0.37533 0.19509 -0.906127 0.8125 0.5625 -0.4691 0.0975 -0.8777 --0.382683 0 -0.923879 0.8125 0.5 -0.4691 0.0975 -0.8777 +-0.13795 0.980785 -0.13795 0.875 0.9375 -0.0625 0.9951 -0.0761 +0 1 0 0.859375 1 -0.0625 0.9951 -0.0761 +-0.108386 0.980785 -0.162212 0.84375 0.9375 -0.0625 0.9951 -0.0761 +0 -1 0 0.859375 0 -0.0625 -0.9951 -0.0761 +-0.13795 -0.980785 -0.13795 0.875 0.0625 -0.0625 -0.9951 -0.0761 +-0.108386 -0.980785 -0.162212 0.84375 0.0625 -0.0625 -0.9951 -0.0761 +-0.693519 -0.19509 -0.69352 0.875 0.4375 -0.6314 -0.0975 -0.7693 +-0.707106 0 -0.707106 0.875 0.5 -0.6314 -0.0975 -0.7693 +-0.555569 0 -0.831469 0.84375 0.5 -0.6314 -0.0975 -0.7693 +-0.693519 -0.19509 -0.69352 0.875 0.4375 -0.6314 -0.0975 -0.7693 +-0.555569 0 -0.831469 0.84375 0.5 -0.6314 -0.0975 -0.7693 +-0.544895 -0.19509 -0.815493 0.84375 0.4375 -0.6314 -0.0975 -0.7693 +-0.270598 0.92388 -0.270598 0.875 0.875 -0.185 0.9565 -0.2254 +-0.13795 0.980785 -0.13795 0.875 0.9375 -0.185 0.9565 -0.2254 +-0.108386 0.980785 -0.162212 0.84375 0.9375 -0.185 0.9565 -0.2254 +-0.270598 0.92388 -0.270598 0.875 0.875 -0.185 0.9565 -0.2254 +-0.108386 0.980785 -0.162212 0.84375 0.9375 -0.185 0.9565 -0.2254 +-0.212607 0.92388 -0.31819 0.84375 0.875 -0.185 0.9565 -0.2254 +-0.653281 -0.382683 -0.653281 0.875 0.375 -0.6073 -0.289 -0.74 +-0.693519 -0.19509 -0.69352 0.875 0.4375 -0.6073 -0.289 -0.74 +-0.544895 -0.19509 -0.815493 0.84375 0.4375 -0.6073 -0.289 -0.74 +-0.653281 -0.382683 -0.653281 0.875 0.375 -0.6073 -0.289 -0.74 +-0.544895 -0.19509 -0.815493 0.84375 0.4375 -0.6073 -0.289 -0.74 +-0.51328 -0.382683 -0.768177 0.84375 0.375 -0.6073 -0.289 -0.74 +-0.392847 0.83147 -0.392847 0.875 0.8125 -0.3002 0.881 -0.3658 +-0.270598 0.92388 -0.270598 0.875 0.875 -0.3002 0.881 -0.3658 +-0.212607 0.92388 -0.31819 0.84375 0.875 -0.3002 0.881 -0.3658 +-0.392847 0.83147 -0.392847 0.875 0.8125 -0.3002 0.881 -0.3658 +-0.212607 0.92388 -0.31819 0.84375 0.875 -0.3002 0.881 -0.3658 +-0.308658 0.83147 -0.461939 0.84375 0.8125 -0.3002 0.881 -0.3658 +-0.587937 -0.55557 -0.587938 0.875 0.3125 -0.5601 -0.4696 -0.6825 +-0.653281 -0.382683 -0.653281 0.875 0.375 -0.5601 -0.4696 -0.6825 +-0.51328 -0.382683 -0.768177 0.84375 0.375 -0.5601 -0.4696 -0.6825 +-0.587937 -0.55557 -0.587938 0.875 0.3125 -0.5601 -0.4696 -0.6825 +-0.51328 -0.382683 -0.768177 0.84375 0.375 -0.5601 -0.4696 -0.6825 +-0.461939 -0.55557 -0.691341 0.84375 0.3125 -0.5601 -0.4696 -0.6825 +-0.5 0.707107 -0.5 0.875 0.75 -0.4036 0.7715 -0.4918 +-0.392847 0.83147 -0.392847 0.875 0.8125 -0.4036 0.7715 -0.4918 +-0.308658 0.83147 -0.461939 0.84375 0.8125 -0.4036 0.7715 -0.4918 +-0.5 0.707107 -0.5 0.875 0.75 -0.4036 0.7715 -0.4918 +-0.308658 0.83147 -0.461939 0.84375 0.8125 -0.4036 0.7715 -0.4918 +-0.392847 0.707107 -0.587938 0.84375 0.75 -0.4036 0.7715 -0.4918 -0.108386 0.980785 -0.162212 0.84375 0.9375 -0.0464 0.9951 -0.0869 0 1 0 0.828125 1 -0.0464 0.9951 -0.0869 -0.074658 0.980785 -0.18024 0.8125 0.9375 -0.0464 0.9951 -0.0869 @@ -2702,48 +2660,48 @@ Data: -0.392847 -0.707107 -0.587938 0.84375 0.25 -0.3651 -0.6326 -0.6831 -0.318189 -0.55557 -0.768177 0.8125 0.3125 -0.3651 -0.6326 -0.6831 -0.270598 -0.707107 -0.653281 0.8125 0.25 -0.3651 -0.6326 -0.6831 --0.37533 -0.19509 -0.906127 0.8125 0.4375 -0.2889 -0.0975 -0.9524 --0.382683 0 -0.923879 0.8125 0.5 -0.2889 -0.0975 -0.9524 --0.19509 0 -0.980784 0.78125 0.5 -0.2889 -0.0975 -0.9524 --0.37533 -0.19509 -0.906127 0.8125 0.4375 -0.2889 -0.0975 -0.9524 --0.19509 0 -0.980784 0.78125 0.5 -0.2889 -0.0975 -0.9524 --0.191341 -0.19509 -0.961939 0.78125 0.4375 -0.2889 -0.0975 -0.9524 --0.146446 0.92388 -0.353553 0.8125 0.875 -0.0846 0.9565 -0.279 --0.074658 0.980785 -0.18024 0.8125 0.9375 -0.0846 0.9565 -0.279 --0.03806 0.980785 -0.191342 0.78125 0.9375 -0.0846 0.9565 -0.279 --0.146446 0.92388 -0.353553 0.8125 0.875 -0.0846 0.9565 -0.279 --0.03806 0.980785 -0.191342 0.78125 0.9375 -0.0846 0.9565 -0.279 --0.074658 0.92388 -0.37533 0.78125 0.875 -0.0846 0.9565 -0.279 --0.353553 -0.382683 -0.853553 0.8125 0.375 -0.2779 -0.289 -0.9161 --0.37533 -0.19509 -0.906127 0.8125 0.4375 -0.2779 -0.289 -0.9161 --0.191341 -0.19509 -0.961939 0.78125 0.4375 -0.2779 -0.289 -0.9161 --0.353553 -0.382683 -0.853553 0.8125 0.375 -0.2779 -0.289 -0.9161 --0.191341 -0.19509 -0.961939 0.78125 0.4375 -0.2779 -0.289 -0.9161 --0.18024 -0.382683 -0.906127 0.78125 0.375 -0.2779 -0.289 -0.9161 --0.212607 0.83147 -0.513279 0.8125 0.8125 -0.1374 0.881 -0.4528 --0.146446 0.92388 -0.353553 0.8125 0.875 -0.1374 0.881 -0.4528 --0.074658 0.92388 -0.37533 0.78125 0.875 -0.1374 0.881 -0.4528 --0.212607 0.83147 -0.513279 0.8125 0.8125 -0.1374 0.881 -0.4528 --0.074658 0.92388 -0.37533 0.78125 0.875 -0.1374 0.881 -0.4528 --0.108386 0.83147 -0.544895 0.78125 0.8125 -0.1374 0.881 -0.4528 --0.318189 -0.55557 -0.768177 0.8125 0.3125 -0.2563 -0.4696 -0.8448 --0.353553 -0.382683 -0.853553 0.8125 0.375 -0.2563 -0.4696 -0.8448 --0.18024 -0.382683 -0.906127 0.78125 0.375 -0.2563 -0.4696 -0.8448 --0.318189 -0.55557 -0.768177 0.8125 0.3125 -0.2563 -0.4696 -0.8448 --0.18024 -0.382683 -0.906127 0.78125 0.375 -0.2563 -0.4696 -0.8448 --0.162211 -0.55557 -0.815493 0.78125 0.3125 -0.2563 -0.4696 -0.8448 --0.270598 0.707107 -0.653281 0.8125 0.75 -0.1847 0.7715 -0.6088 --0.212607 0.83147 -0.513279 0.8125 0.8125 -0.1847 0.7715 -0.6088 --0.108386 0.83147 -0.544895 0.78125 0.8125 -0.1847 0.7715 -0.6088 --0.270598 0.707107 -0.653281 0.8125 0.75 -0.1847 0.7715 -0.6088 --0.108386 0.83147 -0.544895 0.78125 0.8125 -0.1847 0.7715 -0.6088 --0.13795 0.707107 -0.69352 0.78125 0.75 -0.1847 0.7715 -0.6088 --0.270598 -0.707107 -0.653281 0.8125 0.25 -0.2248 -0.6326 -0.7412 --0.318189 -0.55557 -0.768177 0.8125 0.3125 -0.2248 -0.6326 -0.7412 --0.162211 -0.55557 -0.815493 0.78125 0.3125 -0.2248 -0.6326 -0.7412 --0.270598 -0.707107 -0.653281 0.8125 0.25 -0.2248 -0.6326 -0.7412 --0.162211 -0.55557 -0.815493 0.78125 0.3125 -0.2248 -0.6326 -0.7412 --0.13795 -0.707107 -0.69352 0.78125 0.25 -0.2248 -0.6326 -0.7412 +-0.461939 0.55557 -0.691341 0.84375 0.6875 -0.3651 0.6326 -0.6831 +-0.392847 0.707107 -0.587938 0.84375 0.75 -0.3651 0.6326 -0.6831 +-0.270598 0.707107 -0.653281 0.8125 0.75 -0.3651 0.6326 -0.6831 +-0.461939 0.55557 -0.691341 0.84375 0.6875 -0.3651 0.6326 -0.6831 +-0.270598 0.707107 -0.653281 0.8125 0.75 -0.3651 0.6326 -0.6831 +-0.318189 0.55557 -0.768177 0.8125 0.6875 -0.3651 0.6326 -0.6831 +-0.308658 -0.83147 -0.461939 0.84375 0.1875 -0.2999 -0.7715 -0.5611 +-0.392847 -0.707107 -0.587938 0.84375 0.25 -0.2999 -0.7715 -0.5611 +-0.270598 -0.707107 -0.653281 0.8125 0.25 -0.2999 -0.7715 -0.5611 +-0.308658 -0.83147 -0.461939 0.84375 0.1875 -0.2999 -0.7715 -0.5611 +-0.270598 -0.707107 -0.653281 0.8125 0.25 -0.2999 -0.7715 -0.5611 +-0.212607 -0.83147 -0.513279 0.8125 0.1875 -0.2999 -0.7715 -0.5611 +-0.51328 0.382683 -0.768177 0.84375 0.625 -0.4162 0.4696 -0.7786 +-0.461939 0.55557 -0.691341 0.84375 0.6875 -0.4162 0.4696 -0.7786 +-0.318189 0.55557 -0.768177 0.8125 0.6875 -0.4162 0.4696 -0.7786 +-0.51328 0.382683 -0.768177 0.84375 0.625 -0.4162 0.4696 -0.7786 +-0.318189 0.55557 -0.768177 0.8125 0.6875 -0.4162 0.4696 -0.7786 +-0.353553 0.382683 -0.853553 0.8125 0.625 -0.4162 0.4696 -0.7786 +-0.212607 -0.92388 -0.31819 0.84375 0.125 -0.223 -0.881 -0.4173 +-0.308658 -0.83147 -0.461939 0.84375 0.1875 -0.223 -0.881 -0.4173 +-0.212607 -0.83147 -0.513279 0.8125 0.1875 -0.223 -0.881 -0.4173 +-0.212607 -0.92388 -0.31819 0.84375 0.125 -0.223 -0.881 -0.4173 +-0.212607 -0.83147 -0.513279 0.8125 0.1875 -0.223 -0.881 -0.4173 +-0.146446 -0.92388 -0.353553 0.8125 0.125 -0.223 -0.881 -0.4173 +-0.544895 0.19509 -0.815493 0.84375 0.5625 -0.4513 0.289 -0.8443 +-0.51328 0.382683 -0.768177 0.84375 0.625 -0.4513 0.289 -0.8443 +-0.353553 0.382683 -0.853553 0.8125 0.625 -0.4513 0.289 -0.8443 +-0.544895 0.19509 -0.815493 0.84375 0.5625 -0.4513 0.289 -0.8443 +-0.353553 0.382683 -0.853553 0.8125 0.625 -0.4513 0.289 -0.8443 +-0.37533 0.19509 -0.906127 0.8125 0.5625 -0.4513 0.289 -0.8443 +-0.108386 -0.980785 -0.162212 0.84375 0.0625 -0.1374 -0.9565 -0.2571 +-0.212607 -0.92388 -0.31819 0.84375 0.125 -0.1374 -0.9565 -0.2571 +-0.146446 -0.92388 -0.353553 0.8125 0.125 -0.1374 -0.9565 -0.2571 +-0.108386 -0.980785 -0.162212 0.84375 0.0625 -0.1374 -0.9565 -0.2571 +-0.146446 -0.92388 -0.353553 0.8125 0.125 -0.1374 -0.9565 -0.2571 +-0.074658 -0.980785 -0.18024 0.8125 0.0625 -0.1374 -0.9565 -0.2571 +-0.555569 0 -0.831469 0.84375 0.5 -0.4691 0.0975 -0.8777 +-0.544895 0.19509 -0.815493 0.84375 0.5625 -0.4691 0.0975 -0.8777 +-0.37533 0.19509 -0.906127 0.8125 0.5625 -0.4691 0.0975 -0.8777 +-0.555569 0 -0.831469 0.84375 0.5 -0.4691 0.0975 -0.8777 +-0.37533 0.19509 -0.906127 0.8125 0.5625 -0.4691 0.0975 -0.8777 +-0.382683 0 -0.923879 0.8125 0.5 -0.4691 0.0975 -0.8777 -0.318189 0.55557 -0.768177 0.8125 0.6875 -0.2248 0.6326 -0.7412 -0.270598 0.707107 -0.653281 0.8125 0.75 -0.2248 0.6326 -0.7412 -0.13795 0.707107 -0.69352 0.78125 0.75 -0.2248 0.6326 -0.7412 @@ -2792,48 +2750,48 @@ Data: 0 -1 0 0.796875 0 -0.0286 -0.9951 -0.0942 -0.074658 -0.980785 -0.18024 0.8125 0.0625 -0.0286 -0.9951 -0.0942 -0.03806 -0.980785 -0.191342 0.78125 0.0625 -0.0286 -0.9951 -0.0942 --0.108386 -0.83147 -0.544895 0.78125 0.1875 -0.0624 -0.7715 -0.6332 --0.13795 -0.707107 -0.69352 0.78125 0.25 -0.0624 -0.7715 -0.6332 -0 -0.707107 -0.707107 0.75 0.25 -0.0624 -0.7715 -0.6332 --0.108386 -0.83147 -0.544895 0.78125 0.1875 -0.0624 -0.7715 -0.6332 -0 -0.707107 -0.707107 0.75 0.25 -0.0624 -0.7715 -0.6332 -0 -0.83147 -0.55557 0.75 0.1875 -0.0624 -0.7715 -0.6332 --0.18024 0.382683 -0.906127 0.78125 0.625 -0.0865 0.4696 -0.8786 --0.162211 0.55557 -0.815493 0.78125 0.6875 -0.0865 0.4696 -0.8786 -0 0.55557 -0.83147 0.75 0.6875 -0.0865 0.4696 -0.8786 --0.18024 0.382683 -0.906127 0.78125 0.625 -0.0865 0.4696 -0.8786 -0 0.55557 -0.83147 0.75 0.6875 -0.0865 0.4696 -0.8786 -0 0.382683 -0.923879 0.75 0.625 -0.0865 0.4696 -0.8786 --0.074658 -0.92388 -0.37533 0.78125 0.125 -0.0464 -0.881 -0.4709 --0.108386 -0.83147 -0.544895 0.78125 0.1875 -0.0464 -0.881 -0.4709 -0 -0.83147 -0.55557 0.75 0.1875 -0.0464 -0.881 -0.4709 --0.074658 -0.92388 -0.37533 0.78125 0.125 -0.0464 -0.881 -0.4709 -0 -0.83147 -0.55557 0.75 0.1875 -0.0464 -0.881 -0.4709 -0 -0.92388 -0.382683 0.75 0.125 -0.0464 -0.881 -0.4709 --0.191341 0.19509 -0.961939 0.78125 0.5625 -0.0938 0.289 -0.9527 --0.18024 0.382683 -0.906127 0.78125 0.625 -0.0938 0.289 -0.9527 -0 0.382683 -0.923879 0.75 0.625 -0.0938 0.289 -0.9527 --0.191341 0.19509 -0.961939 0.78125 0.5625 -0.0938 0.289 -0.9527 -0 0.382683 -0.923879 0.75 0.625 -0.0938 0.289 -0.9527 -0 0.19509 -0.980785 0.75 0.5625 -0.0938 0.289 -0.9527 --0.03806 -0.980785 -0.191342 0.78125 0.0625 -0.0286 -0.9565 -0.2902 --0.074658 -0.92388 -0.37533 0.78125 0.125 -0.0286 -0.9565 -0.2902 -0 -0.92388 -0.382683 0.75 0.125 -0.0286 -0.9565 -0.2902 --0.03806 -0.980785 -0.191342 0.78125 0.0625 -0.0286 -0.9565 -0.2902 -0 -0.92388 -0.382683 0.75 0.125 -0.0286 -0.9565 -0.2902 -0 -0.980785 -0.19509 0.75 0.0625 -0.0286 -0.9565 -0.2902 --0.19509 0 -0.980784 0.78125 0.5 -0.0976 0.0975 -0.9904 --0.191341 0.19509 -0.961939 0.78125 0.5625 -0.0976 0.0975 -0.9904 -0 0.19509 -0.980785 0.75 0.5625 -0.0976 0.0975 -0.9904 --0.19509 0 -0.980784 0.78125 0.5 -0.0976 0.0975 -0.9904 -0 0.19509 -0.980785 0.75 0.5625 -0.0976 0.0975 -0.9904 -0 0 -1 0.75 0.5 -0.0976 0.0975 -0.9904 --0.03806 0.980785 -0.191342 0.78125 0.9375 -0.0097 0.9951 -0.098 -0 1 0 0.765625 1 -0.0097 0.9951 -0.098 -0 0.980785 -0.19509 0.75 0.9375 -0.0097 0.9951 -0.098 -0 -1 0 0.765625 0 -0.0097 -0.9951 -0.098 --0.03806 -0.980785 -0.191342 0.78125 0.0625 -0.0097 -0.9951 -0.098 -0 -0.980785 -0.19509 0.75 0.0625 -0.0097 -0.9951 -0.098 +-0.37533 -0.19509 -0.906127 0.8125 0.4375 -0.2889 -0.0975 -0.9524 +-0.382683 0 -0.923879 0.8125 0.5 -0.2889 -0.0975 -0.9524 +-0.19509 0 -0.980784 0.78125 0.5 -0.2889 -0.0975 -0.9524 +-0.37533 -0.19509 -0.906127 0.8125 0.4375 -0.2889 -0.0975 -0.9524 +-0.19509 0 -0.980784 0.78125 0.5 -0.2889 -0.0975 -0.9524 +-0.191341 -0.19509 -0.961939 0.78125 0.4375 -0.2889 -0.0975 -0.9524 +-0.146446 0.92388 -0.353553 0.8125 0.875 -0.0846 0.9565 -0.279 +-0.074658 0.980785 -0.18024 0.8125 0.9375 -0.0846 0.9565 -0.279 +-0.03806 0.980785 -0.191342 0.78125 0.9375 -0.0846 0.9565 -0.279 +-0.146446 0.92388 -0.353553 0.8125 0.875 -0.0846 0.9565 -0.279 +-0.03806 0.980785 -0.191342 0.78125 0.9375 -0.0846 0.9565 -0.279 +-0.074658 0.92388 -0.37533 0.78125 0.875 -0.0846 0.9565 -0.279 +-0.353553 -0.382683 -0.853553 0.8125 0.375 -0.2779 -0.289 -0.9161 +-0.37533 -0.19509 -0.906127 0.8125 0.4375 -0.2779 -0.289 -0.9161 +-0.191341 -0.19509 -0.961939 0.78125 0.4375 -0.2779 -0.289 -0.9161 +-0.353553 -0.382683 -0.853553 0.8125 0.375 -0.2779 -0.289 -0.9161 +-0.191341 -0.19509 -0.961939 0.78125 0.4375 -0.2779 -0.289 -0.9161 +-0.18024 -0.382683 -0.906127 0.78125 0.375 -0.2779 -0.289 -0.9161 +-0.212607 0.83147 -0.513279 0.8125 0.8125 -0.1374 0.881 -0.4528 +-0.146446 0.92388 -0.353553 0.8125 0.875 -0.1374 0.881 -0.4528 +-0.074658 0.92388 -0.37533 0.78125 0.875 -0.1374 0.881 -0.4528 +-0.212607 0.83147 -0.513279 0.8125 0.8125 -0.1374 0.881 -0.4528 +-0.074658 0.92388 -0.37533 0.78125 0.875 -0.1374 0.881 -0.4528 +-0.108386 0.83147 -0.544895 0.78125 0.8125 -0.1374 0.881 -0.4528 +-0.318189 -0.55557 -0.768177 0.8125 0.3125 -0.2563 -0.4696 -0.8448 +-0.353553 -0.382683 -0.853553 0.8125 0.375 -0.2563 -0.4696 -0.8448 +-0.18024 -0.382683 -0.906127 0.78125 0.375 -0.2563 -0.4696 -0.8448 +-0.318189 -0.55557 -0.768177 0.8125 0.3125 -0.2563 -0.4696 -0.8448 +-0.18024 -0.382683 -0.906127 0.78125 0.375 -0.2563 -0.4696 -0.8448 +-0.162211 -0.55557 -0.815493 0.78125 0.3125 -0.2563 -0.4696 -0.8448 +-0.270598 0.707107 -0.653281 0.8125 0.75 -0.1847 0.7715 -0.6088 +-0.212607 0.83147 -0.513279 0.8125 0.8125 -0.1847 0.7715 -0.6088 +-0.108386 0.83147 -0.544895 0.78125 0.8125 -0.1847 0.7715 -0.6088 +-0.270598 0.707107 -0.653281 0.8125 0.75 -0.1847 0.7715 -0.6088 +-0.108386 0.83147 -0.544895 0.78125 0.8125 -0.1847 0.7715 -0.6088 +-0.13795 0.707107 -0.69352 0.78125 0.75 -0.1847 0.7715 -0.6088 +-0.270598 -0.707107 -0.653281 0.8125 0.25 -0.2248 -0.6326 -0.7412 +-0.318189 -0.55557 -0.768177 0.8125 0.3125 -0.2248 -0.6326 -0.7412 +-0.162211 -0.55557 -0.815493 0.78125 0.3125 -0.2248 -0.6326 -0.7412 +-0.270598 -0.707107 -0.653281 0.8125 0.25 -0.2248 -0.6326 -0.7412 +-0.162211 -0.55557 -0.815493 0.78125 0.3125 -0.2248 -0.6326 -0.7412 +-0.13795 -0.707107 -0.69352 0.78125 0.25 -0.2248 -0.6326 -0.7412 -0.191341 -0.19509 -0.961939 0.78125 0.4375 -0.0976 -0.0975 -0.9904 -0.19509 0 -0.980784 0.78125 0.5 -0.0976 -0.0975 -0.9904 0 0 -1 0.75 0.5 -0.0976 -0.0975 -0.9904 @@ -2882,3 +2840,45 @@ Data: -0.162211 0.55557 -0.815493 0.78125 0.6875 -0.0759 0.6326 -0.7708 0 0.707107 -0.707107 0.75 0.75 -0.0759 0.6326 -0.7708 0 0.55557 -0.83147 0.75 0.6875 -0.0759 0.6326 -0.7708 +-0.108386 -0.83147 -0.544895 0.78125 0.1875 -0.0624 -0.7715 -0.6332 +-0.13795 -0.707107 -0.69352 0.78125 0.25 -0.0624 -0.7715 -0.6332 +0 -0.707107 -0.707107 0.75 0.25 -0.0624 -0.7715 -0.6332 +-0.108386 -0.83147 -0.544895 0.78125 0.1875 -0.0624 -0.7715 -0.6332 +0 -0.707107 -0.707107 0.75 0.25 -0.0624 -0.7715 -0.6332 +0 -0.83147 -0.55557 0.75 0.1875 -0.0624 -0.7715 -0.6332 +-0.18024 0.382683 -0.906127 0.78125 0.625 -0.0865 0.4696 -0.8786 +-0.162211 0.55557 -0.815493 0.78125 0.6875 -0.0865 0.4696 -0.8786 +0 0.55557 -0.83147 0.75 0.6875 -0.0865 0.4696 -0.8786 +-0.18024 0.382683 -0.906127 0.78125 0.625 -0.0865 0.4696 -0.8786 +0 0.55557 -0.83147 0.75 0.6875 -0.0865 0.4696 -0.8786 +0 0.382683 -0.923879 0.75 0.625 -0.0865 0.4696 -0.8786 +-0.074658 -0.92388 -0.37533 0.78125 0.125 -0.0464 -0.881 -0.4709 +-0.108386 -0.83147 -0.544895 0.78125 0.1875 -0.0464 -0.881 -0.4709 +0 -0.83147 -0.55557 0.75 0.1875 -0.0464 -0.881 -0.4709 +-0.074658 -0.92388 -0.37533 0.78125 0.125 -0.0464 -0.881 -0.4709 +0 -0.83147 -0.55557 0.75 0.1875 -0.0464 -0.881 -0.4709 +0 -0.92388 -0.382683 0.75 0.125 -0.0464 -0.881 -0.4709 +-0.191341 0.19509 -0.961939 0.78125 0.5625 -0.0938 0.289 -0.9527 +-0.18024 0.382683 -0.906127 0.78125 0.625 -0.0938 0.289 -0.9527 +0 0.382683 -0.923879 0.75 0.625 -0.0938 0.289 -0.9527 +-0.191341 0.19509 -0.961939 0.78125 0.5625 -0.0938 0.289 -0.9527 +0 0.382683 -0.923879 0.75 0.625 -0.0938 0.289 -0.9527 +0 0.19509 -0.980785 0.75 0.5625 -0.0938 0.289 -0.9527 +-0.03806 -0.980785 -0.191342 0.78125 0.0625 -0.0286 -0.9565 -0.2902 +-0.074658 -0.92388 -0.37533 0.78125 0.125 -0.0286 -0.9565 -0.2902 +0 -0.92388 -0.382683 0.75 0.125 -0.0286 -0.9565 -0.2902 +-0.03806 -0.980785 -0.191342 0.78125 0.0625 -0.0286 -0.9565 -0.2902 +0 -0.92388 -0.382683 0.75 0.125 -0.0286 -0.9565 -0.2902 +0 -0.980785 -0.19509 0.75 0.0625 -0.0286 -0.9565 -0.2902 +-0.19509 0 -0.980784 0.78125 0.5 -0.0976 0.0975 -0.9904 +-0.191341 0.19509 -0.961939 0.78125 0.5625 -0.0976 0.0975 -0.9904 +0 0.19509 -0.980785 0.75 0.5625 -0.0976 0.0975 -0.9904 +-0.19509 0 -0.980784 0.78125 0.5 -0.0976 0.0975 -0.9904 +0 0.19509 -0.980785 0.75 0.5625 -0.0976 0.0975 -0.9904 +0 0 -1 0.75 0.5 -0.0976 0.0975 -0.9904 +-0.03806 0.980785 -0.191342 0.78125 0.9375 -0.0097 0.9951 -0.098 +0 1 0 0.765625 1 -0.0097 0.9951 -0.098 +0 0.980785 -0.19509 0.75 0.9375 -0.0097 0.9951 -0.098 +0 -1 0 0.765625 0 -0.0097 -0.9951 -0.098 +-0.03806 -0.980785 -0.191342 0.78125 0.0625 -0.0097 -0.9951 -0.098 +0 -0.980785 -0.19509 0.75 0.0625 -0.0097 -0.9951 -0.098