Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorYuSanka <yusanka@gmail.com>2018-02-15 20:06:37 +0300
committerYuSanka <yusanka@gmail.com>2018-02-15 20:06:37 +0300
commit59cee4a3aa4bf44e6ec574a337fdd1e4b99e30a6 (patch)
treec0b6a279b646d71cd73740e9b9fade9cae5370c5 /utils
parente0933786e35b044b1694e5c1c4d4458de978ecb2 (diff)
Thanks @stelgenhof Corrected units of measure that had exponents displayed with caret.
Diffstat (limited to 'utils')
-rwxr-xr-xutils/post-processing/flowrate.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/post-processing/flowrate.pl b/utils/post-processing/flowrate.pl
index 7aeef24dc..4d742631e 100755
--- a/utils/post-processing/flowrate.pl
+++ b/utils/post-processing/flowrate.pl
@@ -25,7 +25,7 @@ while (<>) {
my $mm_per_mm = $e_length / $dist; # dE/dXY
my $mm3_per_mm = ($filament_diameter[$T] ** 2) * PI/4 * $mm_per_mm;
my $vol_speed = $F/60 * $mm3_per_mm;
- my $comment = sprintf ' ; dXY = %.3fmm ; dE = %.5fmm ; dE/XY = %.5fmm/mm; volspeed = %.5fmm^3/sec',
+ my $comment = sprintf ' ; dXY = %.3fmm ; dE = %.5fmm ; dE/XY = %.5fmm/mm; volspeed = %.5fmm\u00B3/sec',
$dist, $e_length, $mm_per_mm, $vol_speed;
s/(\R+)/$comment$1/;
}