~ubuntu-branches/ubuntu/wily/slic3r/wily-proposed

« back to all changes in this revision

Viewing changes to lib/Slic3r/Point.pm

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2014-06-17 01:27:26 UTC
  • Revision ID: package-import@ubuntu.com-20140617012726-2wrs4zdo251nr4vg
Tags: upstream-1.1.4+dfsg
ImportĀ upstreamĀ versionĀ 1.1.4+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package Slic3r::Point;
 
2
use strict;
 
3
use warnings;
 
4
 
 
5
sub new_scale {
 
6
    my $class = shift;
 
7
    return $class->new(map Slic3r::Geometry::scale($_), @_);
 
8
}
 
9
 
 
10
1;