Main > Free Download Search >

Free rotation software for linux

rotation

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 137
Animated rotation 1

Animated rotation 1


Animated rotation is a GIMP plugin that can build an new animated image by rotation of a layer. more>>
Animated rotation is a GIMP plugin that can build an new animated image by rotation of a layer. You can give the angle of rotation and the number of increments.

<<less
Download (MB)
Added: 2006-08-16 License: GPL (GNU General Public License) Price:
1193 downloads
Solid Of Rotation 1.3.0

Solid Of Rotation 1.3.0


Solid Of Rotation is a 3D graphic editor. more>>
There is quite a bit of history on this item. One of the assignments in a computer graphics course at the University of Victoria was to rotate a number of Bezier curves around an axis and display the result in 3D using a single light source.

This was on Sun Sparcs using X. Since then the program has mutated to match my platform preference at a given time (DOS, Windows, Linux).

The latest mutation has been to SDL/OpenGL and the result runs happily on Linux and Windows. Screenshot junkies might find the following of interest:
<<less
Download (0.30MB)
Added: 2005-09-18 License: GPL (GNU General Public License) Price:
1498 downloads
rotatezlogs 1.0

rotatezlogs 1.0


rotatezlogs allows you to let Zope rotate your log files with rotatezlogs. more>>
rotatezlogs allows you to let Zope rotate your log files with rotatezlogs.
This product provides two additional logger handlers to the standard ones (see the doc in zope.conf) that rotate the log files.
It is not always possible to rotate Zope logs using system wide services. This utility enables to rotate automatically Zope logs (with or without zipping) using the features of the "logging" standard module.
Dont look for new objects in the ZMI factory. All is configured in zope.conf.
Note that the log rotation rules is based on the actual size of a log file, and not on time periods (cron like).
Enhancements:
- Unified handlers (simpler to document and configure)
- Added gzip and bzip2 compression modes.
<<less
Download (0.045MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
986 downloads
Image rotator 0.2

Image rotator 0.2


Image rotator can be used to automatically detect and rotate landscape/portrait photos from digital cameras. more>>
Image rotator can be used to automatically detect and rotate landscape/portrait photos from digital cameras.
Currently, only outdoor photos are recognized. Image rotator is a command line tool which uses an artifical neural network to detect the orientation of images. Image reading, scaling, and rotation are done with the ImageMagick library.
Enhancements:
- The --verify option can now be used to decrease the number of false decisions.
- This is done by running the image three times (original, rotated left, rotated right) through the neural network.
- A small memory leak was fixed.
<<less
Download (0.14MB)
Added: 2005-08-22 License: GPL (GNU General Public License) Price:
1527 downloads
mod_log_rotate 1.0

mod_log_rotate 1.0


mod_log_rotate is an automatic in-process rotation of transfer log. more>>
mod_log_rotate is an automatic in-process rotation of transfer log. Replaces rotatelogs.

If you host a lot of virtual servers on a single Apache box and use the supplied rotatelogs program to rotate the logs you’ll notice that your process table is cluttered up with an instance of rotatelogs for each virtual server.

With mod_log_rotate the log rotation is handled by the server process so you save a bunch of processes and file descriptors.

Installation:

Install mod_log_rotate using apxs as follows:

$ apxs -i -a -c mod_log_rotate.c

Configure:

Load and enable mod_log_rotate by adding two lines to your httpd.conf. For Apache 1.3 use

LoadModule log_rotate_module libexec/mod_log_rotate.so
RotateLogs On

and for Apache 2 use

LoadModule log_rotate_module modules/mod_log_rotate.so
RotateLogs On

The LoadModule line may have already been added if you used the apxs -a (activate) option when compiling the module.

If you are using the Apache 1.3 version of the module you will also have to replace any CustomLog, TransferLog, LogFormat and CookieLog directives with the corresponding RotateXXX version. For example

TransferLog logs/access_log

would become

RotateTransferLog logs/access_log

You may need to review the permissions on your log directories. Normally Apache creates log files while it’s running as root and then becomes nobody (or whatever user you’re running it as) before it starts serving pages. In order to be able to create new log files during rotation the permissions on any log directories need to allow writes by the web server user.

The remainder of the directives provided by mod_log_rotate control the interval and timing of log rotation. The configuration directives may be used globally or per virtual server.

<<less
Download (0.032MB)
Added: 2006-05-10 License: The Apache License Price:
1267 downloads
Pentago 0.1

Pentago 0.1


Pentago project is a two-player abstract strategy game. more>>
Pentago project is a two-player abstract strategy game.

The game is played on a 6x6 board divided into four 3x3 sub-boards. Taking turns, each player places a marble of their color (black or white) onto an unoccupied space on the board, and then rotates one of the sub-boards by 90 degrees either clockwise or counter-clockwise.

A player wins by getting five of their marbles in a vertical, horizontal or diagonal row (either before or after the sub-board rotation in their move). If all 36 spaces on the board are occupied without a row of five being formed then the game is a draw.

The program includes an AI (Artificial Intelligence).

<<less
Download (0.031MB)
Added: 2007-05-08 License: Freeware Price:
550 downloads
Potrace 1.8

Potrace 1.8


Potrace project is a tool for tracing a bitmap, which means, transforming a bitmap into a smooth, scalable image. more>>
The input is a bitmap (PBM, PGM, PPM, or BMP format), and the default output is an encapsulated PostScript file (EPS).
A typical use is to create EPS files from scanned data, such as company or university logos, handwritten notes, etc. The resulting image is not "jaggy" like a bitmap, but smooth. It can then be rendered at any resolution.
Potrace can currently produce the following output formats: EPS, PostScript, PDF, SVG (scalable vector graphics), Xfig, Gimppath, and PGM (for easy antialiasing). Additional backends might be added in the future.
Mkbitmap is a program distributed with Potrace which can be used to pre-process the input for better tracing behavior on greyscale and color images.
Enhancements:
- This release contains minor bugfixes and portability improvements. Rotation is now implemented in the PDF backend.
<<less
Download (0.088MB)
Added: 2007-04-18 License: GPL (GNU General Public License) Price:
926 downloads
Physics::Lorentz::Transformation 0.01

Physics::Lorentz::Transformation 0.01


Physics::Lorentz::Transformation Perl module contains representation of poincare transformations. more>>
Physics::Lorentz::Transformation Perl module contains representation of poincare transformations.

SYNOPSIS

use Physics::Lorentz;
my $rotation = Physics::Lorentz::Transformation->rotation_euler(
$alpha, $beta, $gamma
);
my $vector = Physics::Lorentz::Vector->new([$t, $x, $y, $z]);
my $rotated = $rotation->apply($vector);
# or: $rotated = $rotation * $vector;

...

This class represents a Poincare transformation. That is a proper or improper Lorentz transformation plus a shift by some 4-vector. (x = lamda*x + a)

Yes, the class name might be misleading, but honestly, when most non-physicists talk about Lorentz transformations, they mean Poincare transformations anyway. (Pun intended.)

To sum this up, the set of Poincare transformations contains, among others

Boosts
Rotations
Space Inversions / Parity
Time Inversion
Shifts by a constant vector
Combinations thereof

OVERLOADED INTERFACE

Stringification is overloaded with the stringify method.
Multiplication (*) is overloaded with the merge method for other transformations: $t3 = $t1 * $t2 corresponds to the following application on a vector: t1 * ( t2 * vec ). (I.e. t2 first, then t1) Of course, Poincare transformations do not commute!

The assignment form of multiplication is supported for merging transformations but its use is discouraged unless youre into obfuscation.

Multiplication is also overloaded for application to vectors, but only if the vector is on the right of the transformation: $t * $v is okay, but $v * $t is not.

<<less
Download (0.011MB)
Added: 2007-07-30 License: Perl Artistic License Price:
820 downloads
Mantissa 7.0

Mantissa 7.0


Mantissa is a collection of various mathematical tools aimed towards for simulation. more>>
Mantissa is a collection of various mathematical tools aimed towards for simulation.
Mantissa contains a collection of algorithms, among which:
a small set of linear algebra classes
a least squares estimator
some curve fitting classes
several ordinary differentials equations integrators, either with fixed steps or adaptive stepsize control (see below)
vectors and rotations in a three dimensional space
algebra-related classes like rational and double polynomials
various orthogonal polynomials:
Chebyshev
Hermite
Laguerre
Legendre
some random numbers and vectors generation classes:
Robert M. Ziff four tap shift register (contributed by Bill Maier)
Makoto Matsumoto and Takuji Nishimura Mersenne twister
generators for vectors with correlated components
some basic (min, max, mean, standard deviation) statistical analysis classes
some optimization algorithms using direct search methods:
the Nelder-Mead simplex method
Virginia Torczons multi-directional method
Enhancements:
- For many basic objects provided by Mantissa like Vector3D, Rotation, and the various Polynomial classes, instances are now guaranteed to be immutable.
- This greatly simplifies safe sharing of instances without forcing users to either put severe restrictions on their use of Mantissa classes or make numerous copies just to make sure everything is safe.
- Since the change is a semantic change on the contract of the classes, this version introduces some incompatibilities with respect to previous ones.
- Upgrading to this version is not difficult, though.
<<less
Download (0.19MB)
Added: 2006-12-15 License: BSD License Price:
1044 downloads
Fotoblog 0.01

Fotoblog 0.01


Fotoblog is a web based picture gallery that automatically receives and publishes real-time pictures from your mobile phone. more>>
v Every picture is published along with the text sent from the mobile phone.
Main features:
- POP3 support
- STDIN support (when piped directly from sendmail)
- image pagination with a configurable number of columns and images per page
- an image rotation function via the Web
- photo tag editing via the Web
- automatic thumbnail generation
- a user access log with originating IP and network display (php-whois required)
- user account maintenance via the Web
- a photo search function
- multi-language support
- EXIM support (for extracting the real picture date and time).
<<less
Download (0.015MB)
Added: 2006-11-07 License: GPL (GNU General Public License) Price:
1081 downloads
ttywatch 0.14

ttywatch 0.14


ttywatch is a project based on monitoring logs and multiplexes terminal I/O. more>>
ttywatch is a project based on monitoring logs and multiplexes terminal I/O.
It has full log rotation built in, and can use telnet as well as local TTY ports.
Main features:
- Handles log rotation correctly.
- Can be configured in both a configuration file and on the command line (mix-and-match command-line and config file). The config file language is the same as the command-line language; learn one and you know both. Any configuration that can be specified on the command line can be specified in exactly the same way in a configuration file, and vice versa.
- Supports arbitrary data logging methods via dynamically loaded modules.
- Can optionally connect any monitored port to a network socket, and it can support arbitrarily many telnet connections to each port. The connections work together in "whiteboard" fashion; all output is shown to every connection and input is accepted from all connections.
- Can connect to network ports speaking the telnet protocol as well as to serial ports; this allows ttywatch instances to be cascaded. For example, in a room full of servers, each with two serial ports, you could run ttywatch on computer in pairs, each logging output from the other, and then use ttywatch on a master computer to log all the output from each ttywatch instance on the individual computers in one master set of logfiles.
- Includes a fairly complete man page.
- Is packaged with all the pieces necessary for use, including config files, init script, and so forth.
- Depends on lockdev, popt, and glib.
<<less
Download (0.025MB)
Added: 2006-09-07 License: GPL (GNU General Public License) Price:
1143 downloads
Gillo 1.0beta1

Gillo 1.0beta1


Gillo project is a two-player game where cars try to put a magnetic ball into a goal. more>>
Gillo project is a two-player game where cars try to put a magnetic ball into a goal.

The players are cars moving inside a 3D smooth-box shaped playground trying to catch a ball and throw it through a goal. The goal is in the center of the field. The goalkeeper tries to catch the ball before it reaches the goal. In order to catch and fire the ball, players have an directed magnet with an invertible charge.

To make things tricky, powerups are spread randomly throughout the playground to allow gravity rotation, ball inflation, and other funny effects.

<<less
Download (MB)
Added: 2006-11-23 License: GPL (GNU General Public License) Price:
1067 downloads
Fail2ban 0.8.0

Fail2ban 0.8.0


Fail2ban is a tool that scans logs and bans IP that makes too many password failures. more>>
Fail2ban is a tool that scans logs and bans IP that makes too many password failures. It scans files like /var/log/pwdfail or /var/log/apache/error_log and updates firewall rules to reject the IP address.
Main features:
- Highly configurable.
- Parses log files and looks for given patterns.
- Executes a command when a pattern has be detected for the same IP address for more than X times. X can be changed.
- After a given amount of time, executes another command in order to unban the IP address.
- Uses Netfilter/Iptables by default but can also use TCP Wrapper (/etc/hosts.deny) or others firewalls.
- Handles log files rotation.
- Can handle more than one service (sshd, apache, vsftpd, etc).
- Resolves DNS hostname to IP address.
- Can send e-mail notifications.
- Runs as a daemon.
- Multiple logging targets (syslog daemon, stdout, stderr, files).
<<less
Download (0.055MB)
Added: 2007-05-03 License: GPL (GNU General Public License) Price:
907 downloads
Tiff Plugin 0.3

Tiff Plugin 0.3


Tiff Plugin is Mozilla/Netscape compatible plugin for viewing TIFF images. more>>
Tiff Plugin is Mozilla/Netscape compatible plugin for viewing TIFF images.
Its features include zooming, rotation, and a progress bar when downloading images. It is ideal for when available memory is limited.
Main features:
- Zoom in - keyboard shortcut +
- Zoom out - keyboard shortcut -
- Rotate anticlockwise - keyboard shortcut a
- Rotate clockwise - keyboard shortcut c
- Progress bar when downloading images
The plugin is available in .deb format for i386 and amd64 systems. So debian based systems can install with
dpkg -i mozilla-tiff-plugin-i386.deb
OR
dpkg -i mozilla-tiff-plugin-amd64.deb
For non debian based systems, the sources need to be compiled. For compiling the packages pkg-config, libgtk2.0-dev and mozilla-dev need to be installed. The steps to install the source would be
tar -zxvf mozilla-tiff-plugin.tar.gz
cd mozilla-tiff-plugin
make
make plugin
make install
The plugin has been tested on firefox and mozilla browsers.
Enhancements:
- Multi-page tiff support was added.
- Memory management was improved.
<<less
Download (0.013MB)
Added: 2006-08-01 License: LGPL (GNU Lesser General Public License) Price:
1207 downloads
LMon 1.2

LMon 1.2


LMon is a package for near real-time monitoring of logs, sending email alerts upon known (rule hits) or unknown data. more>>
LMon is a package for near real-time monitoring of logs, sending email alerts upon known (rule hits) or unknown data (rule misses).
It features buffering of multiple rule hits within a given interval, cap at a given maximum number of lines, wait for a given interval before sending next alert, and auto- discovery of log rotation.
It can be run from the command line without configuration, or be controlled from a central configuration file with multiple instances monitoring different log files/sending alerts to different people.
Main features:
- Buffer multiple rule hits within a given interval, cap at a given maximum number of lines, wait for a given interval before sending next alert.
- Auto-discovery of log rotation.
- Simplicity. LMon can run from the command line without configuration, or be controlled from a central configuration file with multiple instances monitoring different log files/sending alerts to different people. It is very much intended to be simple (Keep It Simple, Stupid).
<<less
Download (0.009MB)
Added: 2005-05-20 License: GPL (GNU General Public License) Price:
1621 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5