diff options
-rw-r--r-- | main.cpp | 2 | ||||
-rw-r--r-- | main_view.qml | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -113,7 +113,7 @@ int main(int argc, char **argv) return 1; } - // Sort indices so some operations become easier later + // Sort indices (some operations become easier later) arma::uvec cpSortedIndices = arma::sort_index(cpIndices); cpIndices = cpIndices(cpSortedIndices); Ys = Ys.rows(cpSortedIndices); diff --git a/main_view.qml b/main_view.qml index 48caa12..241f440 100644 --- a/main_view.qml +++ b/main_view.qml @@ -306,7 +306,7 @@ ApplicationWindow { GridLayout { columns: 2 - Label { text: "Alpha:" } + Label { text: "Blur (α):" } SpinBox { id: alphaSpinBox maximumValue: 100 @@ -317,7 +317,7 @@ ApplicationWindow { onValueChanged: splat.setAlpha(this.value) } - Label { text: "Beta:" } + Label { text: "Radius (β):" } SpinBox { id: betaSpinBox maximumValue: 100 |