Compare commits

...
Sign in to create a new pull request.

12 commits

16 changed files with 6477 additions and 0 deletions

241
CameraTest.m Normal file
View file

@ -0,0 +1,241 @@
%Camera to position
clc;
clear all;
close all;
%constants
RGB = 1;
TOP_CAM_H = 13;
TOP_CAM_FOV_H = 90;
TOP_CAM_FOV_V = 58.70567;
TOP_CAM_IMG_W = 3840;
TOP_CAM_IMG_H = 2160;
SIDE_CAM_H = .6;
SIDE_CAM_Y = 9.5;
SIDE_CAM_FOV_H = 133.1735;
SIDE_CAM_FOV_V = 120;
SIDE_CAM_IMG_W = 3840;
SIDE_CAM_IMG_H = 2160;
NA = 0;
Data = [0, 0, 0, 0, 0, 0];
%cent = [0, 0, 0, 0, 0, 0]; %test array
%Include source files in path
addpath(genpath('../src'))
%Initialization Parameters
server_ip = '127.0.0.1'; %IP address of the Unity Server
server_port = 55001; %Server Port of the Unity Sever
client = tcpclient(server_ip,server_port);
fprintf(1,"Connected to server\n");
%--------------------------------------------------------------------------------------
% x,y,z,yaw[z],pitch[y],roll[x]
pose = [0,44,0,90,-90,3]; % move TennisBall out of the way
unityLink(client,pose);
%TopCamera Baseline
pose = [NA,NA,NA,NA,NA,0]; % move camera Top
unityLink(client,pose);
unityImage = unityLink(client,pose);
baselineTop = unityImage;
imwrite(baselineTop,"baselineTop.png");
%SideCamera Baseline
pose = [NA,NA,NA,NA,NA,1]; % move camera Side
unityLink(client,pose);
unityImage = unityLink(client,pose);
baselineSide = unityImage;
imwrite(baselineSide,"baselineSide.png");
%import serve data
filename = 'serves/serve4.dat';
M = readmatrix(filename);
%Enter Loop
for i = 1:1:(length(M)) % [m]
%Pull position from serve data
heightZ = M(i,2);%1;
lengthX = M(i,1);%2;
widthY = M(i,3);%2;
pose = [lengthX,heightZ,widthY,90,-90,3]; % move TennisBall
unityLink(client,pose);
%----------------------------------------------------------------------------------------------------------
%Camera position Top
pose = [NA,NA,NA,NA,NA,0]; % move camera Top position
unityImage = unityLink(client,pose);
TenisBallOnly = imsubtract(unityImage, baselineTop);
% use RGB values here instead grey Scales a problem
[rowR,colR] = find(abs(TenisBallOnly(:,:,1)) ~= 0);% thresholdNum);%find tennis ball indexes
[rowG,colG] = find(abs(TenisBallOnly(:,:,2)) ~= 0);%> thresholdNum);
[rowB,colB] = find(abs(TenisBallOnly(:,:,3)) ~= 0);%> thresholdNum);
xTopR = mean(colR);
yTopR = mean(rowR);
%xTopG = mean(colG);
%yTopG = mean(rowG);
%xTopB = mean(colB);
%yTopB = mean(rowB);
%cent(end+1,:) = [xTopR, yTopR, xTopG, yTopG,xTopB, yTopB]; %test
%array
%uses Red
xTop = xTopR;
yTop = yTopR;
%----------------------------------------------------------------------------------------------------------
%Camera Position Side
pose = [NA,NA,NA,NA,NA,1]; % move camera Side position
unityImage = unityLink(client,pose);
% imwrite(unityImage,"Side.png");
TenisBallOnly = imsubtract(unityImage, baselineSide); %imsubtract
%imshow(unityImage);
% use RGB values here instead grey Scales a problem
[row,col] = find(TenisBallOnly(:,:,RGB) ~= 0);%find tennis ball indexes
xSide = mean(col);
ySide = mean(row);
%------------------------------------------------------------------------------------------------------------
%Calculate 3D position
[X,Y,Z] = find3DOrthogonal(xTop, yTop, xSide, ySide);
if(~(isnan(X)))
Data(end+1,:) = [lengthX, widthY, heightZ, X, Y, Z];%
end
end
figure
scatter3(0,0,TOP_CAM_H); %Top Camera
hold on
scatter3(SIDE_CAM_Y,0,SIDE_CAM_H); %Side Camera
scatter3(Data(:,1),Data(:,2),Data(:,3),10,'filled') %Actual Position
scatter3(Data(2,1),Data(2,2),Data(2,3), 200,'x','red') %Starting Postion
scatter3(Data(:,4),Data(:,5),Data(:,6),10,'filled','blue') %Calculated Position
patch([5.02 -5.02 -5.02 5.02], [11.88 11.88 -11.88 -11.88], [0 0 0 0],'Green') %Tennis Court Plane
scatter3([15 15 -15 -15 15 15 -15 -15],[15 -15 15 -15 15 -15 15 -15],[-1 -1 -1 -1 TOP_CAM_H TOP_CAM_H TOP_CAM_H TOP_CAM_H],1,'x'); %Corrners
xlabel("Unity X")
ylabel("Unity Z")
zlabel("Unity Y")
hold off
figure
title("X postion vs sample number")
hold on
plot(Data(2:end,1))
plot(Data(2:end,4))
hold off
figure
title("Z postion vs sample number")
hold on
plot(Data(2:end,2))
plot(Data(2:end,5))
hold off
figure
title("Y(height) postion vs sample number")
hold on
plot(Data(2:end,3))
plot(Data(2:end,6))
hold off
%--------------------------------------------------------------------------------------
%Poly fit stuff uncomment all to see results
%t = 0:(size(Data)-2);
%
%tz = 0:(size(Data)-2);
%d = (Data(2:end,5));
%
%p = polyfit(tz,d',2);
%zfit = polyval(p,tz);
%
%figure
%title("Z postion vs sample number PolyFit")
%hold on
%plot(Data(2:end,2))
%plot(zfit)
%hold off
%
%tx = 0:(size(Data)-2);
%d = (Data(2:end,4));
%
%p = polyfit(tx,d',2);
%xfit = polyval(p,tz);
%
%figure
%title("X postion vs sample number PolyFit")
%hold on
%plot(Data(2:end,1))
%plot(xfit)
%hold off
%
%d = (Data(2:end,6));
%[zeros,zIdx] = min(d);
%ty1 = 1:(zIdx-1);
%ty2 = (zIdx-1):(size(Data)-2);
%d1 = (Data(2:zIdx,6));
%d2 = (Data(zIdx:size(Data)-1,6));
%
%
%p1 = polyfit(ty1,d1',3);
%%yfit1 = polyval(p1,t);
%
%p2 = polyfit(ty2,d2',3);
%%yfit2 = polyval(p2,ty);
%
%
%
%yfit = horzcat(polyval(p1,ty1),polyval(p2,ty2));
%
%figure
%title("Y(height) postion vs sample number PolyFit")
%hold on
%plot(Data(2:end,3))
%plot(yfit)
%hold off
%
%figure
%scatter3(0,0,TOP_CAM_H); %Top Camera
%hold on
%scatter3(SIDE_CAM_Y,0,SIDE_CAM_H); %Side Camera
%scatter3(Data(:,1),Data(:,2),Data(:,3),10,'filled') %Actual Position
%scatter3(Data(2,1),Data(2,2),Data(2,3), 200,'x','red') %Starting Postion
%
%scatter3(xfit,zfit,yfit,10,'filled','blue') %Calculated Position
%patch([5.02 -5.02 -5.02 5.02], [11.88 11.88 -11.88 -11.88], [0 0 0 0],'Green') %Tennis Court Plane
%scatter3([15 15 -15 -15 15 15 -15 -15],[15 -15 15 -15 15 -15 15 -15],[-1 -1 -1 -1 TOP_CAM_H TOP_CAM_H TOP_CAM_H TOP_CAM_H],1,'x'); %Corrners
%
%xlabel("Unity X")
%ylabel("Unity Z")
%zlabel("Unity Y")
%
%hold off
%Close Gracefully
fprintf(1,"Disconnected from server\n");

298
Server.cs Normal file
View file

@ -0,0 +1,298 @@
using System;
using System.Net.Sockets;
using System.Text;
using System.Collections;
using System.Collections.Generic;
using System.Threading;
using UnityEngine;
using System.Net;
using System.IO;
public class Server : MonoBehaviour {
//General Init
private List<ServerClient> clients;
private List<int> disconnectIndex;
//Camera Variables
private GameObject MainCam;
RenderTexture CameraRender;
byte[] EncodedPng;
int Height;
int Width;
bool ScreenshotDone;
/////////////////////////////////////////////////////////////////////////////
// main GUI components that appear for the user.
/////////////////////////////////////////////////////////////////////////////
[Header("Server Settings")]
public int Port = 55001;
private TcpListener server;
private bool serverStarted;
[Header("Game Object Settings")]
public string ObjectName = "";
//public Vector2 Resolution = new Vector2();
/////////////////////////////////////////////////////////////////////////////
// Use this for initialization
void Start () {
clients = new List<ServerClient>();
disconnectIndex = new List<int>();
try {
server = new TcpListener(IPAddress.Any, Port);
server.Start();
Startlistening();
serverStarted = true;
Debug.Log("Server has started on port:" + Port.ToString());
}
catch (Exception e) {
Debug.Log("Socket Error " + e.Message);
}
InvokeRepeating("UpdateLoop", 0f, 0.003f);
}
private void UpdateLoop(){
if(this.MainCam == null)
this.MainCam = GameObject.Find("cameraTop");
if (!serverStarted)
return;
if(clients.Count == 0)
return;
for(int c = 0; c < clients.Count; c++ ) {
//Check if clients are connected
if(!isConnected(clients[c].tcp)) {
clients[c].tcp.Close();
disconnectIndex.Add(c);
Debug.Log(clients[c].clientName + " has disconnected from the server");
continue;
}
// Check for data from client
else {
float[] myFloat = new float[8];
NetworkStream s = clients[c].tcp.GetStream();
if (s.DataAvailable) {
byte[] RecievedString = new byte[sizeof(float)*8];
if (RecievedString != null){
s.Read(RecievedString, 0, sizeof(float)*8);
myFloat = ConvertBytes2Float(RecievedString);
moveCamera(myFloat);
StartCoroutine(SendCamCapture(clients[c], MainCam.GetComponent<Camera>(), myFloat[0].ToString(), myFloat[1].ToString()));
}
s.Flush();
}
}
}
//Clean up Disconnected Clients
for(int i = 0; i < disconnectIndex.Count; i++) {
clients.RemoveAt(disconnectIndex[i]);
}
disconnectIndex.Clear();
}
private byte[] ConvertFloat2Bytes(float[] FloatArray){
var byteArray = new byte[FloatArray.Length * sizeof(float)];
Buffer.BlockCopy(FloatArray, 0, byteArray, 0, byteArray.Length);
return byteArray;
}
private float[] ConvertBytes2Float(byte[] byteArray){
var floatArray = new float[byteArray.Length / sizeof(float)];
Buffer.BlockCopy(byteArray, 0, floatArray, 0, byteArray.Length);
return floatArray;
}
//Checks if client is connected
private bool isConnected(TcpClient c){
try {
if(c != null && c.Client != null && c.Client.Connected){ //Makes sure the client is connected
if(c.Client.Poll(0, SelectMode.SelectRead)){ //Polls the Client for activity
return !(c.Client.Receive(new byte[1], SocketFlags.Peek) == 0); //Checks for response
}
return true;
}
else
return false;
}
catch {
return false;
}
}
//Begins connection with client
private void AcceptServerClient(IAsyncResult ar){
TcpListener listener = (TcpListener)ar.AsyncState;
ServerClient NewClient = new ServerClient(listener.EndAcceptTcpClient(ar), null);
Debug.Log("Someone has connected");
clients.Add(NewClient);
Startlistening();
}
//Starts listening on server socket
private void Startlistening(){
server.BeginAcceptTcpClient(AcceptServerClient, server);
}
//Try to close all the connections gracefully
void OnApplicationQuit(){
for (int i = 0; i < clients.Count; i++){
try{
clients[i].tcp.GetStream().Close();
clients[i].tcp.Close();
}
catch { }
}
Debug.Log("Connections Closed");
}
//Sends out data
public void OutgoingData(ServerClient c, byte[] data){
NetworkStream ClientStream = c.tcp.GetStream();
try{
ClientStream.Write(data, 0, data.Length);
}
catch (Exception e) {
Debug.LogError("Could not write to client.\n Error:" + e);
}
}
// Matlab used NED right-handed coordinate system
// +x forward [optical axis]
// +y right
// +z down
// Unity uses a wild left-handed coordinate system
// +x right
// +y up
// +z forward [optical axis]
// matlab unity
// forward x z
// right y x
// down z -y
private void moveCamera(float[] pose){
float x_rot = pose[7];
if(x_rot == 0)
{
ObjectName = "cameraTop";
this.MainCam = GameObject.Find("cameraTop");
}
else if(x_rot == 1)
{
ObjectName = "cameraSide";
this.MainCam = GameObject.Find("cameraSide");
}
else
{
ObjectName = "TennisBall";
}
GameObject ClientObj = GameObject.Find(ObjectName);
// x,y,z,yaw[z],pitch[y],roll[x]
float x_trans = pose[2];
float y_trans = pose[3];
float z_trans = pose[4];
float z_rot = pose[5];
float y_rot = pose[6];
Debug.Log("hello:" + x_trans);
//Vector3 matlabTranslate = new Vector3(y_trans, -z_trans, x_trans);
//Vector3 matlabTranslate = new Vector3(x_trans, y_trans, z_trans);
// perform translation
//ClientObj.transform.position = transform.TransformVector(matlabTranslate);
//ClientObj.transform.position = ClientObj.transform.position + new Vector3(x_trans, y_trans, z_trans);
if(ObjectName == "TennisBall")
{
ClientObj.transform.position = new Vector3(x_trans, y_trans, z_trans);
// perform rotation in yaw, pitch, roll order while converting to left hand coordinate system.
ClientObj.transform.rotation = Quaternion.AngleAxis(z_rot, Vector3.up) * // yaw [z]
Quaternion.AngleAxis(-y_rot, Vector3.right)* // pitch [y]
Quaternion.AngleAxis(0, Vector3.forward); // roll [x]
}
}
//Organizes and Sends Picture
IEnumerator SendCamCapture(ServerClient c, Camera CameraSelect, string Width, string Height){
CaptureImage(CameraSelect, int.Parse(Width), int.Parse(Height));
while (!this.CaptureDone()){
yield return null;
}
OutgoingData(c, this.ReturnCaptureBytes());
Debug.Log("Captured Image");
}
IEnumerator GetRender(Camera cam){
this.CameraRender = new RenderTexture(this.Width, this.Height, 16);
cam.enabled = true;
cam.targetTexture = CameraRender;
Texture2D tempTex = new Texture2D(CameraRender.width, CameraRender.height, TextureFormat.RGB24, false);
cam.Render();
RenderTexture.active = CameraRender;//Sets the Render
tempTex.ReadPixels(new Rect(0, 0, CameraRender.width, CameraRender.height), 0, 0);
tempTex.Apply();
EncodedPng = tempTex.GetRawTextureData();
Destroy(tempTex);
yield return null;
CameraRender.Release();
cam.targetTexture = null;
ScreenshotDone = true;
}
public void CaptureImage(Camera SelectedCamera, int UsrWidth, int UsrHeight){
ScreenshotDone = false;
this.Width = UsrWidth;
this.Height = UsrHeight;
if (SelectedCamera != null){
StartCoroutine(GetRender(SelectedCamera));
}
}
public int GetWidth(){
return this.Width;
}
public int GetHeight(){
return this.Height;
}
public bool CaptureDone(){
return ScreenshotDone;
}
public byte[] ReturnCaptureBytes(){
return EncodedPng;
}
IEnumerator SerializeCapture(ServerClient c, byte[] PixelData, int Width, int Length){
OutgoingData(c, PixelData);
yield return null;
}
}
public class ServerClient {
public TcpClient tcp;
public string clientName;
public List<GameObject> ClientObj;
public ServerClient(TcpClient clientSocket, string Name) {
clientName = Name;
tcp = clientSocket;
ClientObj = new List<GameObject>();
}
}

50
find3DOrthogonal.m Normal file
View file

@ -0,0 +1,50 @@
function [y_comp,x_comp,h_ball] = find3DOrthogonal(top_ball_x_px, top_ball_y_px, side_ball_x_px, side_ball_y_px)
% constants
TOP_CAM_H = 13;
TOP_CAM_FOV_H = 90;
TOP_CAM_FOV_V = 58.70567;
TOP_CAM_IMG_W = 3840;
TOP_CAM_IMG_H = 2160;
SIDE_CAM_H = .6;
SIDE_CAM_Y = 9.5;
SIDE_CAM_FOV_H = 133.1735;
SIDE_CAM_FOV_V = 120;
SIDE_CAM_IMG_W = 3840;
SIDE_CAM_IMG_H = 2160;
%Calculations% x position
theta_x = (top_ball_x_px - (TOP_CAM_IMG_W / 2)) * (TOP_CAM_FOV_H / TOP_CAM_IMG_W);
x_ball = TOP_CAM_H * tand(theta_x);
% y position
theta_y = (top_ball_y_px - (TOP_CAM_IMG_H / 2)) * (TOP_CAM_FOV_V / TOP_CAM_IMG_H);
y_ball = TOP_CAM_H * tand(theta_y);
% height
theta_h = ((SIDE_CAM_IMG_H / 2) - side_ball_y_px) * (SIDE_CAM_FOV_V / SIDE_CAM_IMG_H);
h_ball = (SIDE_CAM_H + (tand(theta_h) * (SIDE_CAM_Y - y_ball))) / (1 - (y_ball*tand(theta_h) / TOP_CAM_H));
% x & y positions compensated based on height
x_comp = x_ball * (1 - (h_ball / TOP_CAM_H));
y_comp = y_ball * (1 - (h_ball / TOP_CAM_H)); % THIS ONE
%x_comp =x_ball;
%y_comp = y_ball;
h_ball = h_ball - .2;
h_error = .38*h_ball;
h_ball = h_ball + h_error;
h_error = .16*h_ball;
h_ball = h_ball + h_error;
end
%TODO
% 1) take out rgb2grey and find circle with rgb image
% 2) figure out how are calculated based on camera as refences

1439
serve4.dat Normal file

File diff suppressed because it is too large Load diff

475
serves/serve1.dat Normal file
View file

@ -0,0 +1,475 @@
-3.115 3 -11.285
-3.11 2.994 -11.225
-3.105 2.988 -11.165
-3.1 2.982 -11.105
-3.095 2.9759 -11.045
-3.09 2.9699 -10.985
-3.085 2.9638 -10.925
-3.08 2.9578 -10.865
-3.075 2.9517 -10.805
-3.07 2.9456 -10.745
-3.065 2.9395 -10.685
-3.06 2.9334 -10.625
-3.055 2.9273 -10.565
-3.05 2.9212 -10.505
-3.045 2.915 -10.445
-3.04 2.9089 -10.385
-3.035 2.9027 -10.325
-3.03 2.8966 -10.265
-3.025 2.8904 -10.205
-3.02 2.8842 -10.145
-3.015 2.878 -10.085
-3.01 2.8718 -10.025
-3.005 2.8656 -9.965
-3 2.8594 -9.905
-2.995 2.8532 -9.845
-2.99 2.8469 -9.7849
-2.985 2.8407 -9.7249
-2.98 2.8344 -9.6649
-2.975 2.8281 -9.6049
-2.97 2.8219 -9.5449
-2.965 2.8156 -9.4849
-2.96 2.8093 -9.4249
-2.955 2.803 -9.3649
-2.95 2.7967 -9.3049
-2.945 2.7903 -9.2449
-2.94 2.784 -9.1849
-2.935 2.7776 -9.1249
-2.93 2.7713 -9.0649
-2.925 2.7649 -9.0049
-2.92 2.7585 -8.9449
-2.915 2.7521 -8.8849
-2.91 2.7457 -8.8249
-2.905 2.7393 -8.7649
-2.9 2.7329 -8.7049
-2.895 2.7265 -8.6449
-2.89 2.7201 -8.5849
-2.885 2.7136 -8.5249
-2.88 2.7072 -8.4649
-2.875 2.7007 -8.4049
-2.87 2.6942 -8.3449
-2.865 2.6877 -8.2849
-2.86 2.6812 -8.2249
-2.855 2.6747 -8.1649
-2.85 2.6682 -8.1049
-2.845 2.6617 -8.0449
-2.84 2.6552 -7.9849
-2.835 2.6486 -7.9249
-2.83 2.6421 -7.8649
-2.825 2.6355 -7.8049
-2.82 2.6289 -7.7449
-2.815 2.6223 -7.6849
-2.81 2.6157 -7.6249
-2.805 2.6091 -7.5649
-2.8 2.6025 -7.5049
-2.795 2.5959 -7.4449
-2.79 2.5893 -7.3849
-2.785 2.5826 -7.3249
-2.78 2.576 -7.2649
-2.775 2.5693 -7.2049
-2.77 2.5626 -7.1449
-2.765 2.5559 -7.0849
-2.76 2.5493 -7.0249
-2.755 2.5426 -6.9649
-2.75 2.5358 -6.9049
-2.745 2.5291 -6.8449
-2.74 2.5224 -6.7848
-2.735 2.5157 -6.7248
-2.73 2.5089 -6.6648
-2.725 2.5021 -6.6048
-2.72 2.4954 -6.5448
-2.715 2.4886 -6.4848
-2.71 2.4818 -6.4248
-2.705 2.475 -6.3648
-2.7 2.4682 -6.3048
-2.695 2.4614 -6.2448
-2.69 2.4545 -6.1848
-2.685 2.4477 -6.1248
-2.68 2.4409 -6.0648
-2.675 2.434 -6.0048
-2.67 2.4271 -5.9448
-2.665 2.4202 -5.8848
-2.66 2.4134 -5.8248
-2.655 2.4065 -5.7648
-2.65 2.3996 -5.7048
-2.645 2.3926 -5.6448
-2.64 2.3857 -5.5848
-2.635 2.3788 -5.5248
-2.63 2.3718 -5.4648
-2.625 2.3649 -5.4048
-2.62 2.3579 -5.3448
-2.615 2.3509 -5.2848
-2.61 2.3439 -5.2248
-2.605 2.3369 -5.1648
-2.6 2.3299 -5.1048
-2.595 2.3229 -5.0448
-2.59 2.3159 -4.9848
-2.585 2.3089 -4.9248
-2.58 2.3018 -4.8648
-2.575 2.2948 -4.8048
-2.57 2.2877 -4.7448
-2.565 2.2806 -4.6848
-2.56 2.2735 -4.6248
-2.555 2.2664 -4.5648
-2.55 2.2593 -4.5048
-2.545 2.2522 -4.4448
-2.54 2.2451 -4.3848
-2.535 2.238 -4.3248
-2.53 2.2308 -4.2648
-2.525 2.2237 -4.2048
-2.52 2.2165 -4.1448
-2.515 2.2093 -4.0848
-2.51 2.2022 -4.0248
-2.505 2.195 -3.9648
-2.5 2.1878 -3.9048
-2.495 2.1806 -3.8448
-2.49 2.1733 -3.7847
-2.485 2.1661 -3.7247
-2.48 2.1589 -3.6647
-2.475 2.1516 -3.6047
-2.47 2.1443 -3.5447
-2.465 2.1371 -3.4847
-2.46 2.1298 -3.4247
-2.455 2.1225 -3.3647
-2.45 2.1152 -3.3047
-2.445 2.1079 -3.2447
-2.44 2.1006 -3.1847
-2.435 2.0932 -3.1247
-2.43 2.0859 -3.0647
-2.425 2.0786 -3.0047
-2.42 2.0712 -2.9447
-2.415 2.0638 -2.8847
-2.41 2.0564 -2.8247
-2.405 2.0491 -2.7647
-2.4 2.0417 -2.7047
-2.395 2.0343 -2.6447
-2.39 2.0268 -2.5847
-2.385 2.0194 -2.5247
-2.38 2.012 -2.4647
-2.375 2.0045 -2.4047
-2.37 1.9971 -2.3447
-2.365 1.9896 -2.2847
-2.36 1.9821 -2.2247
-2.355 1.9746 -2.1647
-2.35 1.9671 -2.1047
-2.345 1.9596 -2.0447
-2.34 1.9521 -1.9847
-2.335 1.9446 -1.9247
-2.33 1.9371 -1.8647
-2.325 1.9295 -1.8047
-2.32 1.922 -1.7447
-2.315 1.9144 -1.6847
-2.31 1.9068 -1.6247
-2.305 1.8992 -1.5647
-2.3 1.8916 -1.5047
-2.295 1.884 -1.4447
-2.29 1.8764 -1.3847
-2.285 1.8688 -1.3247
-2.28 1.8612 -1.2647
-2.275 1.8535 -1.2047
-2.27 1.8459 -1.1447
-2.265 1.8382 -1.0847
-2.26 1.8305 -1.0247
-2.255 1.8228 -0.9647
-2.25 1.8152 -0.9047
-2.245 1.8075 -0.8447
-2.24 1.7997 -0.7846
-2.235 1.792 -0.7246
-2.23 1.7843 -0.6646
-2.225 1.7765 -0.6046
-2.22 1.7688 -0.5446
-2.215 1.761 -0.4846
-2.21 1.7533 -0.4246
-2.205 1.7455 -0.3646
-2.2 1.7377 -0.3046
-2.195 1.7299 -0.2446
-2.19 1.7221 -0.1846
-2.185 1.7143 -0.1246
-2.18 1.7064 -0.0646
-2.175 1.6986 -0.0046
-2.17 1.6907 0.0554
-2.165 1.6829 0.1154
-2.16 1.675 0.1754
-2.155 1.6671 0.2354
-2.15 1.6592 0.2954
-2.145 1.6513 0.3554
-2.14 1.6434 0.4154
-2.135 1.6355 0.4754
-2.13 1.6276 0.5354
-2.125 1.6197 0.5954
-2.12 1.6117 0.6554
-2.115 1.6037 0.7154
-2.11 1.5958 0.7754
-2.105 1.5878 0.8354
-2.1 1.5798 0.8954
-2.095 1.5718 0.9554
-2.09 1.5638 1.0154
-2.085 1.5558 1.0754
-2.08 1.5478 1.1354
-2.075 1.5397 1.1954
-2.07 1.5317 1.2554
-2.065 1.5236 1.3154
-2.06 1.5156 1.3754
-2.055 1.5075 1.4354
-2.05 1.4994 1.4954
-2.045 1.4913 1.5554
-2.04 1.4832 1.6154
-2.035 1.4751 1.6754
-2.03 1.467 1.7354
-2.025 1.4588 1.7954
-2.02 1.4507 1.8554
-2.015 1.4425 1.9154
-2.01 1.4344 1.9754
-2.005 1.4262 2.0354
-2 1.418 2.0954
-1.995 1.4098 2.1554
-1.99 1.4016 2.2155
-1.985 1.3934 2.2755
-1.98 1.3852 2.3355
-1.975 1.377 2.3955
-1.97 1.3687 2.4555
-1.965 1.3605 2.5155
-1.96 1.3522 2.5755
-1.955 1.3439 2.6355
-1.95 1.3356 2.6955
-1.945 1.3274 2.7555
-1.94 1.3191 2.8155
-1.935 1.3107 2.8755
-1.93 1.3024 2.9355
-1.925 1.2941 2.9955
-1.92 1.2858 3.0555
-1.915 1.2774 3.1155
-1.91 1.269 3.1755
-1.905 1.2607 3.2355
-1.9 1.2523 3.2955
-1.895 1.2439 3.3555
-1.89 1.2355 3.4155
-1.885 1.2271 3.4755
-1.88 1.2187 3.5355
-1.875 1.2103 3.5955
-1.87 1.2018 3.6555
-1.865 1.1934 3.7155
-1.86 1.1849 3.7755
-1.855 1.1764 3.8355
-1.85 1.168 3.8955
-1.845 1.1595 3.9555
-1.84 1.151 4.0155
-1.835 1.1425 4.0755
-1.83 1.134 4.1355
-1.825 1.1254 4.1955
-1.82 1.1169 4.2555
-1.815 1.1083 4.3155
-1.81 1.0998 4.3755
-1.805 1.0912 4.4355
-1.8 1.0827 4.4955
-1.795 1.0741 4.5555
-1.79 1.0655 4.6155
-1.785 1.0569 4.6755
-1.78 1.0483 4.7355
-1.775 1.0396 4.7955
-1.77 1.031 4.8555
-1.765 1.0223 4.9155
-1.76 1.0137 4.9755
-1.755 1.005 5.0355
-1.75 0.9964 5.0955
-1.745 0.9877 5.1555
-1.74 0.979 5.2156
-1.735 0.9703 5.2756
-1.73 0.9616 5.3356
-1.725 0.9528 5.3956
-1.72 0.9441 5.4556
-1.715 0.9354 5.5156
-1.71 0.9266 5.5756
-1.705 0.9179 5.6356
-1.7 0.9091 5.6956
-1.695 0.9003 5.7556
-1.69 0.8915 5.8156
-1.685 0.8827 5.8756
-1.68 0.8739 5.9356
-1.675 0.8651 5.9956
-1.67 0.8562 6.0556
-1.665 0.8474 6.1156
-1.66 0.8386 6.1756
-1.655 0.8297 6.2356
-1.65 0.8208 6.2956
-1.645 0.8119 6.3556
-1.64 0.8031 6.4156
-1.635 0.7942 6.4756
-1.63 0.7852 6.5356
-1.625 0.7763 6.5956
-1.62 0.7674 6.6556
-1.6149 0.7585 6.7156
-1.6099 0.7495 6.7756
-1.6049 0.7406 6.8356
-1.5999 0.7316 6.8956
-1.5949 0.7226 6.9556
-1.5899 0.7136 7.0156
-1.5849 0.7046 7.0756
-1.5799 0.6956 7.1356
-1.5749 0.6866 7.1956
-1.5699 0.6776 7.2556
-1.5649 0.6685 7.3156
-1.5599 0.6595 7.3756
-1.5549 0.6504 7.4356
-1.5499 0.6414 7.4956
-1.5449 0.6323 7.5556
-1.5399 0.6232 7.6156
-1.5349 0.6141 7.6756
-1.5299 0.605 7.7356
-1.5249 0.5959 7.7956
-1.5199 0.5868 7.8556
-1.5149 0.5776 7.9156
-1.5099 0.5685 7.9756
-1.5049 0.5593 8.0356
-1.4999 0.5502 8.0956
-1.4949 0.541 8.1556
-1.4899 0.5318 8.2157
-1.4849 0.5226 8.2757
-1.4799 0.5134 8.3357
-1.4749 0.5042 8.3957
-1.4699 0.495 8.4557
-1.4649 0.4857 8.5157
-1.4599 0.4765 8.5757
-1.4549 0.4672 8.6357
-1.4499 0.458 8.6957
-1.4449 0.4487 8.7557
-1.4399 0.4394 8.8157
-1.4349 0.4301 8.8757
-1.4299 0.4208 8.9357
-1.4249 0.4115 8.9957
-1.4199 0.4022 9.0557
-1.4149 0.3929 9.1157
-1.4099 0.3835 9.1757
-1.4049 0.3742 9.2357
-1.3999 0.3648 9.2957
-1.3949 0.3555 9.3557
-1.3899 0.3461 9.4157
-1.3849 0.3367 9.4757
-1.3799 0.3273 9.5357
-1.3749 0.3179 9.5957
-1.3699 0.3085 9.6557
-1.3649 0.299 9.7157
-1.3599 0.2896 9.7757
-1.3549 0.2801 9.8357
-1.3499 0.2707 9.8957
-1.3449 0.2612 9.9557
-1.3399 0.2517 10.0157
-1.3349 0.2422 10.0757
-1.3299 0.2327 10.1357
-1.3249 0.2232 10.1957
-1.3199 0.2137 10.2557
-1.3149 0.2042 10.3157
-1.3099 0.1947 10.3757
-1.3049 0.1851 10.4357
-1.2999 0.1756 10.4957
-1.2949 0.166 10.5557
-1.2899 0.1564 10.6157
-1.2849 0.1468 10.6757
-1.2799 0.1372 10.7357
-1.2749 0.1276 10.7957
-1.2699 0.118 10.8557
-1.2649 0.1084 10.9157
-1.2599 0.0988 10.9757
-1.2549 0.0891 11.0357
-1.2499 0.0795 11.0957
-1.2449 0.0698 11.1557
-1.2399 0.0601 11.2158
-1.2349 0.0504 11.2758
-1.2299 0.0407 11.3358
-1.2249 0.031 11.3958
-1.2199 0.0213 11.4558
-1.2149 0.0116 11.5158
-1.2099 0.0019 11.5758
-1.209 -0 11.5872
-1.209 0 11.5872
-1.204 0.0068 11.6472
-1.199 0.0136 11.7072
-1.194 0.0204 11.7672
-1.189 0.0272 11.8272
-1.184 0.034 11.8872
-1.179 0.0407 11.9472
-1.174 0.0475 12.0072
-1.169 0.0542 12.0672
-1.164 0.061 12.1272
-1.159 0.0677 12.1873
-1.154 0.0744 12.2473
-1.149 0.0811 12.3073
-1.144 0.0878 12.3673
-1.139 0.0945 12.4273
-1.134 0.1012 12.4873
-1.129 0.1078 12.5473
-1.124 0.1145 12.6073
-1.119 0.1211 12.6673
-1.114 0.1278 12.7273
-1.109 0.1344 12.7873
-1.104 0.141 12.8473
-1.099 0.1476 12.9073
-1.094 0.1542 12.9673
-1.089 0.1608 13.0273
-1.084 0.1674 13.0873
-1.079 0.174 13.1473
-1.074 0.1805 13.2073
-1.069 0.1871 13.2673
-1.064 0.1936 13.3273
-1.059 0.2001 13.3873
-1.054 0.2066 13.4473
-1.049 0.2132 13.5073
-1.044 0.2197 13.5673
-1.039 0.2261 13.6273
-1.034 0.2326 13.6873
-1.029 0.2391 13.7473
-1.024 0.2455 13.8073
-1.019 0.252 13.8673
-1.014 0.2584 13.9273
-1.009 0.2649 13.9873
-1.004 0.2713 14.0473
-0.999 0.2777 14.1073
-0.994 0.2841 14.1673
-0.989 0.2905 14.2273
-0.984 0.2969 14.2873
-0.979 0.3032 14.3473
-0.974 0.3096 14.4073
-0.969 0.316 14.4673
-0.964 0.3223 14.5273
-0.959 0.3286 14.5873
-0.954 0.335 14.6473
-0.949 0.3413 14.7073
-0.944 0.3476 14.7673
-0.939 0.3539 14.8273
-0.934 0.3601 14.8873
-0.929 0.3664 14.9473
-0.924 0.3727 15.0073
-0.919 0.3789 15.0673
-0.914 0.3852 15.1273
-0.909 0.3914 15.1874
-0.904 0.3976 15.2474
-0.899 0.4039 15.3074
-0.894 0.4101 15.3674
-0.889 0.4163 15.4274
-0.884 0.4224 15.4874
-0.879 0.4286 15.5474
-0.874 0.4348 15.6074
-0.869 0.4409 15.6674
-0.864 0.4471 15.7274
-0.859 0.4532 15.7874
-0.854 0.4593 15.8474
-0.849 0.4655 15.9074
-0.844 0.4716 15.9674
-0.839 0.4777 16.0274
-0.834 0.4838 16.0874
-0.829 0.4898 16.1474
-0.824 0.4959 16.2074
-0.819 0.502 16.2674
-0.814 0.508 16.3274
-0.809 0.514 16.3874
-0.804 0.5201 16.4474
-0.799 0.5261 16.5074
-0.794 0.5321 16.5674
-0.789 0.5381 16.6274
-0.784 0.5441 16.6874
-0.779 0.5501 16.7474
-0.774 0.556 16.8074
-0.769 0.562 16.8674
-0.764 0.5679 16.9274
-0.759 0.5739 16.985
-0.759 0.5739 16.985

570
serves/serve2.dat Normal file
View file

@ -0,0 +1,570 @@
-3.115 3.1 -11.285
-3.105 3.093 -11.235
-3.095 3.086 -11.185
-3.085 3.079 -11.135
-3.075 3.0719 -11.085
-3.065 3.0649 -11.035
-3.055 3.0578 -10.985
-3.045 3.0508 -10.935
-3.035 3.0437 -10.885
-3.025 3.0366 -10.835
-3.015 3.0295 -10.785
-3.005 3.0224 -10.735
-2.995 3.0153 -10.685
-2.985 3.0082 -10.635
-2.975 3.001 -10.585
-2.965 2.9939 -10.535
-2.955 2.9867 -10.485
-2.945 2.9796 -10.435
-2.935 2.9724 -10.385
-2.925 2.9652 -10.335
-2.915 2.958 -10.285
-2.905 2.9508 -10.235
-2.895 2.9436 -10.185
-2.885 2.9364 -10.135
-2.875 2.9292 -10.085
-2.865 2.9219 -10.035
-2.855 2.9147 -9.985
-2.845 2.9074 -9.935
-2.835 2.9001 -9.885
-2.825 2.8929 -9.835
-2.815 2.8856 -9.7849
-2.805 2.8783 -9.7349
-2.795 2.871 -9.6849
-2.785 2.8637 -9.6349
-2.775 2.8563 -9.5849
-2.765 2.849 -9.5349
-2.755 2.8416 -9.4849
-2.745 2.8343 -9.4349
-2.735 2.8269 -9.3849
-2.725 2.8195 -9.3349
-2.715 2.8121 -9.2849
-2.705 2.8047 -9.2349
-2.695 2.7973 -9.1849
-2.685 2.7899 -9.1349
-2.675 2.7825 -9.0849
-2.665 2.7751 -9.0349
-2.655 2.7676 -8.9849
-2.645 2.7602 -8.9349
-2.635 2.7527 -8.8849
-2.625 2.7452 -8.8349
-2.615 2.7377 -8.7849
-2.605 2.7302 -8.7349
-2.595 2.7227 -8.6849
-2.585 2.7152 -8.6349
-2.575 2.7077 -8.5849
-2.565 2.7001 -8.5349
-2.555 2.6926 -8.4849
-2.545 2.685 -8.4349
-2.535 2.6775 -8.3849
-2.525 2.6699 -8.3349
-2.515 2.6623 -8.2849
-2.505 2.6547 -8.2349
-2.495 2.6471 -8.1849
-2.485 2.6395 -8.1349
-2.475 2.6319 -8.0849
-2.465 2.6243 -8.0349
-2.455 2.6166 -7.9849
-2.445 2.609 -7.9349
-2.435 2.6013 -7.8849
-2.425 2.5936 -7.8349
-2.415 2.5859 -7.7849
-2.405 2.5783 -7.7349
-2.395 2.5706 -7.6849
-2.385 2.5628 -7.6349
-2.375 2.5551 -7.5849
-2.365 2.5474 -7.5349
-2.355 2.5396 -7.4849
-2.345 2.5319 -7.4349
-2.335 2.5241 -7.3849
-2.325 2.5164 -7.3349
-2.315 2.5086 -7.2849
-2.305 2.5008 -7.2349
-2.295 2.493 -7.1849
-2.285 2.4852 -7.1349
-2.275 2.4774 -7.0849
-2.265 2.4695 -7.0349
-2.255 2.4617 -6.9849
-2.245 2.4539 -6.9349
-2.235 2.446 -6.8849
-2.225 2.4381 -6.8349
-2.215 2.4302 -6.7848
-2.205 2.4224 -6.7348
-2.195 2.4145 -6.6848
-2.185 2.4066 -6.6348
-2.175 2.3986 -6.5848
-2.165 2.3907 -6.5348
-2.155 2.3828 -6.4848
-2.145 2.3748 -6.4348
-2.135 2.3669 -6.3848
-2.125 2.3589 -6.3348
-2.115 2.3509 -6.2848
-2.105 2.3429 -6.2348
-2.095 2.3349 -6.1848
-2.085 2.3269 -6.1348
-2.075 2.3189 -6.0848
-2.065 2.3109 -6.0348
-2.055 2.3029 -5.9848
-2.045 2.2948 -5.9348
-2.035 2.2868 -5.8848
-2.025 2.2787 -5.8348
-2.015 2.2706 -5.7848
-2.005 2.2625 -5.7348
-1.995 2.2544 -5.6848
-1.985 2.2463 -5.6348
-1.975 2.2382 -5.5848
-1.965 2.2301 -5.5348
-1.955 2.222 -5.4848
-1.945 2.2138 -5.4348
-1.935 2.2057 -5.3848
-1.925 2.1975 -5.3348
-1.915 2.1893 -5.2848
-1.905 2.1812 -5.2348
-1.895 2.173 -5.1848
-1.885 2.1648 -5.1348
-1.875 2.1565 -5.0848
-1.865 2.1483 -5.0348
-1.855 2.1401 -4.9848
-1.845 2.1319 -4.9348
-1.835 2.1236 -4.8848
-1.825 2.1153 -4.8348
-1.815 2.1071 -4.7848
-1.805 2.0988 -4.7348
-1.795 2.0905 -4.6848
-1.785 2.0822 -4.6348
-1.775 2.0739 -4.5848
-1.765 2.0656 -4.5348
-1.755 2.0572 -4.4848
-1.745 2.0489 -4.4348
-1.735 2.0406 -4.3848
-1.725 2.0322 -4.3348
-1.715 2.0238 -4.2848
-1.705 2.0154 -4.2348
-1.695 2.0071 -4.1848
-1.685 1.9987 -4.1348
-1.675 1.9902 -4.0848
-1.665 1.9818 -4.0348
-1.655 1.9734 -3.9848
-1.645 1.965 -3.9348
-1.635 1.9565 -3.8848
-1.625 1.9481 -3.8348
-1.6149 1.9396 -3.7847
-1.6049 1.9311 -3.7347
-1.5949 1.9226 -3.6847
-1.5849 1.9141 -3.6347
-1.5749 1.9056 -3.5847
-1.5649 1.8971 -3.5347
-1.5549 1.8886 -3.4847
-1.5449 1.8801 -3.4347
-1.5349 1.8715 -3.3847
-1.5249 1.863 -3.3347
-1.5149 1.8544 -3.2847
-1.5049 1.8458 -3.2347
-1.4949 1.8372 -3.1847
-1.4849 1.8286 -3.1347
-1.4749 1.82 -3.0847
-1.4649 1.8114 -3.0347
-1.4549 1.8028 -2.9847
-1.4449 1.7942 -2.9347
-1.4349 1.7855 -2.8847
-1.4249 1.7769 -2.8347
-1.4149 1.7682 -2.7847
-1.4049 1.7595 -2.7347
-1.3949 1.7508 -2.6847
-1.3849 1.7421 -2.6347
-1.3749 1.7334 -2.5847
-1.3649 1.7247 -2.5347
-1.3549 1.716 -2.4847
-1.3449 1.7073 -2.4347
-1.3349 1.6985 -2.3847
-1.3249 1.6898 -2.3347
-1.3149 1.681 -2.2847
-1.3049 1.6723 -2.2347
-1.2949 1.6635 -2.1847
-1.2849 1.6547 -2.1347
-1.2749 1.6459 -2.0847
-1.2649 1.6371 -2.0347
-1.2549 1.6283 -1.9847
-1.2449 1.6194 -1.9347
-1.2349 1.6106 -1.8847
-1.2249 1.6017 -1.8347
-1.2149 1.5929 -1.7847
-1.2049 1.584 -1.7347
-1.1949 1.5751 -1.6847
-1.1849 1.5662 -1.6347
-1.1749 1.5573 -1.5847
-1.1649 1.5484 -1.5347
-1.1549 1.5395 -1.4847
-1.1449 1.5306 -1.4347
-1.1349 1.5216 -1.3847
-1.1249 1.5127 -1.3347
-1.1149 1.5037 -1.2847
-1.1049 1.4948 -1.2347
-1.0949 1.4858 -1.1847
-1.0849 1.4768 -1.1347
-1.0749 1.4678 -1.0847
-1.0649 1.4588 -1.0347
-1.0549 1.4498 -0.9847
-1.0449 1.4408 -0.9347
-1.0349 1.4317 -0.8847
-1.0249 1.4227 -0.8347
-1.0149 1.4136 -0.7846
-1.0049 1.4046 -0.7346
-0.9949 1.3955 -0.6846
-0.9849 1.3864 -0.6346
-0.9749 1.3773 -0.5846
-0.9649 1.3682 -0.5346
-0.9549 1.3591 -0.4846
-0.9449 1.35 -0.4346
-0.9349 1.3408 -0.3846
-0.9249 1.3317 -0.3346
-0.9149 1.3225 -0.2846
-0.9049 1.3134 -0.2346
-0.8949 1.3042 -0.1846
-0.8849 1.295 -0.1346
-0.8749 1.2858 -0.0846
-0.8649 1.2766 -0.0346
-0.8549 1.2674 0.0154
-0.8449 1.2582 0.0654
-0.8349 1.2489 0.1154
-0.8249 1.2397 0.1654
-0.8149 1.2305 0.2154
-0.8049 1.2212 0.2654
-0.7949 1.2119 0.3154
-0.7849 1.2026 0.3654
-0.7749 1.1933 0.4154
-0.7649 1.184 0.4654
-0.7549 1.1747 0.5154
-0.7449 1.1654 0.5654
-0.7349 1.1561 0.6154
-0.7249 1.1467 0.6654
-0.7149 1.1374 0.7154
-0.7049 1.128 0.7654
-0.6949 1.1187 0.8154
-0.6849 1.1093 0.8654
-0.6749 1.0999 0.9154
-0.6649 1.0905 0.9654
-0.6549 1.0811 1.0154
-0.6449 1.0717 1.0654
-0.6349 1.0622 1.1154
-0.6249 1.0528 1.1654
-0.6149 1.0434 1.2154
-0.6049 1.0339 1.2654
-0.5949 1.0244 1.3154
-0.5849 1.015 1.3654
-0.5749 1.0055 1.4154
-0.5649 0.996 1.4654
-0.5549 0.9865 1.5154
-0.5449 0.9769 1.5654
-0.5349 0.9674 1.6154
-0.5249 0.9579 1.6654
-0.5149 0.9483 1.7154
-0.5049 0.9388 1.7654
-0.4949 0.9292 1.8154
-0.4849 0.9196 1.8654
-0.4749 0.9101 1.9154
-0.4649 0.9005 1.9654
-0.4549 0.8909 2.0154
-0.4449 0.8812 2.0654
-0.4349 0.8716 2.1154
-0.4249 0.862 2.1654
-0.4149 0.8523 2.2155
-0.4049 0.8427 2.2655
-0.3949 0.833 2.3155
-0.3849 0.8233 2.3655
-0.3749 0.8137 2.4155
-0.3649 0.804 2.4655
-0.3549 0.7943 2.5155
-0.3449 0.7846 2.5655
-0.3349 0.7748 2.6155
-0.3249 0.7651 2.6655
-0.3149 0.7554 2.7155
-0.3049 0.7456 2.7655
-0.2949 0.7358 2.8155
-0.2849 0.7261 2.8655
-0.2749 0.7163 2.9155
-0.2649 0.7065 2.9655
-0.2549 0.6967 3.0155
-0.2449 0.6869 3.0655
-0.2349 0.6771 3.1155
-0.2249 0.6672 3.1655
-0.2149 0.6574 3.2155
-0.2049 0.6475 3.2655
-0.1949 0.6377 3.3155
-0.1849 0.6278 3.3655
-0.1749 0.6179 3.4155
-0.1649 0.608 3.4655
-0.1549 0.5981 3.5155
-0.1449 0.5882 3.5655
-0.1349 0.5783 3.6155
-0.1249 0.5684 3.6655
-0.1149 0.5585 3.7155
-0.1049 0.5485 3.7655
-0.0949 0.5385 3.8155
-0.0849 0.5286 3.8655
-0.0749 0.5186 3.9155
-0.0649 0.5086 3.9655
-0.0549 0.4986 4.0155
-0.0449 0.4886 4.0655
-0.0349 0.4786 4.1155
-0.0249 0.4686 4.1655
-0.0149 0.4585 4.2155
-0.0049 0.4485 4.2655
0.0051 0.4384 4.3155
0.0151 0.4284 4.3655
0.0251 0.4183 4.4155
0.0351 0.4082 4.4655
0.0451 0.3981 4.5155
0.0551 0.388 4.5655
0.0651 0.3779 4.6155
0.0751 0.3678 4.6655
0.0851 0.3576 4.7155
0.0951 0.3475 4.7655
0.1051 0.3373 4.8155
0.1151 0.3272 4.8655
0.1251 0.317 4.9155
0.1351 0.3068 4.9655
0.1451 0.2966 5.0155
0.1551 0.2864 5.0655
0.1651 0.2762 5.1155
0.1751 0.266 5.1655
0.1851 0.2557 5.2156
0.1951 0.2455 5.2656
0.2051 0.2352 5.3156
0.2151 0.225 5.3656
0.2251 0.2147 5.4156
0.2351 0.2044 5.4656
0.2451 0.1941 5.5156
0.2551 0.1838 5.5656
0.2651 0.1735 5.6156
0.2751 0.1632 5.6656
0.2851 0.1529 5.7156
0.2951 0.1425 5.7656
0.3051 0.1322 5.8156
0.3151 0.1218 5.8656
0.3251 0.1114 5.9156
0.3351 0.1011 5.9656
0.3451 0.0907 6.0156
0.3551 0.0803 6.0656
0.3651 0.0699 6.1156
0.3751 0.0594 6.1656
0.3851 0.049 6.2156
0.3951 0.0386 6.2656
0.4051 0.0281 6.3156
0.4151 0.0177 6.3656
0.4251 0.0072 6.4156
0.432 -0 6.45
0.432 0 6.45
0.442 0.0073 6.5
0.452 0.0147 6.55
0.462 0.022 6.6
0.472 0.0293 6.65
0.482 0.0366 6.7
0.492 0.0438 6.75
0.502 0.0511 6.8
0.512 0.0584 6.85
0.522 0.0656 6.9
0.532 0.0729 6.95
0.542 0.0801 7
0.552 0.0873 7.05
0.562 0.0945 7.1
0.572 0.1017 7.15
0.582 0.1089 7.2
0.592 0.1161 7.25
0.602 0.1233 7.3
0.612 0.1305 7.35
0.622 0.1376 7.4
0.632 0.1448 7.45
0.642 0.1519 7.5
0.652 0.159 7.55
0.662 0.1661 7.6
0.672 0.1732 7.65
0.682 0.1803 7.7
0.692 0.1874 7.75
0.702 0.1945 7.8
0.712 0.2016 7.85
0.722 0.2086 7.9
0.732 0.2157 7.95
0.742 0.2227 8
0.752 0.2297 8.05
0.762 0.2367 8.1
0.772 0.2438 8.15
0.782 0.2507 8.2
0.792 0.2577 8.25
0.802 0.2647 8.3
0.812 0.2717 8.35
0.822 0.2786 8.4
0.832 0.2856 8.45
0.842 0.2925 8.5
0.852 0.2995 8.55
0.862 0.3064 8.6
0.872 0.3133 8.65
0.882 0.3202 8.7
0.892 0.3271 8.75
0.902 0.334 8.8
0.912 0.3408 8.85
0.922 0.3477 8.9
0.932 0.3545 8.95
0.942 0.3614 9
0.952 0.3682 9.05
0.962 0.375 9.1
0.972 0.3818 9.1501
0.982 0.3886 9.2001
0.992 0.3954 9.2501
1.002 0.4022 9.3001
1.012 0.409 9.3501
1.022 0.4157 9.4001
1.032 0.4225 9.4501
1.042 0.4292 9.5001
1.052 0.436 9.5501
1.062 0.4427 9.6001
1.072 0.4494 9.6501
1.082 0.4561 9.7001
1.092 0.4628 9.7501
1.102 0.4695 9.8001
1.112 0.4762 9.8501
1.122 0.4828 9.9001
1.132 0.4895 9.9501
1.142 0.4961 10.0001
1.152 0.5028 10.0501
1.162 0.5094 10.1001
1.172 0.516 10.1501
1.182 0.5226 10.2001
1.192 0.5292 10.2501
1.202 0.5358 10.3001
1.212 0.5424 10.3501
1.222 0.5489 10.4001
1.232 0.5555 10.4501
1.242 0.562 10.5001
1.252 0.5686 10.5501
1.262 0.5751 10.6001
1.272 0.5816 10.6501
1.282 0.5881 10.7001
1.292 0.5946 10.7501
1.302 0.6011 10.8001
1.312 0.6076 10.8501
1.322 0.614 10.9001
1.332 0.6205 10.9501
1.342 0.627 11.0001
1.352 0.6334 11.0501
1.362 0.6398 11.1001
1.372 0.6462 11.1501
1.382 0.6526 11.2001
1.392 0.659 11.2501
1.402 0.6654 11.3001
1.412 0.6718 11.3501
1.422 0.6782 11.4001
1.432 0.6845 11.4501
1.442 0.6909 11.5001
1.452 0.6972 11.5501
1.462 0.7036 11.6001
1.472 0.7099 11.6501
1.482 0.7162 11.7001
1.492 0.7225 11.7501
1.502 0.7288 11.8001
1.512 0.7351 11.8501
1.522 0.7413 11.9001
1.532 0.7476 11.9501
1.542 0.7539 12.0001
1.552 0.7601 12.0501
1.562 0.7663 12.1001
1.572 0.7726 12.1502
1.582 0.7788 12.2002
1.592 0.785 12.2502
1.602 0.7912 12.3002
1.612 0.7973 12.3502
1.622 0.8035 12.4002
1.632 0.8097 12.4502
1.642 0.8158 12.5002
1.652 0.822 12.5502
1.662 0.8281 12.6002
1.672 0.8342 12.6502
1.682 0.8403 12.7002
1.692 0.8465 12.7502
1.702 0.8525 12.8002
1.712 0.8586 12.8502
1.722 0.8647 12.9002
1.732 0.8708 12.9502
1.742 0.8768 13.0002
1.752 0.8829 13.0502
1.762 0.8889 13.1002
1.772 0.8949 13.1502
1.782 0.901 13.2002
1.792 0.907 13.2502
1.802 0.913 13.3002
1.812 0.9189 13.3502
1.822 0.9249 13.4002
1.832 0.9309 13.4502
1.842 0.9368 13.5002
1.852 0.9428 13.5502
1.862 0.9487 13.6002
1.872 0.9547 13.6502
1.882 0.9606 13.7002
1.892 0.9665 13.7502
1.902 0.9724 13.8002
1.912 0.9783 13.8502
1.922 0.9842 13.9002
1.932 0.99 13.9502
1.942 0.9959 14.0002
1.952 1.0017 14.0502
1.962 1.0076 14.1002
1.972 1.0134 14.1502
1.982 1.0192 14.2002
1.992 1.025 14.2502
2.002 1.0308 14.3002
2.012 1.0366 14.3502
2.022 1.0424 14.4002
2.032 1.0482 14.4502
2.042 1.0539 14.5002
2.052 1.0597 14.5502
2.062 1.0654 14.6002
2.072 1.0712 14.6502
2.082 1.0769 14.7002
2.092 1.0826 14.7502
2.102 1.0883 14.8002
2.112 1.094 14.8502
2.122 1.0997 14.9002
2.132 1.1053 14.9502
2.142 1.111 15.0002
2.152 1.1167 15.0502
2.162 1.1223 15.1002
2.1721 1.1279 15.1503
2.1821 1.1336 15.2003
2.1921 1.1392 15.2503
2.2021 1.1448 15.3003
2.2121 1.1504 15.3503
2.2221 1.156 15.4003
2.2321 1.1615 15.4503
2.2421 1.1671 15.5003
2.2521 1.1727 15.5503
2.2621 1.1782 15.6003
2.2721 1.1837 15.6503
2.2821 1.1893 15.7003
2.2921 1.1948 15.7503
2.3021 1.2003 15.8003
2.3121 1.2058 15.8503
2.3221 1.2113 15.9003
2.3321 1.2168 15.9503
2.3421 1.2222 16.0003
2.3521 1.2277 16.0503
2.3621 1.2331 16.1003
2.3721 1.2386 16.1503
2.3821 1.244 16.2003
2.3921 1.2494 16.2503
2.4021 1.2548 16.3003
2.4121 1.2602 16.3503
2.4221 1.2656 16.4003
2.4321 1.271 16.4503
2.4421 1.2763 16.5003
2.4521 1.2817 16.5503
2.4621 1.2871 16.6003
2.4721 1.2924 16.6503
2.4821 1.2977 16.7003
2.4921 1.303 16.7503
2.5021 1.3084 16.8003
2.5121 1.3137 16.8503
2.5221 1.3189 16.9003
2.5321 1.3242 16.9503
2.5421 1.3295 16.985
2.5421 1.3295 16.985
2.5421 1.3295 16.985

576
serves/serve3.dat Normal file
View file

@ -0,0 +1,576 @@
2.115 3.1 -11.585
2.105 3.092 -11.535
2.095 3.084 -11.485
2.085 3.076 -11.435
2.075 3.0679 -11.385
2.065 3.0599 -11.335
2.055 3.0518 -11.285
2.045 3.0438 -11.235
2.035 3.0357 -11.185
2.025 3.0276 -11.135
2.015 3.0195 -11.085
2.005 3.0114 -11.035
1.995 3.0033 -10.985
1.985 2.9952 -10.935
1.975 2.987 -10.885
1.965 2.9789 -10.835
1.955 2.9707 -10.785
1.945 2.9626 -10.735
1.935 2.9544 -10.685
1.925 2.9462 -10.635
1.915 2.938 -10.585
1.905 2.9298 -10.535
1.895 2.9216 -10.485
1.885 2.9134 -10.435
1.875 2.9052 -10.385
1.865 2.8969 -10.335
1.855 2.8887 -10.285
1.845 2.8804 -10.235
1.835 2.8721 -10.185
1.825 2.8639 -10.135
1.815 2.8556 -10.0849
1.805 2.8473 -10.0349
1.795 2.839 -9.9849
1.785 2.8306 -9.9349
1.775 2.8223 -9.8849
1.765 2.814 -9.8349
1.755 2.8056 -9.7849
1.745 2.7973 -9.7349
1.735 2.7889 -9.6849
1.725 2.7805 -9.6349
1.715 2.7721 -9.5849
1.705 2.7637 -9.5349
1.695 2.7553 -9.4849
1.685 2.7469 -9.4349
1.675 2.7385 -9.3849
1.665 2.7301 -9.3349
1.655 2.7216 -9.2849
1.645 2.7132 -9.2349
1.635 2.7047 -9.1849
1.625 2.6962 -9.1349
1.615 2.6877 -9.0849
1.605 2.6792 -9.0349
1.595 2.6707 -8.9849
1.585 2.6622 -8.9349
1.575 2.6537 -8.8849
1.565 2.6451 -8.8349
1.555 2.6366 -8.7849
1.545 2.628 -8.7349
1.535 2.6195 -8.6849
1.525 2.6109 -8.6349
1.515 2.6023 -8.5849
1.505 2.5937 -8.5349
1.495 2.5851 -8.4849
1.485 2.5765 -8.4349
1.475 2.5679 -8.3849
1.465 2.5593 -8.3349
1.455 2.5506 -8.2849
1.445 2.542 -8.2349
1.435 2.5333 -8.1849
1.425 2.5246 -8.1349
1.415 2.5159 -8.0849
1.405 2.5073 -8.0349
1.395 2.4986 -7.9849
1.385 2.4898 -7.9349
1.375 2.4811 -7.8849
1.365 2.4724 -7.8349
1.355 2.4636 -7.7849
1.345 2.4549 -7.7349
1.335 2.4461 -7.6849
1.325 2.4374 -7.6349
1.315 2.4286 -7.5849
1.305 2.4198 -7.5349
1.295 2.411 -7.4849
1.285 2.4022 -7.4349
1.275 2.3934 -7.3849
1.265 2.3845 -7.3349
1.255 2.3757 -7.2849
1.245 2.3668 -7.2349
1.235 2.358 -7.1849
1.225 2.3491 -7.1349
1.215 2.3402 -7.0848
1.205 2.3314 -7.0348
1.195 2.3225 -6.9848
1.185 2.3135 -6.9348
1.175 2.3046 -6.8848
1.165 2.2957 -6.8348
1.155 2.2868 -6.7848
1.145 2.2778 -6.7348
1.135 2.2689 -6.6848
1.125 2.2599 -6.6348
1.115 2.2509 -6.5848
1.105 2.2419 -6.5348
1.095 2.2329 -6.4848
1.085 2.2239 -6.4348
1.075 2.2149 -6.3848
1.065 2.2059 -6.3348
1.055 2.1969 -6.2848
1.045 2.1878 -6.2348
1.035 2.1788 -6.1848
1.025 2.1697 -6.1348
1.015 2.1606 -6.0848
1.005 2.1515 -6.0348
0.995 2.1424 -5.9848
0.985 2.1333 -5.9348
0.975 2.1242 -5.8848
0.965 2.1151 -5.8348
0.955 2.106 -5.7848
0.945 2.0968 -5.7348
0.935 2.0877 -5.6848
0.925 2.0785 -5.6348
0.915 2.0693 -5.5848
0.905 2.0601 -5.5348
0.895 2.051 -5.4848
0.885 2.0418 -5.4348
0.875 2.0325 -5.3848
0.865 2.0233 -5.3348
0.855 2.0141 -5.2848
0.845 2.0048 -5.2348
0.835 1.9956 -5.1848
0.825 1.9863 -5.1348
0.815 1.9771 -5.0848
0.805 1.9678 -5.0348
0.795 1.9585 -4.9848
0.785 1.9492 -4.9348
0.775 1.9399 -4.8848
0.765 1.9306 -4.8348
0.755 1.9212 -4.7848
0.745 1.9119 -4.7348
0.735 1.9025 -4.6848
0.725 1.8932 -4.6348
0.715 1.8838 -4.5848
0.705 1.8744 -4.5348
0.695 1.8651 -4.4848
0.685 1.8557 -4.4348
0.675 1.8462 -4.3848
0.665 1.8368 -4.3348
0.655 1.8274 -4.2848
0.645 1.818 -4.2348
0.635 1.8085 -4.1848
0.625 1.7991 -4.1348
0.6149 1.7896 -4.0847
0.6049 1.7801 -4.0347
0.5949 1.7706 -3.9847
0.5849 1.7611 -3.9347
0.5749 1.7516 -3.8847
0.5649 1.7421 -3.8347
0.5549 1.7326 -3.7847
0.5449 1.723 -3.7347
0.5349 1.7135 -3.6847
0.5249 1.7039 -3.6347
0.5149 1.6944 -3.5847
0.5049 1.6848 -3.5347
0.4949 1.6752 -3.4847
0.4849 1.6656 -3.4347
0.4749 1.656 -3.3847
0.4649 1.6464 -3.3347
0.4549 1.6368 -3.2847
0.4449 1.6272 -3.2347
0.4349 1.6175 -3.1847
0.4249 1.6079 -3.1347
0.4149 1.5982 -3.0847
0.4049 1.5885 -3.0347
0.3949 1.5788 -2.9847
0.3849 1.5691 -2.9347
0.3749 1.5594 -2.8847
0.3649 1.5497 -2.8347
0.3549 1.54 -2.7847
0.3449 1.5303 -2.7347
0.3349 1.5205 -2.6847
0.3249 1.5108 -2.6347
0.3149 1.501 -2.5847
0.3049 1.4912 -2.5347
0.2949 1.4815 -2.4847
0.2849 1.4717 -2.4347
0.2749 1.4619 -2.3847
0.2649 1.4521 -2.3347
0.2549 1.4422 -2.2847
0.2449 1.4324 -2.2347
0.2349 1.4226 -2.1847
0.2249 1.4127 -2.1347
0.2149 1.4029 -2.0847
0.2049 1.393 -2.0347
0.1949 1.3831 -1.9847
0.1849 1.3732 -1.9347
0.1749 1.3633 -1.8847
0.1649 1.3534 -1.8347
0.1549 1.3435 -1.7847
0.1449 1.3336 -1.7347
0.1349 1.3236 -1.6847
0.1249 1.3137 -1.6347
0.1149 1.3037 -1.5847
0.1049 1.2938 -1.5347
0.0949 1.2838 -1.4847
0.0849 1.2738 -1.4347
0.0749 1.2638 -1.3847
0.0649 1.2538 -1.3347
0.0549 1.2438 -1.2847
0.0449 1.2338 -1.2347
0.0349 1.2237 -1.1847
0.0249 1.2137 -1.1347
0.0149 1.2036 -1.0846
0.0049 1.1936 -1.0346
-0.0051 1.1835 -0.9846
-0.0151 1.1734 -0.9346
-0.0251 1.1633 -0.8846
-0.0351 1.1532 -0.8346
-0.0451 1.1431 -0.7846
-0.0551 1.133 -0.7346
-0.0651 1.1228 -0.6846
-0.0751 1.1127 -0.6346
-0.0851 1.1025 -0.5846
-0.0951 1.0924 -0.5346
-0.1051 1.0822 -0.4846
-0.1151 1.072 -0.4346
-0.1251 1.0618 -0.3846
-0.1351 1.0516 -0.3346
-0.1451 1.0414 -0.2846
-0.1551 1.0312 -0.2346
-0.1651 1.0209 -0.1846
-0.1751 1.0107 -0.1346
-0.1851 1.0004 -0.0846
-0.1951 0.9902 -0.0346
-0.2051 0.9799 0.0154
-0.2151 0.9696 0.0654
-0.2251 0.9593 0.1154
-0.2351 0.949 0.1654
-0.2451 0.9387 0.2154
-0.2551 0.9284 0.2654
-0.2651 0.9181 0.3154
-0.2751 0.9077 0.3654
-0.2851 0.8974 0.4154
-0.2951 0.887 0.4654
-0.3051 0.8767 0.5154
-0.3151 0.8663 0.5654
-0.3251 0.8559 0.6154
-0.3351 0.8455 0.6654
-0.3451 0.8351 0.7154
-0.3551 0.8247 0.7654
-0.3651 0.8142 0.8154
-0.3751 0.8038 0.8654
-0.3851 0.7934 0.9154
-0.3951 0.7829 0.9654
-0.4051 0.7724 1.0154
-0.4151 0.7619 1.0654
-0.4251 0.7515 1.1154
-0.4351 0.741 1.1654
-0.4451 0.7305 1.2154
-0.4551 0.7199 1.2654
-0.4651 0.7094 1.3154
-0.4751 0.6989 1.3654
-0.4851 0.6883 1.4154
-0.4951 0.6778 1.4654
-0.5051 0.6672 1.5154
-0.5151 0.6566 1.5654
-0.5251 0.646 1.6154
-0.5351 0.6355 1.6654
-0.5451 0.6248 1.7154
-0.5551 0.6142 1.7654
-0.5651 0.6036 1.8154
-0.5751 0.593 1.8654
-0.5851 0.5823 1.9155
-0.5951 0.5717 1.9655
-0.6051 0.561 2.0155
-0.6151 0.5503 2.0655
-0.6251 0.5397 2.1155
-0.6351 0.529 2.1655
-0.6451 0.5183 2.2155
-0.6551 0.5075 2.2655
-0.6651 0.4968 2.3155
-0.6751 0.4861 2.3655
-0.6851 0.4753 2.4155
-0.6951 0.4646 2.4655
-0.7051 0.4538 2.5155
-0.7151 0.4431 2.5655
-0.7251 0.4323 2.6155
-0.7351 0.4215 2.6655
-0.7451 0.4107 2.7155
-0.7551 0.3999 2.7655
-0.7651 0.3891 2.8155
-0.7751 0.3782 2.8655
-0.7851 0.3674 2.9155
-0.7951 0.3565 2.9655
-0.8051 0.3457 3.0155
-0.8151 0.3348 3.0655
-0.8251 0.3239 3.1155
-0.8351 0.313 3.1655
-0.8451 0.3021 3.2155
-0.8551 0.2912 3.2655
-0.8651 0.2803 3.3155
-0.8751 0.2694 3.3655
-0.8851 0.2584 3.4155
-0.8951 0.2475 3.4655
-0.9051 0.2365 3.5155
-0.9151 0.2256 3.5655
-0.9251 0.2146 3.6155
-0.9351 0.2036 3.6655
-0.9451 0.1926 3.7155
-0.9551 0.1816 3.7655
-0.9651 0.1706 3.8155
-0.9751 0.1596 3.8655
-0.9851 0.1485 3.9155
-0.9951 0.1375 3.9655
-1.0051 0.1264 4.0155
-1.0151 0.1153 4.0655
-1.0251 0.1043 4.1155
-1.0351 0.0932 4.1655
-1.0451 0.0821 4.2155
-1.0551 0.071 4.2655
-1.0651 0.0599 4.3155
-1.0751 0.0487 4.3655
-1.0851 0.0376 4.4155
-1.0951 0.0265 4.4655
-1.1051 0.0153 4.5155
-1.1151 0.0041 4.5655
-1.1188 -0 4.5841
-1.1188 0 4.5841
-1.1288 0.0078 4.6341
-1.1388 0.0156 4.6841
-1.1488 0.0234 4.7341
-1.1588 0.0312 4.7841
-1.1688 0.039 4.8341
-1.1788 0.0467 4.8841
-1.1888 0.0545 4.9341
-1.1988 0.0623 4.9841
-1.2088 0.07 5.0341
-1.2188 0.0777 5.0841
-1.2288 0.0854 5.1341
-1.2388 0.0931 5.1841
-1.2488 0.1008 5.2341
-1.2588 0.1085 5.2841
-1.2688 0.1162 5.3341
-1.2788 0.1239 5.3841
-1.2888 0.1315 5.4341
-1.2988 0.1392 5.4841
-1.3088 0.1468 5.5341
-1.3188 0.1545 5.5841
-1.3288 0.1621 5.6341
-1.3388 0.1697 5.6841
-1.3488 0.1773 5.7341
-1.3588 0.1849 5.7841
-1.3688 0.1925 5.8341
-1.3788 0.2 5.8841
-1.3888 0.2076 5.9341
-1.3988 0.2151 5.9841
-1.4088 0.2227 6.0341
-1.4188 0.2302 6.0841
-1.4288 0.2377 6.1341
-1.4388 0.2452 6.1841
-1.4488 0.2527 6.2342
-1.4588 0.2602 6.2842
-1.4688 0.2677 6.3342
-1.4788 0.2752 6.3842
-1.4888 0.2827 6.4342
-1.4988 0.2901 6.4842
-1.5088 0.2976 6.5342
-1.5188 0.305 6.5842
-1.5288 0.3124 6.6342
-1.5388 0.3198 6.6842
-1.5488 0.3272 6.7342
-1.5588 0.3346 6.7842
-1.5688 0.342 6.8342
-1.5788 0.3494 6.8842
-1.5888 0.3567 6.9342
-1.5988 0.3641 6.9842
-1.6088 0.3714 7.0342
-1.6188 0.3788 7.0842
-1.6288 0.3861 7.1342
-1.6388 0.3934 7.1842
-1.6488 0.4007 7.2342
-1.6588 0.408 7.2842
-1.6688 0.4153 7.3342
-1.6788 0.4226 7.3842
-1.6888 0.4299 7.4342
-1.6988 0.4371 7.4842
-1.7088 0.4444 7.5342
-1.7188 0.4516 7.5842
-1.7288 0.4588 7.6342
-1.7388 0.466 7.6842
-1.7488 0.4732 7.7342
-1.7588 0.4804 7.7842
-1.7688 0.4876 7.8342
-1.7788 0.4948 7.8842
-1.7888 0.502 7.9342
-1.7988 0.5091 7.9842
-1.8088 0.5163 8.0342
-1.8188 0.5234 8.0842
-1.8288 0.5306 8.1342
-1.8388 0.5377 8.1842
-1.8488 0.5448 8.2342
-1.8588 0.5519 8.2842
-1.8688 0.559 8.3342
-1.8788 0.5661 8.3842
-1.8888 0.5731 8.4342
-1.8988 0.5802 8.4842
-1.9088 0.5872 8.5342
-1.9188 0.5943 8.5842
-1.9288 0.6013 8.6342
-1.9388 0.6083 8.6842
-1.9488 0.6153 8.7342
-1.9588 0.6223 8.7842
-1.9688 0.6293 8.8342
-1.9788 0.6363 8.8842
-1.9888 0.6433 8.9342
-1.9988 0.6503 8.9842
-2.0088 0.6572 9.0342
-2.0188 0.6642 9.0842
-2.0288 0.6711 9.1342
-2.0388 0.678 9.1842
-2.0489 0.6849 9.2343
-2.0589 0.6918 9.2843
-2.0689 0.6987 9.3343
-2.0789 0.7056 9.3843
-2.0889 0.7125 9.4343
-2.0989 0.7193 9.4843
-2.1089 0.7262 9.5343
-2.1189 0.733 9.5843
-2.1289 0.7399 9.6343
-2.1389 0.7467 9.6843
-2.1489 0.7535 9.7343
-2.1589 0.7603 9.7843
-2.1689 0.7671 9.8343
-2.1789 0.7739 9.8843
-2.1889 0.7807 9.9343
-2.1989 0.7874 9.9843
-2.2089 0.7942 10.0343
-2.2189 0.8009 10.0843
-2.2289 0.8077 10.1343
-2.2389 0.8144 10.1843
-2.2489 0.8211 10.2343
-2.2589 0.8278 10.2843
-2.2689 0.8345 10.3343
-2.2789 0.8412 10.3843
-2.2889 0.8479 10.4343
-2.2989 0.8546 10.4843
-2.3089 0.8612 10.5343
-2.3189 0.8679 10.5843
-2.3289 0.8745 10.6343
-2.3389 0.8811 10.6843
-2.3489 0.8878 10.7343
-2.3589 0.8944 10.7843
-2.3689 0.901 10.8343
-2.3789 0.9076 10.8843
-2.3889 0.9141 10.9343
-2.3989 0.9207 10.9843
-2.4089 0.9273 11.0343
-2.4189 0.9338 11.0843
-2.4289 0.9404 11.1343
-2.4389 0.9469 11.1843
-2.4489 0.9534 11.2343
-2.4589 0.9599 11.2843
-2.4689 0.9664 11.3343
-2.4789 0.9729 11.3843
-2.4889 0.9794 11.4343
-2.4989 0.9859 11.4843
-2.5089 0.9923 11.5343
-2.5189 0.9988 11.5843
-2.5289 1.0052 11.6343
-2.5389 1.0117 11.6843
-2.5489 1.0181 11.7343
-2.5589 1.0245 11.7843
-2.5689 1.0309 11.8343
-2.5789 1.0373 11.8843
-2.5889 1.0437 11.9343
-2.5989 1.0501 11.9843
-2.6089 1.0564 12.0343
-2.6189 1.0628 12.0843
-2.6289 1.0691 12.1343
-2.6389 1.0754 12.1843
-2.6489 1.0818 12.2344
-2.6589 1.0881 12.2844
-2.6689 1.0944 12.3344
-2.6789 1.1007 12.3844
-2.6889 1.107 12.4344
-2.6989 1.1132 12.4844
-2.7089 1.1195 12.5344
-2.7189 1.1258 12.5844
-2.7289 1.132 12.6344
-2.7389 1.1383 12.6844
-2.7489 1.1445 12.7344
-2.7589 1.1507 12.7844
-2.7689 1.1569 12.8344
-2.7789 1.1631 12.8844
-2.7889 1.1693 12.9344
-2.7989 1.1755 12.9844
-2.8089 1.1816 13.0344
-2.8189 1.1878 13.0844
-2.8289 1.1939 13.1344
-2.8389 1.2001 13.1844
-2.8489 1.2062 13.2344
-2.8589 1.2123 13.2844
-2.8689 1.2184 13.3344
-2.8789 1.2245 13.3844
-2.8889 1.2306 13.4344
-2.8989 1.2367 13.4844
-2.9089 1.2428 13.5344
-2.9189 1.2488 13.5844
-2.9289 1.2549 13.6344
-2.9389 1.2609 13.6844
-2.9489 1.267 13.7344
-2.9589 1.273 13.7844
-2.9689 1.279 13.8344
-2.9789 1.285 13.8844
-2.9889 1.291 13.9344
-2.9989 1.297 13.9844
-3.0089 1.3029 14.0344
-3.0189 1.3089 14.0844
-3.0289 1.3148 14.1344
-3.0389 1.3208 14.1844
-3.0489 1.3267 14.2344
-3.0589 1.3326 14.2844
-3.0689 1.3386 14.3344
-3.0789 1.3445 14.3844
-3.0889 1.3504 14.4344
-3.0989 1.3562 14.4844
-3.1089 1.3621 14.5344
-3.1189 1.368 14.5844
-3.1289 1.3738 14.6344
-3.1389 1.3797 14.6844
-3.1489 1.3855 14.7344
-3.1589 1.3913 14.7844
-3.1689 1.3971 14.8344
-3.1789 1.4029 14.8844
-3.1889 1.4087 14.9344
-3.1989 1.4145 14.9844
-3.2089 1.4203 15.0344
-3.2189 1.4261 15.0844
-3.2289 1.4318 15.1344
-3.2389 1.4376 15.1844
-3.2489 1.4433 15.2345
-3.2589 1.449 15.2845
-3.2689 1.4547 15.3345
-3.2789 1.4605 15.3845
-3.2889 1.4662 15.4345
-3.2989 1.4718 15.4845
-3.3089 1.4775 15.5345
-3.3189 1.4832 15.5845
-3.3289 1.4888 15.6345
-3.3389 1.4945 15.6845
-3.3489 1.5001 15.7345
-3.3589 1.5058 15.7845
-3.3689 1.5114 15.8345
-3.3789 1.517 15.8845
-3.3889 1.5226 15.9345
-3.3989 1.5282 15.9845
-3.4089 1.5338 16.0345
-3.4189 1.5393 16.0845
-3.4289 1.5449 16.1345
-3.4389 1.5504 16.1845
-3.4489 1.556 16.2345
-3.4589 1.5615 16.2845
-3.4689 1.567 16.3345
-3.4789 1.5725 16.3845
-3.4889 1.578 16.4345
-3.4989 1.5835 16.4845
-3.5089 1.589 16.5345
-3.5189 1.5945 16.5845
-3.5289 1.5999 16.6345
-3.5389 1.6054 16.6845
-3.5489 1.6108 16.7345
-3.5589 1.6163 16.7845
-3.5689 1.6217 16.8345
-3.5789 1.6271 16.8845
-3.5889 1.6325 16.9345
-3.5989 1.6379 16.9845
-3.6089 1.6433 16.985
-3.6089 1.6433 16.985

1432
serves/serve4.dat Normal file

File diff suppressed because it is too large Load diff

721
serves/serve5.dat Normal file
View file

@ -0,0 +1,721 @@
2.115 3.1 -11.585
2.11 3.096 -11.545
2.105 3.092 -11.505
2.1 3.088 -11.465
2.095 3.0839 -11.425
2.09 3.0799 -11.385
2.085 3.0758 -11.345
2.08 3.0718 -11.305
2.075 3.0677 -11.265
2.07 3.0636 -11.225
2.065 3.0595 -11.185
2.06 3.0554 -11.145
2.055 3.0513 -11.105
2.05 3.0472 -11.065
2.045 3.043 -11.025
2.04 3.0389 -10.985
2.035 3.0347 -10.945
2.03 3.0306 -10.905
2.025 3.0264 -10.865
2.02 3.0222 -10.825
2.015 3.018 -10.785
2.01 3.0138 -10.745
2.005 3.0096 -10.705
2 3.0054 -10.665
1.995 3.0012 -10.625
1.99 2.9969 -10.585
1.985 2.9927 -10.545
1.98 2.9884 -10.505
1.975 2.9842 -10.465
1.97 2.9799 -10.425
1.965 2.9756 -10.385
1.96 2.9713 -10.345
1.955 2.967 -10.305
1.95 2.9627 -10.265
1.945 2.9583 -10.225
1.94 2.954 -10.185
1.935 2.9496 -10.145
1.93 2.9453 -10.105
1.925 2.9409 -10.0649
1.92 2.9365 -10.0249
1.915 2.9321 -9.9849
1.91 2.9277 -9.9449
1.905 2.9233 -9.9049
1.9 2.9189 -9.8649
1.895 2.9145 -9.8249
1.89 2.9101 -9.7849
1.885 2.9056 -9.7449
1.88 2.9012 -9.7049
1.875 2.8967 -9.6649
1.87 2.8922 -9.6249
1.865 2.8877 -9.5849
1.86 2.8832 -9.5449
1.855 2.8787 -9.5049
1.85 2.8742 -9.4649
1.845 2.8697 -9.4249
1.84 2.8652 -9.3849
1.835 2.8606 -9.3449
1.83 2.8561 -9.3049
1.825 2.8515 -9.2649
1.82 2.8469 -9.2249
1.815 2.8423 -9.1849
1.81 2.8377 -9.1449
1.805 2.8331 -9.1049
1.8 2.8285 -9.0649
1.795 2.8239 -9.0249
1.79 2.8193 -8.9849
1.785 2.8146 -8.9449
1.78 2.81 -8.9049
1.775 2.8053 -8.8649
1.77 2.8006 -8.8249
1.765 2.796 -8.7849
1.76 2.7913 -8.7449
1.755 2.7866 -8.7049
1.75 2.7818 -8.6649
1.745 2.7771 -8.6249
1.74 2.7724 -8.5849
1.735 2.7677 -8.5449
1.73 2.7629 -8.5049
1.725 2.7581 -8.4649
1.72 2.7534 -8.4249
1.715 2.7486 -8.3849
1.71 2.7438 -8.3449
1.705 2.739 -8.3049
1.7 2.7342 -8.2649
1.695 2.7294 -8.2249
1.69 2.7245 -8.1849
1.685 2.7197 -8.1449
1.68 2.7149 -8.1049
1.675 2.71 -8.0649
1.67 2.7051 -8.0249
1.665 2.7003 -7.9849
1.66 2.6954 -7.9449
1.655 2.6905 -7.9049
1.65 2.6856 -7.8649
1.645 2.6806 -7.8249
1.64 2.6757 -7.7849
1.635 2.6708 -7.7449
1.63 2.6658 -7.7049
1.625 2.6609 -7.6649
1.62 2.6559 -7.6249
1.615 2.6509 -7.5849
1.61 2.6459 -7.5449
1.605 2.641 -7.5049
1.6 2.6359 -7.4649
1.595 2.6309 -7.4249
1.59 2.6259 -7.3849
1.585 2.6209 -7.3449
1.58 2.6158 -7.3049
1.575 2.6108 -7.2649
1.57 2.6057 -7.2249
1.565 2.6006 -7.1849
1.56 2.5955 -7.1449
1.555 2.5905 -7.1049
1.55 2.5853 -7.0648
1.545 2.5802 -7.0248
1.54 2.5751 -6.9848
1.535 2.57 -6.9448
1.53 2.5648 -6.9048
1.525 2.5597 -6.8648
1.52 2.5545 -6.8248
1.515 2.5493 -6.7848
1.51 2.5442 -6.7448
1.505 2.539 -6.7048
1.5 2.5338 -6.6648
1.495 2.5286 -6.6248
1.49 2.5233 -6.5848
1.485 2.5181 -6.5448
1.48 2.5129 -6.5048
1.475 2.5076 -6.4648
1.47 2.5024 -6.4248
1.465 2.4971 -6.3848
1.46 2.4918 -6.3448
1.455 2.4865 -6.3048
1.45 2.4812 -6.2648
1.445 2.4759 -6.2248
1.44 2.4706 -6.1848
1.435 2.4653 -6.1448
1.43 2.4599 -6.1048
1.425 2.4546 -6.0648
1.42 2.4492 -6.0248
1.415 2.4438 -5.9848
1.41 2.4385 -5.9448
1.405 2.4331 -5.9048
1.4 2.4277 -5.8648
1.395 2.4223 -5.8248
1.39 2.4168 -5.7848
1.385 2.4114 -5.7448
1.38 2.406 -5.7048
1.375 2.4005 -5.6648
1.37 2.3951 -5.6248
1.365 2.3896 -5.5848
1.36 2.3841 -5.5448
1.355 2.3786 -5.5048
1.35 2.3732 -5.4648
1.345 2.3676 -5.4248
1.34 2.3621 -5.3848
1.335 2.3566 -5.3448
1.33 2.3511 -5.3048
1.325 2.3455 -5.2648
1.32 2.34 -5.2248
1.315 2.3344 -5.1848
1.31 2.3288 -5.1448
1.305 2.3232 -5.1048
1.3 2.3176 -5.0648
1.295 2.312 -5.0248
1.29 2.3064 -4.9848
1.285 2.3008 -4.9448
1.28 2.2952 -4.9048
1.275 2.2895 -4.8648
1.27 2.2839 -4.8248
1.265 2.2782 -4.7848
1.26 2.2725 -4.7448
1.255 2.2669 -4.7048
1.25 2.2612 -4.6648
1.245 2.2555 -4.6248
1.24 2.2498 -4.5848
1.235 2.244 -4.5448
1.23 2.2383 -4.5048
1.225 2.2326 -4.4648
1.22 2.2268 -4.4248
1.215 2.221 -4.3848
1.21 2.2153 -4.3448
1.205 2.2095 -4.3048
1.2 2.2037 -4.2648
1.195 2.1979 -4.2248
1.19 2.1921 -4.1848
1.185 2.1863 -4.1448
1.18 2.1804 -4.1048
1.175 2.1746 -4.0647
1.17 2.1688 -4.0247
1.165 2.1629 -3.9847
1.16 2.157 -3.9447
1.155 2.1511 -3.9047
1.15 2.1453 -3.8647
1.145 2.1394 -3.8247
1.14 2.1334 -3.7847
1.135 2.1275 -3.7447
1.13 2.1216 -3.7047
1.125 2.1157 -3.6647
1.12 2.1097 -3.6247
1.115 2.1038 -3.5847
1.11 2.0978 -3.5447
1.105 2.0918 -3.5047
1.1 2.0858 -3.4647
1.095 2.0798 -3.4247
1.09 2.0738 -3.3847
1.085 2.0678 -3.3447
1.08 2.0618 -3.3047
1.075 2.0557 -3.2647
1.07 2.0497 -3.2247
1.065 2.0436 -3.1847
1.06 2.0376 -3.1447
1.055 2.0315 -3.1047
1.05 2.0254 -3.0647
1.045 2.0193 -3.0247
1.04 2.0132 -2.9847
1.035 2.0071 -2.9447
1.03 2.001 -2.9047
1.025 1.9949 -2.8647
1.02 1.9887 -2.8247
1.015 1.9826 -2.7847
1.01 1.9764 -2.7447
1.005 1.9702 -2.7047
1 1.964 -2.6647
0.995 1.9578 -2.6247
0.99 1.9516 -2.5847
0.985 1.9454 -2.5447
0.98 1.9392 -2.5047
0.975 1.933 -2.4647
0.97 1.9267 -2.4247
0.965 1.9205 -2.3847
0.96 1.9142 -2.3447
0.955 1.9079 -2.3047
0.95 1.9017 -2.2647
0.945 1.8954 -2.2247
0.94 1.8891 -2.1847
0.935 1.8828 -2.1447
0.93 1.8764 -2.1047
0.925 1.8701 -2.0647
0.92 1.8638 -2.0247
0.915 1.8574 -1.9847
0.91 1.8511 -1.9447
0.905 1.8447 -1.9047
0.9 1.8383 -1.8647
0.895 1.8319 -1.8247
0.89 1.8255 -1.7847
0.885 1.8191 -1.7447
0.88 1.8127 -1.7047
0.875 1.8063 -1.6647
0.87 1.7998 -1.6247
0.865 1.7934 -1.5847
0.86 1.7869 -1.5447
0.855 1.7805 -1.5047
0.85 1.774 -1.4647
0.845 1.7675 -1.4247
0.84 1.761 -1.3847
0.835 1.7545 -1.3447
0.83 1.748 -1.3047
0.825 1.7414 -1.2647
0.82 1.7349 -1.2247
0.815 1.7284 -1.1847
0.81 1.7218 -1.1447
0.805 1.7152 -1.1047
0.8 1.7087 -1.0646
0.795 1.7021 -1.0246
0.79 1.6955 -0.9846
0.785 1.6889 -0.9446
0.78 1.6823 -0.9046
0.775 1.6756 -0.8646
0.77 1.669 -0.8246
0.765 1.6624 -0.7846
0.76 1.6557 -0.7446
0.755 1.649 -0.7046
0.75 1.6424 -0.6646
0.745 1.6357 -0.6246
0.74 1.629 -0.5846
0.735 1.6223 -0.5446
0.73 1.6156 -0.5046
0.725 1.6089 -0.4646
0.72 1.6021 -0.4246
0.715 1.5954 -0.3846
0.71 1.5886 -0.3446
0.705 1.5819 -0.3046
0.7 1.5751 -0.2646
0.695 1.5683 -0.2246
0.69 1.5615 -0.1846
0.685 1.5547 -0.1446
0.68 1.5479 -0.1046
0.675 1.5411 -0.0646
0.67 1.5343 -0.0246
0.665 1.5274 0.0154
0.66 1.5206 0.0554
0.655 1.5137 0.0954
0.65 1.5068 0.1354
0.645 1.5 0.1754
0.64 1.4931 0.2154
0.635 1.4862 0.2554
0.63 1.4793 0.2954
0.625 1.4723 0.3354
0.62 1.4654 0.3754
0.6149 1.4585 0.4154
0.6099 1.4515 0.4554
0.6049 1.4446 0.4954
0.5999 1.4376 0.5354
0.5949 1.4306 0.5754
0.5899 1.4236 0.6154
0.5849 1.4166 0.6554
0.5799 1.4096 0.6954
0.5749 1.4026 0.7354
0.5699 1.3956 0.7754
0.5649 1.3886 0.8154
0.5599 1.3815 0.8554
0.5549 1.3745 0.8954
0.5499 1.3674 0.9354
0.5449 1.3603 0.9754
0.5399 1.3532 1.0154
0.5349 1.3461 1.0554
0.5299 1.339 1.0954
0.5249 1.3319 1.1354
0.5199 1.3248 1.1754
0.5149 1.3177 1.2154
0.5099 1.3105 1.2554
0.5049 1.3034 1.2954
0.4999 1.2962 1.3354
0.4949 1.289 1.3754
0.4899 1.2818 1.4154
0.4849 1.2746 1.4554
0.4799 1.2674 1.4954
0.4749 1.2602 1.5354
0.4699 1.253 1.5754
0.4649 1.2458 1.6154
0.4599 1.2385 1.6554
0.4549 1.2313 1.6954
0.4499 1.224 1.7354
0.4449 1.2167 1.7754
0.4399 1.2095 1.8154
0.4349 1.2022 1.8554
0.4299 1.1949 1.8954
0.4249 1.1876 1.9355
0.4199 1.1802 1.9755
0.4149 1.1729 2.0155
0.4099 1.1656 2.0555
0.4049 1.1582 2.0955
0.3999 1.1508 2.1355
0.3949 1.1435 2.1755
0.3899 1.1361 2.2155
0.3849 1.1287 2.2555
0.3799 1.1213 2.2955
0.3749 1.1139 2.3355
0.3699 1.1065 2.3755
0.3649 1.0991 2.4155
0.3599 1.0916 2.4555
0.3549 1.0842 2.4955
0.3499 1.0767 2.5355
0.3449 1.0692 2.5755
0.3399 1.0618 2.6155
0.3349 1.0543 2.6555
0.3299 1.0468 2.6955
0.3249 1.0393 2.7355
0.3199 1.0317 2.7755
0.3149 1.0242 2.8155
0.3099 1.0167 2.8555
0.3049 1.0091 2.8955
0.2999 1.0016 2.9355
0.2949 0.994 2.9755
0.2899 0.9864 3.0155
0.2849 0.9789 3.0555
0.2799 0.9713 3.0955
0.2749 0.9637 3.1355
0.2699 0.956 3.1755
0.2649 0.9484 3.2155
0.2599 0.9408 3.2555
0.2549 0.9331 3.2955
0.2499 0.9255 3.3355
0.2449 0.9178 3.3755
0.2399 0.9101 3.4155
0.2349 0.9025 3.4555
0.2299 0.8948 3.4955
0.2249 0.8871 3.5355
0.2199 0.8793 3.5755
0.2149 0.8716 3.6155
0.2099 0.8639 3.6555
0.2049 0.8561 3.6955
0.1999 0.8484 3.7355
0.1949 0.8406 3.7755
0.1899 0.8329 3.8155
0.1849 0.8251 3.8555
0.1799 0.8173 3.8955
0.1749 0.8095 3.9355
0.1699 0.8017 3.9755
0.1649 0.7938 4.0155
0.1599 0.786 4.0555
0.1549 0.7782 4.0955
0.1499 0.7703 4.1355
0.1449 0.7625 4.1755
0.1399 0.7546 4.2155
0.1349 0.7467 4.2555
0.1299 0.7388 4.2955
0.1249 0.7309 4.3355
0.1199 0.723 4.3755
0.1149 0.7151 4.4155
0.1099 0.7072 4.4555
0.1049 0.6992 4.4955
0.0999 0.6913 4.5355
0.0949 0.6833 4.5755
0.0899 0.6753 4.6155
0.0849 0.6674 4.6555
0.0799 0.6594 4.6955
0.0749 0.6514 4.7355
0.0699 0.6434 4.7755
0.0649 0.6354 4.8155
0.0599 0.6273 4.8555
0.0549 0.6193 4.8955
0.0499 0.6112 4.9356
0.0449 0.6032 4.9756
0.0399 0.5951 5.0156
0.0349 0.587 5.0556
0.0299 0.579 5.0956
0.0249 0.5709 5.1356
0.0199 0.5628 5.1756
0.0149 0.5546 5.2156
0.0099 0.5465 5.2556
0.0049 0.5384 5.2956
-0.0001 0.5302 5.3356
-0.0051 0.5221 5.3756
-0.0101 0.5139 5.4156
-0.0151 0.5057 5.4556
-0.0201 0.4976 5.4956
-0.0251 0.4894 5.5356
-0.0301 0.4812 5.5756
-0.0351 0.4729 5.6156
-0.0401 0.4647 5.6556
-0.0451 0.4565 5.6956
-0.0501 0.4482 5.7356
-0.0551 0.44 5.7756
-0.0601 0.4317 5.8156
-0.0651 0.4235 5.8556
-0.0701 0.4152 5.8956
-0.0751 0.4069 5.9356
-0.0801 0.3986 5.9756
-0.0851 0.3903 6.0156
-0.0901 0.3819 6.0556
-0.0951 0.3736 6.0956
-0.1001 0.3653 6.1356
-0.1051 0.3569 6.1756
-0.1101 0.3486 6.2156
-0.1151 0.3402 6.2556
-0.1201 0.3318 6.2956
-0.1251 0.3234 6.3356
-0.1301 0.315 6.3756
-0.1351 0.3066 6.4156
-0.1401 0.2982 6.4556
-0.1451 0.2898 6.4956
-0.1501 0.2813 6.5356
-0.1551 0.2729 6.5756
-0.1601 0.2644 6.6156
-0.1651 0.2559 6.6556
-0.1701 0.2475 6.6956
-0.1751 0.239 6.7356
-0.1801 0.2305 6.7756
-0.1851 0.222 6.8156
-0.1901 0.2135 6.8556
-0.1951 0.2049 6.8956
-0.2001 0.1964 6.9356
-0.2051 0.1878 6.9756
-0.2101 0.1793 7.0156
-0.2151 0.1707 7.0556
-0.2201 0.1621 7.0956
-0.2251 0.1536 7.1356
-0.2301 0.145 7.1756
-0.2351 0.1364 7.2156
-0.2401 0.1277 7.2556
-0.2451 0.1191 7.2956
-0.2501 0.1105 7.3356
-0.2551 0.1018 7.3756
-0.2601 0.0932 7.4156
-0.2651 0.0845 7.4556
-0.2701 0.0758 7.4956
-0.2751 0.0671 7.5356
-0.2801 0.0585 7.5756
-0.2851 0.0497 7.6156
-0.2901 0.041 7.6556
-0.2951 0.0323 7.6956
-0.3001 0.0236 7.7356
-0.3051 0.0148 7.7756
-0.3101 0.0061 7.8156
-0.3136 -0 7.8434
-0.3136 0 7.8434
-0.3186 0.0061 7.8834
-0.3236 0.0123 7.9234
-0.3286 0.0184 7.9634
-0.3336 0.0245 8.0034
-0.3386 0.0306 8.0434
-0.3436 0.0366 8.0834
-0.3486 0.0427 8.1234
-0.3536 0.0488 8.1634
-0.3586 0.0548 8.2034
-0.3636 0.0609 8.2434
-0.3686 0.0669 8.2834
-0.3736 0.0729 8.3234
-0.3786 0.0789 8.3634
-0.3836 0.0849 8.4034
-0.3886 0.0909 8.4434
-0.3936 0.0969 8.4834
-0.3986 0.1029 8.5234
-0.4036 0.1089 8.5634
-0.4086 0.1148 8.6034
-0.4136 0.1207 8.6434
-0.4186 0.1267 8.6834
-0.4236 0.1326 8.7234
-0.4286 0.1385 8.7634
-0.4336 0.1444 8.8034
-0.4386 0.1503 8.8434
-0.4436 0.1562 8.8834
-0.4486 0.1621 8.9234
-0.4536 0.168 8.9634
-0.4586 0.1738 9.0034
-0.4636 0.1797 9.0434
-0.4686 0.1855 9.0834
-0.4736 0.1913 9.1234
-0.4786 0.1971 9.1634
-0.4836 0.2029 9.2034
-0.4886 0.2087 9.2435
-0.4936 0.2145 9.2835
-0.4986 0.2203 9.3235
-0.5036 0.2261 9.3635
-0.5086 0.2318 9.4035
-0.5136 0.2376 9.4435
-0.5186 0.2433 9.4835
-0.5236 0.249 9.5235
-0.5286 0.2548 9.5635
-0.5336 0.2605 9.6035
-0.5386 0.2662 9.6435
-0.5436 0.2719 9.6835
-0.5486 0.2775 9.7235
-0.5536 0.2832 9.7635
-0.5586 0.2889 9.8035
-0.5636 0.2945 9.8435
-0.5686 0.3002 9.8835
-0.5736 0.3058 9.9235
-0.5786 0.3114 9.9635
-0.5836 0.317 10.0035
-0.5886 0.3226 10.0435
-0.5936 0.3282 10.0835
-0.5986 0.3338 10.1235
-0.6036 0.3394 10.1635
-0.6086 0.3449 10.2035
-0.6136 0.3505 10.2435
-0.6186 0.356 10.2835
-0.6236 0.3615 10.3235
-0.6286 0.3671 10.3635
-0.6336 0.3726 10.4035
-0.6386 0.3781 10.4435
-0.6436 0.3836 10.4835
-0.6486 0.3891 10.5235
-0.6536 0.3945 10.5635
-0.6586 0.4 10.6035
-0.6636 0.4055 10.6435
-0.6686 0.4109 10.6835
-0.6736 0.4163 10.7235
-0.6786 0.4218 10.7635
-0.6836 0.4272 10.8035
-0.6886 0.4326 10.8435
-0.6936 0.438 10.8835
-0.6986 0.4434 10.9235
-0.7036 0.4487 10.9635
-0.7086 0.4541 11.0035
-0.7136 0.4595 11.0435
-0.7186 0.4648 11.0835
-0.7236 0.4701 11.1235
-0.7286 0.4755 11.1635
-0.7336 0.4808 11.2035
-0.7386 0.4861 11.2435
-0.7436 0.4914 11.2835
-0.7486 0.4967 11.3235
-0.7536 0.5019 11.3635
-0.7586 0.5072 11.4035
-0.7636 0.5125 11.4435
-0.7686 0.5177 11.4835
-0.7736 0.523 11.5235
-0.7786 0.5282 11.5635
-0.7836 0.5334 11.6035
-0.7886 0.5386 11.6435
-0.7936 0.5438 11.6835
-0.7986 0.549 11.7235
-0.8036 0.5542 11.7635
-0.8086 0.5593 11.8035
-0.8136 0.5645 11.8435
-0.8186 0.5697 11.8835
-0.8236 0.5748 11.9235
-0.8286 0.5799 11.9635
-0.8336 0.585 12.0035
-0.8386 0.5902 12.0435
-0.8436 0.5953 12.0835
-0.8486 0.6003 12.1235
-0.8536 0.6054 12.1635
-0.8586 0.6105 12.2035
-0.8636 0.6156 12.2436
-0.8686 0.6206 12.2836
-0.8736 0.6257 12.3236
-0.8786 0.6307 12.3636
-0.8836 0.6357 12.4036
-0.8886 0.6407 12.4436
-0.8936 0.6457 12.4836
-0.8986 0.6507 12.5236
-0.9036 0.6557 12.5636
-0.9086 0.6607 12.6036
-0.9136 0.6656 12.6436
-0.9186 0.6706 12.6836
-0.9236 0.6755 12.7236
-0.9286 0.6805 12.7636
-0.9336 0.6854 12.8036
-0.9386 0.6903 12.8436
-0.9436 0.6952 12.8836
-0.9486 0.7001 12.9236
-0.9536 0.705 12.9636
-0.9586 0.7099 13.0036
-0.9636 0.7147 13.0436
-0.9686 0.7196 13.0836
-0.9736 0.7244 13.1236
-0.9786 0.7293 13.1636
-0.9836 0.7341 13.2036
-0.9886 0.7389 13.2436
-0.9936 0.7437 13.2836
-0.9986 0.7485 13.3236
-1.0036 0.7533 13.3636
-1.0086 0.7581 13.4036
-1.0136 0.7628 13.4436
-1.0186 0.7676 13.4836
-1.0236 0.7723 13.5236
-1.0286 0.7771 13.5636
-1.0336 0.7818 13.6036
-1.0386 0.7865 13.6436
-1.0436 0.7912 13.6836
-1.0486 0.7959 13.7236
-1.0536 0.8006 13.7636
-1.0586 0.8053 13.8036
-1.0636 0.81 13.8436
-1.0686 0.8146 13.8836
-1.0736 0.8193 13.9236
-1.0786 0.8239 13.9636
-1.0836 0.8285 14.0036
-1.0886 0.8332 14.0436
-1.0936 0.8378 14.0836
-1.0986 0.8424 14.1236
-1.1036 0.847 14.1636
-1.1086 0.8515 14.2036
-1.1136 0.8561 14.2436
-1.1186 0.8607 14.2836
-1.1236 0.8652 14.3236
-1.1286 0.8698 14.3636
-1.1336 0.8743 14.4036
-1.1386 0.8788 14.4436
-1.1436 0.8833 14.4836
-1.1486 0.8878 14.5236
-1.1536 0.8923 14.5636
-1.1586 0.8968 14.6036
-1.1636 0.9013 14.6436
-1.1686 0.9057 14.6836
-1.1736 0.9102 14.7236
-1.1786 0.9146 14.7636
-1.1836 0.9191 14.8036
-1.1886 0.9235 14.8436
-1.1936 0.9279 14.8836
-1.1986 0.9323 14.9236
-1.2036 0.9367 14.9636
-1.2086 0.9411 15.0036
-1.2136 0.9455 15.0436
-1.2186 0.9498 15.0836
-1.2236 0.9542 15.1236
-1.2286 0.9585 15.1636
-1.2336 0.9629 15.2036
-1.2386 0.9672 15.2437
-1.2436 0.9715 15.2837
-1.2486 0.9758 15.3237
-1.2536 0.9801 15.3637
-1.2586 0.9844 15.4037
-1.2636 0.9887 15.4437
-1.2686 0.9929 15.4837
-1.2736 0.9972 15.5237
-1.2786 1.0014 15.5637
-1.2836 1.0057 15.6037
-1.2886 1.0099 15.6437
-1.2936 1.0141 15.6837
-1.2986 1.0183 15.7237
-1.3036 1.0225 15.7637
-1.3086 1.0267 15.8037
-1.3136 1.0309 15.8437
-1.3186 1.0351 15.8837
-1.3236 1.0392 15.9237
-1.3286 1.0434 15.9637
-1.3336 1.0475 16.0037
-1.3386 1.0516 16.0437
-1.3436 1.0558 16.0837
-1.3486 1.0599 16.1237
-1.3536 1.064 16.1637
-1.3586 1.0681 16.2037
-1.3636 1.0721 16.2437
-1.3686 1.0762 16.2837
-1.3736 1.0803 16.3237
-1.3786 1.0843 16.3637
-1.3836 1.0884 16.4037
-1.3886 1.0924 16.4437
-1.3936 1.0964 16.4837
-1.3986 1.1004 16.5237
-1.4036 1.1044 16.5637
-1.4086 1.1084 16.6037
-1.4136 1.1124 16.6437
-1.4186 1.1164 16.6837
-1.4236 1.1203 16.7237
-1.4286 1.1243 16.7637
-1.4336 1.1282 16.8037
-1.4386 1.1322 16.8437
-1.4436 1.1361 16.8837
-1.4486 1.14 16.9237
-1.4536 1.1439 16.9637
-1.4586 1.1478 16.985
-1.4586 1.1478 16.985
-1.4586 1.1478 16.985
-1.4586 1.1478 16.985
-1.4586 1.1478 16.985

109
serves/serveY_X0_Z1.dat Normal file
View file

@ -0,0 +1,109 @@
0 1 -11.88
0 1 -11.66
0 1 -11.44
0 1 -11.22
0 1 -11
0 1 -10.78
0 1 -10.56
0 1 -10.34
0 1 -10.12
0 1 -9.9
0 1 -9.68
0 1 -9.46
0 1 -9.24
0 1 -9.02
0 1 -8.8
0 1 -8.58
0 1 -8.36
0 1 -8.14
0 1 -7.92
0 1 -7.7
0 1 -7.48
0 1 -7.26
0 1 -7.04
0 1 -6.82
0 1 -6.6
0 1 -6.38
0 1 -6.16
0 1 -5.94
0 1 -5.72
0 1 -5.5
0 1 -5.28
0 1 -5.06
0 1 -4.84
0 1 -4.62
0 1 -4.4
0 1 -4.18
0 1 -3.96
0 1 -3.74
0 1 -3.52
0 1 -3.3
0 1 -3.08
0 1 -2.86
0 1 -2.64
0 1 -2.42
0 1 -2.2
0 1 -1.98
0 1 -1.76
0 1 -1.54
0 1 -1.32
0 1 -1.1
0 1 -0.88
0 1 -0.66
0 1 -0.44
0 1 -0.22
0 1 0
0 1 0.22
0 1 0.44
0 1 0.66
0 1 0.88
0 1 1.1
0 1 1.32
0 1 1.54
0 1 1.76
0 1 1.98
0 1 2.2
0 1 2.42
0 1 2.64
0 1 2.86
0 1 3.08
0 1 3.3
0 1 3.52
0 1 3.74
0 1 3.96
0 1 4.18
0 1 4.4
0 1 4.62
0 1 4.84
0 1 5.06
0 1 5.28
0 1 5.5
0 1 5.72
0 1 5.94
0 1 6.16
0 1 6.38
0 1 6.6
0 1 6.82
0 1 7.04
0 1 7.26
0 1 7.48
0 1 7.7
0 1 7.92
0 1 8.14
0 1 8.36
0 1 8.58
0 1 8.8
0 1 9.02
0 1 9.24
0 1 9.46
0 1 9.68
0 1 9.9
0 1 10.12
0 1 10.34
0 1 10.56
0 1 10.78
0 1 11
0 1 11.22
0 1 11.44
0 1 11.66
0 1 11.88

109
serves/serveY_X0_Z3.dat Normal file
View file

@ -0,0 +1,109 @@
0 3 -11.88
0 3 -11.66
0 3 -11.44
0 3 -11.22
0 3 -11
0 3 -10.78
0 3 -10.56
0 3 -10.34
0 3 -10.12
0 3 -9.9
0 3 -9.68
0 3 -9.46
0 3 -9.24
0 3 -9.02
0 3 -8.8
0 3 -8.58
0 3 -8.36
0 3 -8.14
0 3 -7.92
0 3 -7.7
0 3 -7.48
0 3 -7.26
0 3 -7.04
0 3 -6.82
0 3 -6.6
0 3 -6.38
0 3 -6.16
0 3 -5.94
0 3 -5.72
0 3 -5.5
0 3 -5.28
0 3 -5.06
0 3 -4.84
0 3 -4.62
0 3 -4.4
0 3 -4.18
0 3 -3.96
0 3 -3.74
0 3 -3.52
0 3 -3.3
0 3 -3.08
0 3 -2.86
0 3 -2.64
0 3 -2.42
0 3 -2.2
0 3 -1.98
0 3 -1.76
0 3 -1.54
0 3 -1.32
0 3 -1.1
0 3 -0.88
0 3 -0.66
0 3 -0.44
0 3 -0.22
0 3 0
0 3 0.22
0 3 0.44
0 3 0.66
0 3 0.88
0 3 1.1
0 3 1.32
0 3 1.54
0 3 1.76
0 3 1.98
0 3 2.2
0 3 2.42
0 3 2.64
0 3 2.86
0 3 3.08
0 3 3.3
0 3 3.52
0 3 3.74
0 3 3.96
0 3 4.18
0 3 4.4
0 3 4.62
0 3 4.84
0 3 5.06
0 3 5.28
0 3 5.5
0 3 5.72
0 3 5.94
0 3 6.16
0 3 6.38
0 3 6.6
0 3 6.82
0 3 7.04
0 3 7.26
0 3 7.48
0 3 7.7
0 3 7.92
0 3 8.14
0 3 8.36
0 3 8.58
0 3 8.8
0 3 9.02
0 3 9.24
0 3 9.46
0 3 9.68
0 3 9.9
0 3 10.12
0 3 10.34
0 3 10.56
0 3 10.78
0 3 11
0 3 11.22
0 3 11.44
0 3 11.66
0 3 11.88

109
serves/serveY_X2_Z1.dat Normal file
View file

@ -0,0 +1,109 @@
2 1 -11.88
2 1 -11.66
2 1 -11.44
2 1 -11.22
2 1 -11
2 1 -10.78
2 1 -10.56
2 1 -10.34
2 1 -10.12
2 1 -9.9
2 1 -9.68
2 1 -9.46
2 1 -9.24
2 1 -9.02
2 1 -8.8
2 1 -8.58
2 1 -8.36
2 1 -8.14
2 1 -7.92
2 1 -7.7
2 1 -7.48
2 1 -7.26
2 1 -7.04
2 1 -6.82
2 1 -6.6
2 1 -6.38
2 1 -6.16
2 1 -5.94
2 1 -5.72
2 1 -5.5
2 1 -5.28
2 1 -5.06
2 1 -4.84
2 1 -4.62
2 1 -4.4
2 1 -4.18
2 1 -3.96
2 1 -3.74
2 1 -3.52
2 1 -3.3
2 1 -3.08
2 1 -2.86
2 1 -2.64
2 1 -2.42
2 1 -2.2
2 1 -1.98
2 1 -1.76
2 1 -1.54
2 1 -1.32
2 1 -1.1
2 1 -0.88
2 1 -0.66
2 1 -0.44
2 1 -0.22
2 1 0
2 1 0.22
2 1 0.44
2 1 0.66
2 1 0.88
2 1 1.1
2 1 1.32
2 1 1.54
2 1 1.76
2 1 1.98
2 1 2.2
2 1 2.42
2 1 2.64
2 1 2.86
2 1 3.08
2 1 3.3
2 1 3.52
2 1 3.74
2 1 3.96
2 1 4.18
2 1 4.4
2 1 4.62
2 1 4.84
2 1 5.06
2 1 5.28
2 1 5.5
2 1 5.72
2 1 5.94
2 1 6.16
2 1 6.38
2 1 6.6
2 1 6.82
2 1 7.04
2 1 7.26
2 1 7.48
2 1 7.7
2 1 7.92
2 1 8.14
2 1 8.36
2 1 8.58
2 1 8.8
2 1 9.02
2 1 9.24
2 1 9.46
2 1 9.68
2 1 9.9
2 1 10.12
2 1 10.34
2 1 10.56
2 1 10.78
2 1 11
2 1 11.22
2 1 11.44
2 1 11.66
2 1 11.88

109
serves/serveY_X2_Z3.dat Normal file
View file

@ -0,0 +1,109 @@
2 3 -11.88
2 3 -11.66
2 3 -11.44
2 3 -11.22
2 3 -11
2 3 -10.78
2 3 -10.56
2 3 -10.34
2 3 -10.12
2 3 -9.9
2 3 -9.68
2 3 -9.46
2 3 -9.24
2 3 -9.02
2 3 -8.8
2 3 -8.58
2 3 -8.36
2 3 -8.14
2 3 -7.92
2 3 -7.7
2 3 -7.48
2 3 -7.26
2 3 -7.04
2 3 -6.82
2 3 -6.6
2 3 -6.38
2 3 -6.16
2 3 -5.94
2 3 -5.72
2 3 -5.5
2 3 -5.28
2 3 -5.06
2 3 -4.84
2 3 -4.62
2 3 -4.4
2 3 -4.18
2 3 -3.96
2 3 -3.74
2 3 -3.52
2 3 -3.3
2 3 -3.08
2 3 -2.86
2 3 -2.64
2 3 -2.42
2 3 -2.2
2 3 -1.98
2 3 -1.76
2 3 -1.54
2 3 -1.32
2 3 -1.1
2 3 -0.88
2 3 -0.66
2 3 -0.44
2 3 -0.22
2 3 0
2 3 0.22
2 3 0.44
2 3 0.66
2 3 0.88
2 3 1.1
2 3 1.32
2 3 1.54
2 3 1.76
2 3 1.98
2 3 2.2
2 3 2.42
2 3 2.64
2 3 2.86
2 3 3.08
2 3 3.3
2 3 3.52
2 3 3.74
2 3 3.96
2 3 4.18
2 3 4.4
2 3 4.62
2 3 4.84
2 3 5.06
2 3 5.28
2 3 5.5
2 3 5.72
2 3 5.94
2 3 6.16
2 3 6.38
2 3 6.6
2 3 6.82
2 3 7.04
2 3 7.26
2 3 7.48
2 3 7.7
2 3 7.92
2 3 8.14
2 3 8.36
2 3 8.58
2 3 8.8
2 3 9.02
2 3 9.24
2 3 9.46
2 3 9.68
2 3 9.9
2 3 10.12
2 3 10.34
2 3 10.56
2 3 10.78
2 3 11
2 3 11.22
2 3 11.44
2 3 11.66
2 3 11.88

109
serves/serveY_Xn2_Z1.dat Normal file
View file

@ -0,0 +1,109 @@
-2 1 -11.88
-2 1 -11.66
-2 1 -11.44
-2 1 -11.22
-2 1 -11
-2 1 -10.78
-2 1 -10.56
-2 1 -10.34
-2 1 -10.12
-2 1 -9.9
-2 1 -9.68
-2 1 -9.46
-2 1 -9.24
-2 1 -9.02
-2 1 -8.8
-2 1 -8.58
-2 1 -8.36
-2 1 -8.14
-2 1 -7.92
-2 1 -7.7
-2 1 -7.48
-2 1 -7.26
-2 1 -7.04
-2 1 -6.82
-2 1 -6.6
-2 1 -6.38
-2 1 -6.16
-2 1 -5.94
-2 1 -5.72
-2 1 -5.5
-2 1 -5.28
-2 1 -5.06
-2 1 -4.84
-2 1 -4.62
-2 1 -4.4
-2 1 -4.18
-2 1 -3.96
-2 1 -3.74
-2 1 -3.52
-2 1 -3.3
-2 1 -3.08
-2 1 -2.86
-2 1 -2.64
-2 1 -2.42
-2 1 -2.2
-2 1 -1.98
-2 1 -1.76
-2 1 -1.54
-2 1 -1.32
-2 1 -1.1
-2 1 -0.88
-2 1 -0.66
-2 1 -0.44
-2 1 -0.22
-2 1 0
-2 1 0.22
-2 1 0.44
-2 1 0.66
-2 1 0.88
-2 1 1.1
-2 1 1.32
-2 1 1.54
-2 1 1.76
-2 1 1.98
-2 1 2.2
-2 1 2.42
-2 1 2.64
-2 1 2.86
-2 1 3.08
-2 1 3.3
-2 1 3.52
-2 1 3.74
-2 1 3.96
-2 1 4.18
-2 1 4.4
-2 1 4.62
-2 1 4.84
-2 1 5.06
-2 1 5.28
-2 1 5.5
-2 1 5.72
-2 1 5.94
-2 1 6.16
-2 1 6.38
-2 1 6.6
-2 1 6.82
-2 1 7.04
-2 1 7.26
-2 1 7.48
-2 1 7.7
-2 1 7.92
-2 1 8.14
-2 1 8.36
-2 1 8.58
-2 1 8.8
-2 1 9.02
-2 1 9.24
-2 1 9.46
-2 1 9.68
-2 1 9.9
-2 1 10.12
-2 1 10.34
-2 1 10.56
-2 1 10.78
-2 1 11
-2 1 11.22
-2 1 11.44
-2 1 11.66
-2 1 11.88

109
serves/serveY_Xn2_Z3.dat Normal file
View file

@ -0,0 +1,109 @@
-2 3 -11.88
-2 3 -11.66
-2 3 -11.44
-2 3 -11.22
-2 3 -11
-2 3 -10.78
-2 3 -10.56
-2 3 -10.34
-2 3 -10.12
-2 3 -9.9
-2 3 -9.68
-2 3 -9.46
-2 3 -9.24
-2 3 -9.02
-2 3 -8.8
-2 3 -8.58
-2 3 -8.36
-2 3 -8.14
-2 3 -7.92
-2 3 -7.7
-2 3 -7.48
-2 3 -7.26
-2 3 -7.04
-2 3 -6.82
-2 3 -6.6
-2 3 -6.38
-2 3 -6.16
-2 3 -5.94
-2 3 -5.72
-2 3 -5.5
-2 3 -5.28
-2 3 -5.06
-2 3 -4.84
-2 3 -4.62
-2 3 -4.4
-2 3 -4.18
-2 3 -3.96
-2 3 -3.74
-2 3 -3.52
-2 3 -3.3
-2 3 -3.08
-2 3 -2.86
-2 3 -2.64
-2 3 -2.42
-2 3 -2.2
-2 3 -1.98
-2 3 -1.76
-2 3 -1.54
-2 3 -1.32
-2 3 -1.1
-2 3 -0.88
-2 3 -0.66
-2 3 -0.44
-2 3 -0.22
-2 3 0
-2 3 0.22
-2 3 0.44
-2 3 0.66
-2 3 0.88
-2 3 1.1
-2 3 1.32
-2 3 1.54
-2 3 1.76
-2 3 1.98
-2 3 2.2
-2 3 2.42
-2 3 2.64
-2 3 2.86
-2 3 3.08
-2 3 3.3
-2 3 3.52
-2 3 3.74
-2 3 3.96
-2 3 4.18
-2 3 4.4
-2 3 4.62
-2 3 4.84
-2 3 5.06
-2 3 5.28
-2 3 5.5
-2 3 5.72
-2 3 5.94
-2 3 6.16
-2 3 6.38
-2 3 6.6
-2 3 6.82
-2 3 7.04
-2 3 7.26
-2 3 7.48
-2 3 7.7
-2 3 7.92
-2 3 8.14
-2 3 8.36
-2 3 8.58
-2 3 8.8
-2 3 9.02
-2 3 9.24
-2 3 9.46
-2 3 9.68
-2 3 9.9
-2 3 10.12
-2 3 10.34
-2 3 10.56
-2 3 10.78
-2 3 11
-2 3 11.22
-2 3 11.44
-2 3 11.66
-2 3 11.88

21
unityLink.m Normal file
View file

@ -0,0 +1,21 @@
function image = unityLink(TCP_Handle,pose)
% x,y,z,yaw[z],pitch[y],roll[x]
width = 3840; %480
height = 2160; %752
x = pose(1);
y = pose(2);
z = pose(3);
yaw = pose(4);
pitch = pose(5);
roll = pose(6);
%Set Position
write(TCP_Handle,single([width,height,x,y,z,yaw,pitch,roll]));
%Get image data
data = read(TCP_Handle,width*height*3);
temp = reshape(data,[3,width*height]);
image = imrotate(reshape(temp',[width,height,3]),90);