mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 08:34:42 +08:00
Fixed bug with plotting scatter plot.
This commit is contained in:
@@ -1083,6 +1083,14 @@ void SeerArrayVisualizerWidget::handleLabelsCheckBox () {
|
||||
|
||||
void SeerArrayVisualizerWidget::handleLineTypeButtonGroup () {
|
||||
|
||||
if (scatterRadioButton->isChecked()) {
|
||||
pointsCheckBox->setChecked(true);
|
||||
pointsCheckBox->setEnabled(false);
|
||||
}else{
|
||||
pointsCheckBox->setChecked(false);
|
||||
pointsCheckBox->setEnabled(true);
|
||||
}
|
||||
|
||||
handleDataChanged();
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
hello481
|
||||
@@ -0,0 +1,11 @@
|
||||
.PHONY: all
|
||||
|
||||
all: hello481
|
||||
|
||||
hello481: hello481.cpp
|
||||
g++ -g -o hello481 hello481.cpp
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -f hello481 hello481.o
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
break -source /nas/erniep/Development/seer/tests/hello481/hello481.cpp -line 17
|
||||
@@ -0,0 +1,19 @@
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
|
||||
int main () {
|
||||
|
||||
double pos[40];
|
||||
double vit[40];
|
||||
|
||||
double posv = 1.0;
|
||||
|
||||
for (int i=0; i<sizeof(pos); i++) {
|
||||
|
||||
pos[i] = posv;
|
||||
posv -= (1.0 - 0.0) / double(sizeof(pos));
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"seerproject": {
|
||||
"executable": "hello481",
|
||||
"postgdbcommands": [
|
||||
""
|
||||
],
|
||||
"pregdbcommands": [
|
||||
""
|
||||
],
|
||||
"startmode": {
|
||||
"arguments": "",
|
||||
"breakatfirstinstruction": false,
|
||||
"breakinfunction": false,
|
||||
"breakinfunctionname": "",
|
||||
"breakinmain": true,
|
||||
"breakpointsfile": "/nas/erniep/Development/seer/tests/hello481/breakpoints.seer",
|
||||
"nobreak": false,
|
||||
"nonstopmode": false,
|
||||
"randomizestartaddress": false,
|
||||
"showassemblytabmode": "auto"
|
||||
},
|
||||
"symbolfile": "",
|
||||
"workingdirectory": ""
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user