Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

transform(1) [suse man page]

transform(1)                                              GNU Triangulated Surface utils                                              transform(1)

NAME
transform - apply geometric transformations to the input. SYNOPSIS
transform [OPTIONS] < file.gts DESCRIPTION
This manual page documents briefly the transform command. OPTIONS
This program follow the usual GNU command line syntax, with long options starting with two dashes (`-'). A summary of options is included below. -r ANGLE, --rx=ANGLE Rotate around x-axis (ANGLE in degrees). -m ANGLE, --ry=ANGLE Rotate around y-axis. -m ANGLE, --rz=ANGLE Rotate around z-axis. -s FACTOR, --scale=FACTOR Scale by FACTOR. -R FACTOR, --sx=FACTOR Scale x-axis by FACTOR. -M FACTOR, --sy=FACTOR Scale y-axis by FACTOR. -N FACTOR, --sz=FACTOR Scale z-axis by FACTOR. -t V, --tx=V Translate of V along x-axis. -u V, --ty=V Translate of V along y-axis. -w V, --tz=V Translate of V along z-axis. -i, --revert Turn surface inside out. -o, --normalize Fit the resulting surface in a cube of size 1 centered at the origin. -v, --verbose Print statistics about the surface. -h, --help Display the help and exit. AUTHOR
transform was written by Stephane Popinet <popinet@users.sourceforge.net>. This manual page was written by Ruben Molina <rmolina@udea.edu.co>, for the Debian project (but may be used by others). June 2, 2008 transform(1)

Check Out this Related Man Page

happrox(1)						  GNU Triangulated Surface utils						happrox(1)

NAME
happrox - returns a simplified triangulation of a set of points using algorithm III of Garland and Heckbert (1995). SYNOPSIS
happrox [OPTIONS] < [input.pgm|input] > output.gts DESCRIPTION
This manual page documents briefly the happrox command. OPTIONS
This program follow the usual GNU command line syntax, with long options starting with two dashes (`-'). A summary of options is included below. -n N, --number=N Stop the refinement process if the number of vertices is larger than N. -c C, --cost=C Stop the refinement process if the cost of insertion of a vertex is smaller than C. -f, --flat Input is a flat file with three x,y,z columns (default is PGM file). -r Z, --relative=Z Use relative height cost for all heights larger than Z. -k, --keep Keep enclosing triangle. -C, --closed Close the surface. -l, --log Log evolution of cost. -v, --verbose Display surface statistics. -h, --help Display the help and exit. AUTHOR
happrox was written by Stephane Popinet <popinet@users.sourceforge.net>. This manual page was written by Ruben Molina <rmolina@udea.edu.co>, for the Debian project (but may be used by others). June 2, 2008 happrox(1)
Man Page

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

sed script - transform 1st matching line only

How do transform only the first line that matches my regex? I've tried q but it just quit my script in the middle. (9 Replies)
Discussion started by: yogert909
9 Replies

2. Shell Programming and Scripting

Help: transform unix time format to standard

Hello All, Do you have any idea, how can I transform the unix time format to standard: time_last_login=1268057983 :confused: I would like to use the transformation in a AIX shell script :( (6 Replies)
Discussion started by: kalaso
6 Replies

3. Shell Programming and Scripting

transpose selected columns

Can I transform input like the below ? Note: Insert zeros if there is no value to transform. Input key name score key1 abc 10 key2 abc 20 key1 xxx 100 key2 xxx 20 key1 zzz 0 key2 zzz 29 key3 zzz 129 key1 yyy 39output abc ... (1 Reply)
Discussion started by: quincyjones
1 Replies

4. Programming

STL transform question

Hi all, I pass to the transform algorithm two vectors, and the suma function. #include <algorithm> #include <iostream> #include <iterator> #include <vector> using namespace std; class Duo{ public: int one; int two; }; Duo suma(Duo first, Duo last){ Duo ret; ... (1 Reply)
Discussion started by: santiagorf
1 Replies

5. Shell Programming and Scripting

If statement with pipeline

Hi Can anybody please explain me the following script in detail Value=`echo "if ( ${FACTOR} >= 1 ) {1}" | bc` What does "{1}" mean to here ? (3 Replies)
Discussion started by: Priya Amaresh
3 Replies

6. Shell Programming and Scripting

Add a number all the the values and log transform them using awk

Hi, is it possible to add a number to all the values in a file and log transform them using awk. thanx in advance input name c1 c2 c3 c4 r1 0 0.2 0.3 0.4 r2 0 0 0 1 r3 1 0 0 0 r4 0 0 1 ... (1 Reply)
Discussion started by: quincyjones
1 Replies