aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZeus Panchenko <zeus@camb.us>2008-06-18 09:56:56 +0000
committerZeus Panchenko <zeus@camb.us>2008-06-18 09:56:56 +0000
commitbce4e115a540fc43a3bf7c788effbedde2ab2b9f (patch)
treeb6a5e4093bcc80963be853474cf88d24a5a15d05
parent7f2d5d062182d9ee48c978fc1804db9ee2975da0 (diff)
downloadrenrot-bce4e115a540fc43a3bf7c788effbedde2ab2b9f.tar.gz
renrot-bce4e115a540fc43a3bf7c788effbedde2ab2b9f.tar.bz2
function name rotCs changed to rot_thm_cs
git-svn-id: file:///svnroot/renrot/trunk@533 fe2816f4-e837-0410-b10a-f608c9d244a1
-rwxr-xr-xrenrot10
1 files changed, 5 insertions, 5 deletions
diff --git a/renrot b/renrot
index 76d80c1..dae35c5 100755
--- a/renrot
+++ b/renrot
@@ -1250,7 +1250,7 @@ sub contactSheetGenerator {
$filefull = $file;
if ($contactSheetThm != 0 and defined $orientation and $orientation > 1) {
- $filefull = rotCs ($file, $rotorient{$orientation}, $workdir);
+ $filefull = rot_thm_cs ($file, $rotorient{$orientation}, $workdir);
} elsif ($contactSheetThm != 0 and defined $orientation and $orientation == 1) {
# we need this since rotated img'll be @ $workdir, but others are in current
$ThumbnailOriginal = $workdir . $file;
@@ -1270,7 +1270,7 @@ sub contactSheetGenerator {
}
if (defined $orientation and $orientation > 1) {
- $filefull = rotCs ($ThumbnailOriginal, $orientation, "");
+ $filefull = rot_thm_cs ($ThumbnailOriginal, $orientation, "");
} else {
$filefull = $ThumbnailOriginal;
}
@@ -1545,8 +1545,8 @@ sub thm_gen_stub {
}
########################################################################################
-# Usage : rotCs($base_orig, $angle, $workdir);
-# Purpose : rotates thumbnails for montage
+# Usage : rot_thm_cs($base_orig, $angle, $workdir);
+# Purpose : rotates thumbnails for contact sheet and put it to the workdir
# Returns : none
# Parameters : $base_orig str - pathless filename of the rotated file
# : $angle num - rotation angle
@@ -1554,7 +1554,7 @@ sub thm_gen_stub {
# Throws : no exceptions
# Comments : works only with JPEGs
# See Also : contactSheetGenerator();
-sub rotCs {
+sub rot_thm_cs {
my $base_orig = shift;
my $angle = shift;
my $workdir = shift;

Return to:

Send suggestions and report system problems to the System administrator.