summaryrefslogtreecommitdiff
path: root/bin/obj2dat.pl
diff options
context:
space:
mode:
Diffstat (limited to 'bin/obj2dat.pl')
-rwxr-xr-xbin/obj2dat.pl41
1 files changed, 41 insertions, 0 deletions
diff --git a/bin/obj2dat.pl b/bin/obj2dat.pl
new file mode 100755
index 0000000..a1f177e
--- /dev/null
+++ b/bin/obj2dat.pl
@@ -0,0 +1,41 @@
+#!/usr/bin/perl
+
+use strict;
+
+die "usage: obj2dat.pl file\n" unless $ARGV[0];
+
+my $i;
+my $j;
+my $com;
+my @vertices;
+my @faces;
+my @linepart;
+my @parts;
+my @points;
+my @tmp;
+my $tmp;
+my $color=2;
+open(FILE,$ARGV[0]) if $ARGV[0];
+while(<FILE>) {
+ chomp;
+ $_ =~ s/[\r\n]//g;
+ @linepart=split(/ /,$_,2);
+ $com=$linepart[0];
+ if($com eq "v") {
+ push(@vertices,$linepart[1]);
+ }
+ if($com eq "f") {
+ push(@faces,$linepart[1]);
+ }
+}
+
+foreach $tmp (@faces) {
+ @points=split(/ /,$tmp);
+ @points = map { $_ =~ s/\/.+$//g; $_; } @points;
+ for($i=0;$i<(@points);$i++) {
+ print $vertices[$points[$i]-1];
+ print "\n";
+ }
+ print "\n";
+ print "\n";
+}