mega changes -- transition to Python3
This commit is contained in:
@@ -16,14 +16,9 @@ public class Main {
|
||||
testprocess1 tp1 = new testprocess1();
|
||||
tp1.runProcess();
|
||||
|
||||
// Screen s2 = new Screen(new GridLayout(1,2));
|
||||
// s2.add(t3);
|
||||
// s2.add(t4);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Screen s2 = new Screen(new GridLayout(1,2));
|
||||
// s2.add(t3);
|
||||
// s2.add(t4);
|
||||
|
||||
// testprocess2 tp2 = new testprocess2(m, null);
|
||||
// tp2.runProcess();
|
||||
|
||||
@@ -1,7 +1,14 @@
|
||||
Project Log:
|
||||
|
||||
TODO: Backfill from Google doc project log; create automated prompt.
|
||||
|
||||
2024-12-17: {
|
||||
|
||||
}
|
||||
{ title: "Title Test"
|
||||
date: "Date Test"
|
||||
entry:"Well Well Well, Loooky what we have here. I need some lorem
|
||||
Ipsum
|
||||
Up
|
||||
In
|
||||
Here
|
||||
BOOYAHHHHHHHHH"
|
||||
},
|
||||
{ title: "dasd"
|
||||
date: "asdasd"
|
||||
entry:"Anotha one"
|
||||
},
|
||||
9
Java/ProjectModels/Test.json
Normal file
9
Java/ProjectModels/Test.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{ title: "Title Test",
|
||||
date: "Date Test",
|
||||
entry:"Well Well Well, Loooky what we have here. I need some lorem
|
||||
Ipsum
|
||||
Up
|
||||
In
|
||||
Here
|
||||
BOOYAHHHHHHHHH",
|
||||
},
|
||||
@@ -5,6 +5,8 @@ import javax.swing.*;
|
||||
import java.awt.*;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
import java.io.BufferedWriter;
|
||||
import java.io.FileWriter;
|
||||
import java.io.IOException;
|
||||
|
||||
import CognitiveModel.ModelFiles.*;
|
||||
@@ -28,6 +30,10 @@ public class visualizer extends Screen {
|
||||
JLabel four = new JLabel();
|
||||
Timer t = new Timer(1, null);
|
||||
Model m;
|
||||
|
||||
|
||||
FileWriter fw;
|
||||
BufferedWriter bw;
|
||||
public visualizer(Model m) {
|
||||
super(new BorderLayout());
|
||||
this.m = m;
|
||||
@@ -163,12 +169,16 @@ public class visualizer extends Screen {
|
||||
tool.setBackground(Color.white);
|
||||
b1.setText("Data Log Disabled");
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
};
|
||||
b1.addActionListener(press);
|
||||
JButton b2 = new JButton("button 2");
|
||||
JButton b2 = new JButton("Make Note");
|
||||
b2.addActionListener(e-> {
|
||||
makeNote();
|
||||
});
|
||||
tool.setBackground(Color.red);
|
||||
tool.setOrientation(1);
|
||||
tool.add(b1);
|
||||
@@ -287,6 +297,59 @@ public class visualizer extends Screen {
|
||||
|
||||
public Timer exportTimer() {
|
||||
return t;
|
||||
}
|
||||
|
||||
public void makeNote() {
|
||||
JFrame noteFrame = new JFrame();
|
||||
JPanel noteScreen = new JPanel();
|
||||
noteScreen.setLayout(new GridLayout(4,1));
|
||||
JTextField title = new JTextField();
|
||||
JTextField date = new JTextField();
|
||||
JTextArea entry = new JTextArea();
|
||||
JButton saveNote = new JButton();
|
||||
try {
|
||||
fw = new FileWriter("README.txt", true);
|
||||
bw = new BufferedWriter(fw);
|
||||
|
||||
noteFrame.setPreferredSize(new Dimension(500,500));
|
||||
|
||||
|
||||
noteScreen.add(title);
|
||||
noteScreen.add(date);
|
||||
noteScreen.add(entry);
|
||||
noteScreen.add(saveNote);
|
||||
noteFrame.add(noteScreen);
|
||||
|
||||
noteFrame.pack();
|
||||
noteFrame.setVisible(true);
|
||||
|
||||
saveNote.addActionListener(e -> {
|
||||
try {
|
||||
String newEntry = String.format("\n{ title: \"%s\"\ndate: \"%s\"\n entry:\"%s\"\n},",title.getText(),date.getText(),entry.getText());
|
||||
|
||||
bw.write(newEntry);
|
||||
bw.flush();
|
||||
bw.close();
|
||||
} catch (IOException e1) {
|
||||
JOptionPane error = new JOptionPane("Error saving");
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
|
||||
} catch(IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
noteFrame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
142
Java/ProjectModels/dataLog/2024-12-07T21:38:31.973740.csv
Normal file
142
Java/ProjectModels/dataLog/2024-12-07T21:38:31.973740.csv
Normal file
@@ -0,0 +1,142 @@
|
||||
Elevator, Roll, Yaw, Throttle, Flaps
|
||||
-0.027451, 0.615686, 0.121569, 1.000000, 0.000000
|
||||
-0.027451, 0.615686, 0.121569, 1.000000, 0.000000
|
||||
-0.027451, 0.615686, 0.121569, 1.000000, 0.000000
|
||||
-0.025160, 0.615686, 0.121569, 1.000000, 0.000000
|
||||
-0.018032, 0.615686, 0.121569, 1.000000, 0.000000
|
||||
-0.008946, 0.558105, 0.110294, 1.000000, 0.000000
|
||||
0.016080, 0.046859, 0.010190, 1.000000, 0.000000
|
||||
0.041168, -0.465645, -0.090160, 1.000000, 0.000000
|
||||
0.072984, -0.714807, -0.141151, 1.000000, 0.000000
|
||||
0.105265, -0.940778, -0.187779, 1.000000, 0.000000
|
||||
0.113726, -1.000000, -0.200000, 1.000000, 0.000000
|
||||
0.113726, -1.000000, -0.200000, 1.000000, 0.000000
|
||||
0.113726, -1.000000, -0.200000, 1.000000, 0.000000
|
||||
0.113726, -1.000000, -0.200000, 1.000000, 0.000000
|
||||
0.111637, -1.000000, -0.200000, 1.000000, 0.000000
|
||||
0.107753, -1.000000, -0.200000, 1.000000, 0.000000
|
||||
0.090097, -0.804658, -0.160537, 1.000000, 0.000000
|
||||
0.059241, -0.422819, -0.083398, 1.000000, 0.000000
|
||||
0.033948, -0.164720, -0.032111, 1.000000, 0.000000
|
||||
0.015275, -0.045211, -0.009702, 1.000000, 0.000000
|
||||
0.003922, 0.032740, 0.005244, 1.000000, 0.000000
|
||||
0.003922, 0.046948, 0.008796, 1.000000, 0.000000
|
||||
0.003922, 0.061786, 0.012259, 1.000000, 0.000000
|
||||
0.003922, 0.083051, 0.015803, 1.000000, 0.000000
|
||||
0.003922, 0.104358, 0.019354, 1.000000, 0.000000
|
||||
0.003922, 0.125915, 0.022947, 1.000000, 0.000000
|
||||
0.003922, 0.148159, 0.026654, 1.000000, 0.000000
|
||||
0.003922, 0.158683, 0.030322, 1.000000, 0.000000
|
||||
0.003922, 0.166116, 0.034039, 1.000000, 0.000000
|
||||
0.003922, 0.283275, 0.057725, 1.000000, 0.000000
|
||||
0.003922, 0.457834, 0.091878, 1.000000, 0.000000
|
||||
0.003922, 0.546335, 0.110113, 1.000000, 0.000000
|
||||
0.003922, 0.574907, 0.117256, 1.000000, 0.000000
|
||||
0.003922, 0.592157, 0.121569, 1.000000, 0.000000
|
||||
0.003922, 0.592157, 0.121569, 1.000000, 0.000000
|
||||
0.003922, 0.592157, 0.121569, 1.000000, 0.000000
|
||||
0.003922, 0.592157, 0.121569, 1.000000, 0.000000
|
||||
0.003922, 0.592157, 0.121569, 1.000000, 0.000000
|
||||
0.003922, 0.592157, 0.121569, 1.000000, 0.000000
|
||||
0.003922, 0.592157, 0.121569, 1.000000, 0.000000
|
||||
0.003922, 0.592157, 0.121569, 1.000000, 0.000000
|
||||
0.003922, 0.592157, 0.121569, 1.000000, 0.000000
|
||||
0.003922, 0.592157, 0.121569, 1.000000, 0.000000
|
||||
0.003922, 0.592157, 0.121569, 1.000000, 0.000000
|
||||
0.003922, 0.592157, 0.121569, 1.000000, 0.000000
|
||||
0.003922, 0.592157, 0.121569, 1.000000, 0.000000
|
||||
0.003922, 0.592157, 0.121569, 1.000000, 0.000000
|
||||
0.003922, 0.592157, 0.121569, 1.000000, 0.000000
|
||||
0.003922, 0.592157, 0.121569, 1.000000, 0.000000
|
||||
0.003922, 0.592157, 0.121569, 1.000000, 0.000000
|
||||
0.003922, 0.592157, 0.121569, 1.000000, 0.000000
|
||||
0.004623, 0.578134, 0.118764, 1.000000, 0.000000
|
||||
0.011669, 0.437213, 0.090580, 1.000000, 0.000000
|
||||
0.019799, 0.276776, 0.058441, 1.000000, 0.000000
|
||||
0.030902, 0.180551, 0.036236, 1.000000, 0.000000
|
||||
0.041750, 0.086531, 0.014539, 1.000000, 0.000000
|
||||
0.046236, 0.055917, 0.008666, 1.000000, 0.000000
|
||||
0.049697, 0.035152, 0.005205, 1.000000, 0.000000
|
||||
0.050980, 0.007684, -0.000032, 1.000000, 0.000000
|
||||
0.050980, -0.031292, -0.007827, 1.000000, 0.000000
|
||||
0.047747, -0.076850, -0.016615, 1.000000, 0.000000
|
||||
0.040527, -0.134607, -0.027445, 1.000000, 0.000000
|
||||
0.035294, -0.176471, -0.035294, 1.000000, 0.000000
|
||||
0.035294, -0.176471, -0.035294, 1.000000, 0.000000
|
||||
0.035294, -0.176471, -0.035294, 1.000000, 0.000000
|
||||
0.030835, -0.156406, -0.030835, 1.000000, 0.000000
|
||||
0.023403, -0.122963, -0.023403, 1.000000, 0.000000
|
||||
0.019608, -0.087175, -0.015866, 1.000000, 0.000000
|
||||
0.019608, -0.048247, -0.008081, 1.000000, 0.000000
|
||||
0.019608, -0.025737, -0.003922, 1.000000, 0.000000
|
||||
0.019608, -0.022039, -0.003922, 1.000000, 0.000000
|
||||
0.019608, -0.006105, -0.001466, 1.000000, 0.000000
|
||||
0.019608, 0.033829, 0.005794, 1.000000, 0.000000
|
||||
0.019608, 0.075119, 0.013715, 1.000000, 0.000000
|
||||
0.019608, 0.116461, 0.023256, 1.000000, 0.000000
|
||||
0.019608, 0.153501, 0.031803, 1.000000, 0.000000
|
||||
0.019608, 0.168628, 0.035294, 1.000000, 0.000000
|
||||
0.019608, 0.168628, 0.035294, 1.000000, 0.000000
|
||||
0.019608, 0.168628, 0.035294, 1.000000, 0.000000
|
||||
0.019608, 0.168628, 0.035294, 1.000000, 0.000000
|
||||
0.019608, 0.168628, 0.035294, 1.000000, 0.000000
|
||||
0.019608, 0.168628, 0.035294, 1.000000, 0.000000
|
||||
0.019608, 0.168628, 0.035294, 1.000000, 0.000000
|
||||
0.019608, 0.168628, 0.035294, 1.000000, 0.000000
|
||||
0.019608, 0.168628, 0.035294, 1.000000, 0.000000
|
||||
0.016330, 0.198129, 0.041850, 1.000000, 0.000000
|
||||
0.013181, 0.226473, 0.048149, 1.000000, 0.000000
|
||||
0.011765, 0.269528, 0.056492, 1.000000, 0.000000
|
||||
0.011765, 0.308989, 0.063667, 1.000000, 0.000000
|
||||
0.011765, 0.330794, 0.066667, 1.000000, 0.000000
|
||||
0.011765, 0.340486, 0.066667, 1.000000, 0.000000
|
||||
0.011765, 0.350149, 0.067232, 1.000000, 0.000000
|
||||
0.011765, 0.357444, 0.070879, 1.000000, 0.000000
|
||||
0.011765, 0.365362, 0.074611, 1.000000, 0.000000
|
||||
0.011765, 0.406242, 0.080900, 1.000000, 0.000000
|
||||
0.011765, 0.442962, 0.086549, 1.000000, 0.000000
|
||||
0.011765, 0.469278, 0.091502, 1.000000, 0.000000
|
||||
0.011765, 0.476131, 0.094928, 1.000000, 0.000000
|
||||
0.011765, 0.482353, 0.098039, 1.000000, 0.000000
|
||||
0.011765, 0.482353, 0.098039, 1.000000, 0.000000
|
||||
0.011765, 0.482353, 0.098039, 1.000000, 0.000000
|
||||
0.011765, 0.482353, 0.098039, 1.000000, 0.000000
|
||||
0.011765, 0.482353, 0.098039, 1.000000, 0.000000
|
||||
0.011765, 0.482353, 0.098039, 1.000000, 0.000000
|
||||
0.011765, 0.482353, 0.098039, 1.000000, 0.000000
|
||||
0.011765, 0.460970, 0.093927, 1.000000, 0.000000
|
||||
0.011765, 0.377419, 0.077860, 1.000000, 0.000000
|
||||
0.011765, 0.290506, 0.061146, 1.000000, 0.000000
|
||||
0.017800, 0.030978, 0.007522, 1.000000, 0.000000
|
||||
0.024597, -0.247670, -0.050246, 1.000000, 0.000000
|
||||
0.027451, -0.376429, -0.075975, 1.000000, 0.000000
|
||||
0.027451, -0.398298, -0.078709, 1.000000, 0.000000
|
||||
0.027451, -0.421658, -0.081629, 1.000000, 0.000000
|
||||
0.027451, -0.427451, -0.082353, 1.000000, 0.000000
|
||||
0.027451, -0.427451, -0.082353, 1.000000, 0.000000
|
||||
0.027451, -0.427451, -0.082353, 1.000000, 0.000000
|
||||
0.027451, -0.427451, -0.082353, 1.000000, 0.000000
|
||||
0.034393, -0.253911, -0.047645, 1.000000, 0.000000
|
||||
0.048982, 0.110811, 0.025300, 1.000000, 0.000000
|
||||
0.059845, 0.368099, 0.076553, 1.000000, 0.000000
|
||||
0.063351, 0.406663, 0.083564, 1.000000, 0.000000
|
||||
0.066667, 0.443677, 0.090196, 1.000000, 0.000000
|
||||
0.066667, 0.454719, 0.090196, 1.000000, 0.000000
|
||||
0.066667, 0.465692, 0.090196, 1.000000, 0.000000
|
||||
0.066667, 0.469954, 0.093483, 1.000000, 0.000000
|
||||
0.066667, 0.473556, 0.097085, 1.000000, 0.000000
|
||||
0.066667, 0.474510, 0.098039, 1.000000, 0.000000
|
||||
0.066667, 0.474510, 0.098039, 1.000000, 0.000000
|
||||
0.066667, 0.474510, 0.098039, 1.000000, 0.000000
|
||||
0.066667, 0.474510, 0.098039, 1.000000, 0.000000
|
||||
0.066667, 0.474510, 0.098039, 1.000000, 0.000000
|
||||
0.066667, 0.474510, 0.098039, 1.000000, 0.000000
|
||||
0.066667, 0.474510, 0.098039, 1.000000, 0.000000
|
||||
0.066667, 0.474510, 0.098039, 1.000000, 0.000000
|
||||
0.066667, 0.474510, 0.098039, 1.000000, 0.000000
|
||||
0.066667, 0.474510, 0.098039, 1.000000, 0.000000
|
||||
0.066667, 0.474510, 0.098039, 1.000000, 0.000000
|
||||
0.066667, 0.474510, 0.098039, 1.000000, 0.000000
|
||||
0.066667, 0.474510, 0.098039, 1.000000, 0.000000
|
||||
0.066667, 0.474510, 0.098039, 1.000000, 0.000000
|
||||
0.066667, 0.474510, 0.098039, 1.000000, 0.000000
|
||||
|
176
Java/ProjectModels/dataLog/2024-12-07T21:38:42.670551.csv
Normal file
176
Java/ProjectModels/dataLog/2024-12-07T21:38:42.670551.csv
Normal file
@@ -0,0 +1,176 @@
|
||||
Elevator, Roll, Yaw, Throttle, Flaps
|
||||
0.003922, -0.145098, -0.027451, 1.000000, 0.000000
|
||||
0.003922, -0.145098, -0.027451, 1.000000, 0.000000
|
||||
0.001758, -0.106149, -0.020959, 1.000000, 0.000000
|
||||
-0.001903, -0.040256, -0.009977, 1.000000, 0.000000
|
||||
-0.003922, -0.002225, -0.002225, 1.000000, 0.000000
|
||||
-0.003922, 0.001639, 0.001639, 1.000000, 0.000000
|
||||
-0.003922, 0.003922, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.003922, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.003922, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.003922, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.004704, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.008182, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.012505, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.022975, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.033004, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.035294, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.035294, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.035294, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.035294, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.035294, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.035294, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.035294, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.035294, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.035294, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.035294, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.035294, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.035294, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.035294, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.035294, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.035294, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.035294, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.035294, 0.003922, 1.000000, 0.000000
|
||||
-0.003922, 0.035294, 0.003922, 1.000000, 0.000000
|
||||
-0.000840, 0.035294, 0.003922, 1.000000, 0.000000
|
||||
0.003379, 0.035294, 0.003922, 1.000000, 0.000000
|
||||
0.051002, 0.031673, 0.003922, 1.000000, 0.000000
|
||||
0.105875, 0.027452, 0.003922, 1.000000, 0.000000
|
||||
0.109934, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.113726, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.104427, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.077874, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.050050, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
0.017162, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.016851, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.023007, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.026621, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.027451, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.027451, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.027451, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.027451, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.027451, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.027451, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.027451, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.027451, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.027451, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.028397, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.031739, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.034961, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.038293, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.042012, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.043137, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.043137, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.044327, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.047871, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.051675, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.055168, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.058754, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.065101, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.072274, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.082223, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.092332, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.103807, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.119170, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.135084, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.137255, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.137255, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.137255, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.137255, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.137255, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.137255, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.137255, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.137255, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.137255, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.137255, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.137255, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.137255, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.137255, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.137255, 0.027451, 0.003922, 1.000000, 0.000000
|
||||
-0.127643, 0.024247, 0.003922, 1.000000, 0.000000
|
||||
-0.116964, 0.020687, 0.003922, 1.000000, 0.000000
|
||||
-0.101080, 0.019608, 0.003922, 1.000000, 0.000000
|
||||
-0.084524, 0.019608, 0.003922, 1.000000, 0.000000
|
||||
-0.073260, 0.019608, 0.003922, 1.000000, 0.000000
|
||||
-0.069383, 0.019608, 0.003922, 1.000000, 0.000000
|
||||
-0.066667, 0.019608, 0.003922, 1.000000, 0.000000
|
||||
-0.066667, 0.019608, 0.003922, 1.000000, 0.000000
|
||||
-0.066667, 0.019608, 0.003922, 1.000000, 0.000000
|
||||
-0.066667, 0.019608, 0.003922, 1.000000, 0.000000
|
||||
-0.066667, 0.019608, 0.003922, 1.000000, 0.000000
|
||||
-0.066667, 0.019608, 0.003922, 1.000000, 0.000000
|
||||
-0.066667, 0.019608, 0.003922, 1.000000, 0.000000
|
||||
-0.066667, 0.006472, 0.001732, 1.000000, 0.000000
|
||||
-0.066667, -0.016772, -0.002142, 1.000000, 0.000000
|
||||
-0.072984, -0.048510, -0.008133, 1.000000, 0.000000
|
||||
-0.084076, -0.085483, -0.015528, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
-0.090196, -0.105882, -0.019608, 1.000000, 0.000000
|
||||
|
Reference in New Issue
Block a user