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

z-every-line.pl « post-processing « utils - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5f9d311b6e99854b5065c63526011031d9edc95b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/perl

use strict;

my $z = 0;

# read stdin and any/all files passed as parameters one line at a time
for (<>) {
	# if we find a Z word, save it
	$z = $1 if /Z(\d+(\.\d+)?)/;

	# if we don't have Z, but we do have X and Y
	if (!/Z/ && /X/ && /Y/ && $z > 0) {
		# chop off the end of the line (incl. comments), saving chopped section in $1
		s/\s*([\r\n\;\(].*)//s;
		# print start of line, insert our Z value then re-add the chopped end of line
		print "$_ Z$z $1";
	}
	else {
		# nothing interesting, print line as-is
		print;
	}
}