put the docs back in (feel free to redelete if they were removed for a reason)

git-svn-id: https://svn.code.sf.net/p/extremetuxracer/code/trunk@245 0420edf4-82e4-42fc-9478-35b55e6d67a3
master
cpicon92 2011-01-02 01:56:10 +00:00
parent 13967798e9
commit 0684505a26
8 changed files with 874 additions and 0 deletions

BIN
doc/char_struct.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

49
doc/chartool Normal file
View File

@ -0,0 +1,49 @@
Something about the structure
The character tool of Tuxracer is supposed to make shaping and adjusting of sphere-orientated characters easier. Before we look at this tool, some preliminary remarks:
- Look at the picture "char_struct.png" and the file "tux.lst". You must know the way how Tux and other characters are shaped. I suggest to print out the 2 sources before starting.
- You see that the figure is a hierarchic structure with parent and child nodes. Except the root node and the end nodes at the bottom each node has a parent and at least one child. Also look at the list to see how the child nodes and parent nodes are defined.
- Numeric values are used for the notation of the nodes, not literal identifiers. There are two reasons: It's easier to navigate in a list of sorted numbers, and the numbers allow a faster access. The latter reason is important because the character takes a lot of performance.
- Only a few nodes are visible and represent a sphere or ellipsoid that will be drawn. On the structure they are marked yellow. On the list they are marked [vis] with a level. The higher the level the better the appearance of the node - and the more performance it takes. [vis] 3 is quite raw, and 10 is very nice. It doesn't make sense to draw a little toe on level 10 or higher whereas the body or heads need a higher level.
- Besides the visible nodes there are different kinds of hidden nodes. They contain different transform actions like transformation, scale or rotation. By adjusting these parameters the character gets the desired shape and size. Very important are the blue-framed joint nodes, without any transform statements. These nodes are the interface nodes for the different kinds of animation. The keyframes use joint nodes, too. For this reason, the joints are specially named in the list ([joint]).
- You may want to add a node. Make sure that the related parent node is already in the list ! The best will be to append the new node at the end of the list.
- You can delete a node, too. But in this case you can run into troubles if the node is used as parent. Be careful and check the dependencies. The visible nodes, which are normally end nodes without childs, should be trouble-free.
- Most nodes contain an [order] entry. This entry controls the order of the transformations. The order is not abitrary! That means, it's a difference if you rotate around the x-axis first and then around the y-axis instead of the reverse. For full understanding you should be a bit familiar with the transformation matrices of OpenGL. Or try. The [order] statement is encoded as follows:
0 - trans
1 - rot x-axis
2 - rot y-axis
3 - rot z-axis
4 - scale
5 - level of visibility
9 - rot y-axis, using the vector component z (special case)
It's impossible to explain the complete structure, but you will become familiar with it by doing. The tool will help a bit. But you should have in mind what the tool does NOT. You can't add or remove nodes, that must be done by editing the list. Also you can't define materials or set the shadow flag with the tool.
The character tool of ETR
- First copy "tux.lst" to "test.lst". The latter will be automatically loaded when you start the tool with "./etr 2". On the right you see the figure, you can change the view by using the mouse. Click and drag for rotating (left button), moving (right button) or zooming (wheel).
- On the left there is a list of all nodes. You can select a node with the 4 cursor keys. Below this list you see a list of available transformations, dependent of the node. Select a transformation with PAGEUP or PAGEDOWN. And now you can change the adjustments. Type "1", "2" or "3" on the numeric keypad, together with SHIFT if you want the inverse impact. The results of these modifications can be seen immediately.
- About the view: The figure is always drawn perspectively, never orthogonally. So don't wonder when the direction changes a bit in the case you move the figure. Also the figure is drawn with active lighting. So you can evaluate the effects of specular lights, for example. Sometimes it might be helpful to disable the material adjustments, therefore type "m".
- There's not a real undo option, that would be too much effort. But you can undo the changes of the current node by typing "u". After selecting another node, the undo will work no longer.
- To save the changes type "s". The tool generates a new character list and stores it back to "test.lst". That can be done anytime.

104
doc/code Normal file
View File

@ -0,0 +1,104 @@
Extreme Tux Racer - Code Documentation
by Reinhard Niehoff, edited by Kristian Picon
---------------------------------------------
Some internal changes:
---------------------------------------------
The Tcl scripting library has been completely replaced with the SP library,
written exclusively for Extreme Tux Racer. Because of this modification, some
modules or methods are now obsolete: the Tcl hash tables, the "list" module etc.
A restrained approach to C++ has been taken. The entire program can be compiled
with g++, but there are only a few C++ classes. Most of these classes are
implemented for the sake of clarity. For example, when you see the function
"Env.DrawFog", you know that this function is declared and defined
in the module env.cpp. The global instance Env of the class CEnvironment is
available throughout the code. The same with some other classes. And of course,
the classes put together data and their functions. This makes the
code clearer.
A substantial change has been made to the phys_sim module (now physics.cpp),
though most of the functions are left unchanged or with little
modification. There is a new class CControl that encapsulates all parameters
of the traditional "TControl" structure, as well as the functions of the old
phys_sim. All of this belongs together, and this class is really sensible
and will simplify the implementation of multiplayer mode. Some functions have
been moved to other modules, for example TuxOrientation to tux.cpp or
FindCourseNormal to course.cpp. All functions should now have a logical location.
----------------------------------------------
Completely or almost completely rewritten modules
----------------------------------------------
The old modules audio.c and audio_data.c have been replaced with audio.cpp.
The old code was, to say the least, too long and convoluted.
The same with game_config, and with many parts of other modules.
A significant number of modules have not been completely rewritten, but
have been altered almost in their practical entirety. For example
winsys.cpp. It is shorter and clearer now, and it contains
the joystick functions (only a few lines). The module joystick.c has
been rendered obsolete.
These are only some examples. Compare the new code with the original code
and you will find that more than 60 % is rewritten. That's less than the
code of the Bunny Hill rewrite, but the intention of the ETR rewrite was
to clean up und clear up the code first, and enhance it
with new functions, later.
One effect of the clearance is shorter code. Three examples:
1) In the old code there are 5 modules responsible for the Tux character:
tux.c, tux_shadow.c, hier.c, hier_cb.c and hier_util.c
That are about 1850 lines in total (okay, 1500 to 1600 lines without comments).
The new code contains all the functions in a single module (tux.cpp)
with a total of 720 lines.
2) The audio modules. In Tuxracer 0.61 there are 2 modules,
audio.c and audio_data.c
with 1630 lines in total. The new code contains only 1 module with 300 lines!
3) The old race_select.c consists of 1300 lines; the reworked, new code
contains 230 lines - and does at least the same, of course.
------------------------------------------------------------------
Unchanged modules
------------------------------------------------------------------
Some modules are almost unchanged (except the formal style). That doesn't mean
that these modules will never be modified. I think, eventually all the code
must be completely rewritten. But some tasks are not very urgent or too
extensive at the moment. Here the modules which are nearly unchanged:
view.cpp, quadtree.cpp, hud.cpp, trackmarks.cpp and parts of particles.cpp
------------------------------------------------------------------
Comments
------------------------------------------------------------------
I know, a good code should be well-commented. For me, the best commentation
is a clear and well-ordered structure. It sounds unbelievable but first I
removed all comments in the original code to make it understandable for me.
So excuse the lack of comments in the new code. Perhaps, some day ...
-------------------------------------------------------------------
BTW
-------------------------------------------------------------------
Some people, including the authors of Tuxracer 0.61, prefer the following formal style:
scale_vector( -2. * dot_product( *vel, treeNml ) , treeNml ) ,*vel ) ;
Okay, this isn't very important (there are more important things) for the effectiveness
of the code, but I have problems to putting up with this style. Additionally, the
accumulation of underscores is bothersome:
static vector_t adjust_tux_zvec_for_roll( player_data_t *plyr, vector_t vel, vector_t zvec )
All clear? Oh yes, reading the code of other developers is pleasurable, and
so I leave you with: have fun with my code ;-)

139
doc/courses_events Normal file
View File

@ -0,0 +1,139 @@
Extreme Tux Racer - Courses, Cups and Events...
by Reinhard Niehoff, edited by Kristian Picon
----------------------------------------------------
The new course format
----------------------------------------------------
It's not really new, there are only some minor changes from
ETR 0.4. The 3 maps (elev.png, terrain.png and trees.png) are the same
as in ETR. The preview is a bit larger now (192 x 144). I've taken all
preview shots without huds, but that's a matter of taste.
The most significant change is the new format for course description.
Up to now the params were listed in the file course.tcl. Now we use
an SP list for this purpose. The syntax differs but the content is
almost the same: course dimensions, start point, angle and scale are
the same as of this writing. But there are some additional entries:
[env] etr
With this environment entry you select the location, not the weather
or time of day. Currently there are 2 locations, each with the
well-known 4 lightings (sunny, foggy, evening, night). Without this entry
the location will fall back to standard (tuxracer).
There is also:
[start_keyframe] tux_jump.lst
[success_keyframe] tux_joice.lst
[failure_keyframe] tux_sad.lst
[final_keyframe] tux_wait.lst
These entries are not used yet since there is only the start keyframe
implemented. In future versions there will be some keyframes for the
finish stage, too.
----------------------------------------------------
trees.png or items.lst?
----------------------------------------------------
In trees.png each tree or other object is marked as a colored dot.
This bitmap corresponds to the other bitmaps (elev.png for the height
and terrain.png for the textures). The advantage of the trees.png is
that the objects can be positioned in a fast and easy way. However, the bitmap
can store only the position, no information about scale, rotation,
collision, sound etc. For more particular description of the objects
ETR uses the text file items.lst. This method has a disadvantage,
too. It's very difficult and fiddly to edit this file, specifically
the positioning of objects is almost impossible.
ETR can read both the trees.png and the items.lst. This facilitates
the procedure considerably. It is best to position items in two steps. First
you should create or edit trees.png with all objects. Then, you can edit
and complete the entries in items.lst, if desirable or necessary.
How do trees.png and items.lst work together? In ETR the items.lst
has priority. If this file can be found, it is loaded and used while
trees.png is ignored. If items.lst doesn't exist, ETR loads
trees.png instead, generates an items list, and saves this list immediately.
Sometimes you may want to use trees.png even though an items list is present.
In this case you can type "t" on the race_select screen. But watch out!
The existing items.lst will be overwritten, that can be fatal if the list
already contains a lot of manual changes. It's strongly advised that one
backup the items list after having edited it manually.
Another aspect:
Trees should have different sizes, otherwise they look boring and too synthetic.
When Tuxracer reads the trees.png it scales the trees at random (height
and diameter). You can find these values in the automatically generated
items.lst. If you are not content with the appearance you should use the
trees.png again (see hint above). The range of size variation and the basic
size can be adjusted on the race_select screen (press "c" and "v", see the
End User Documentation in the guide file for more info).
In future versions, the items list will contain more information: scale,
rotation, exact position, etc. Then an entry in items.lst can look like this:
[pos] 23.5 0.0 -135.9 [scale] 3.4 1.9 2.1 [rotation] -15 27 -22
Notice that the y-position is 0.0. This value is not used since it can
be exactly calculated when the course is loaded.
--------------------------------------------------
What about rotation in current version?
--------------------------------------------------
The rotation can't be adjusted and is not done at random like the scaling.
Nevertheless all trees are a bit rotated (1°). Which is necessary to avoid
flickering if 2 trees are at same z-postion and close together. The
flickering is a result of parallel intersection of textures.
--------------------------------------------------
Defining courses and events
--------------------------------------------------
You must tell ETR 0.5.5 that a course exists. That's different from 0.4 and
PPRacer where the course directory is scanned by TCL. The course list
(courses.lst) has an extremely simple structure:
*[name] Twisty Slope [dir] twisty_slope
[desc] Tight twists make grabbing herring difficult. Hard turns ...
*[name] ...
A (little) advantage is that you can specify the order of the courses on
the race_select screen. Or you can deactivate a course by commenting out the
entry.
The event list (events.lst) is a bit more complex, but still easier than the list in
ETR 0.4 or PPRacer. The list consists of 3 parts, the first is where the
races are:
*[struct] 0 [race] race_bunnyhill [course] bunny_hill [light] sunny [snow] 0 [wind] 0
[herring] 20 22 23 [time] 37 34 30
*[struct] 0 [race] race_twistyslope [course] twisty_slope [light] night [snow] 0 [wind] 0
[herring] 21 23 24 [time] 43 39 34
This is essentially the same as the course list, but completed with information
about the weather conditions and the race challenges. A course may be used
multiple times and redefined with different conditions.
The second part contains the cups:
*[struct] 1 [cup] canadian [name] Canadian Cup
[num] 3 [1] race_bunnyhill [2] race_twistyslope [3] race_bumpyride
[desc] The classic Tuxracer cup for beginners. Learn to paddle ...
The cup entries access one or more races (see second line). Additional
there is a description that appears on the event_select screen.
The third and last part contains the events. The following entry
describes the only event in the current program:
*[struct] 2 [event] classics [name] Tux Racer Classics
[num] 2 [1] canadian [2] swiss
--
Good luck with your course creation!

104
doc/guide Normal file
View File

@ -0,0 +1,104 @@
Extreme Tux Racer - End User Documentation
by Reinhard Niehoff, edited by Kristian Picon
-------------------------------------------
Important keys
-------------------------------------------
1, 2, 3 - different camera modes (standard is 2)
f - hide or show fps display as part of the hud (heads-up display)
s - screenshot (in folder "screenshots")
h - hide or show hud
u - toggle snowflakes on menu screens
There are some special functions which might be relevant for newcomers
who are interested in the compoments of the scenery. You can toggle
the following elements:
F5 - skybox
F6 - fog
F7 - terrain
F8 - trees and objects
For generating the item list by parsing the trees.png file the
following keys might be helpful:
t - sets priority to trees.png and generates an items.lst
c - value of size of trees (1 ... 5)
v - value for size variation (1 ... 5)
-------------------------------------------
The configuration screen
-------------------------------------------
The most important adjustments can be done at runtime at the
config screen. Most options should be self-explanatory.
"Auto" for resolution means that the program uses the same values
as set in the basic computer configuration. That's not convenient
in windowed mode since it ignores the menu/task bar on the screen.
There are 3 levels of detail:
1 - for very slow computers (no trackmarks, particles etc.)
2 - most details are shown but on an lower level
3 - best appearance, today's computers should have no problems with this
The adjustments are entered and stored in the file "options".
Editing this file is possible, but not necessary.
# 0 = framed window | 1 = fullscreen
[fullscreen] 1
# resolution type: 0 = auto | 1 = 800 x 600 | 2 = 1024 * 768
[res_type] 0
# level of details 1 ... 3
[detail_level] 3
# maximal values are 120
[sound_volume] 60
[music_volume] 30
-------------------------------------
The options file
-------------------------------------
The following adjustments must be done by editing the options file,
they don't appear on the config screen. The file is not commented
yet, that will be done in a future version.
# Index to a language list
[language] 0
# the distances where the course clipping begins
[forward_clip_distance] 75
[backward_clip_distance] 20
# field of view, similar to the focal length at a camera lens
[fov] 60
# color depth, 0 = auto, 1 = 16, 2 = 32
[bpp_mode] 1
# some performance parameters
[tree_detail_distance] 20
[tux_sphere_divisions] 10
[tux_shadow_sphere_div] 3
# This parameter should be obsolete soon. It's the distance where
# the trees are not drawn crosswise but as simple plane textures.
[course_detail_level] 75
# You can choose between 2 font styles: 0 Helvetica, 1 Papercut
# If the value is 2, the huds are drawn with Papercut, too
[use_papercut_font] 1
# Cursor style: 0 normal alrrow cursor, 1 icicle
[ice_cursor] 1
# Normally the sky is drawn with 6 textures (a cube). In the Tuxracer scene
# are only 3 textures visible (left, front, right). So it's faster to draw
# only the visible textures. In addition, it spares resources.
# If set to 1, all 6 textures will be drawn (they have to exist!).
[full_skybox] 0

14
doc/score_algorithm Normal file
View File

@ -0,0 +1,14 @@
You may want to know how the score points are calculated. Sometimes you have to decide between a shorter time or an additional herring. For this reason, I've tried to make the algorithm as transparent as possible.
The basis rule is clear and easy:
1 herring - 10 points
1 second gain of time - 10 points (with resolution 0.1 second - 1 point)
Score is the sum of herring points and time points.
The herring points are calculated absolutely, starting with 0. For the time points we need a reference value; the difference between this value and the reached time is the result. Apparently the reference value must be high enough so that we don't get negative results. Additionally the reference should depend from the course length: the larger the course the higher the value. In the algorithm the reference is proportional to the course length, divided by 10.
Example: The course "Bunny Hill" is 520 units long, thus the reference time value is 52. If you reach the finish line after 31.3 seconds, you get (52 - 31.3) * 10 = 207 time points. With 21 herrings the score is 417.
This algorithm seems to be rough and inexact, and it doesn't allow to compare the results of different courses. That's right, but the courses differ too much. All attempts to make the race results comparable can't be successful. You would have to work with weighted values for time and herrings, so that the user won't be able to evaluate the situation when racing.

253
doc/tools_keytab.rtf Normal file
View File

@ -0,0 +1,253 @@
{\rtf1\ansi\deff1\adeflang1025
{\fonttbl{\f0\froman\fprq2\fcharset0 Times New Roman;}{\f1\fswiss\fprq0\fcharset0 DejaVu Sans;}{\f2\fswiss\fprq2\fcharset0 Arial;}{\f3\fnil\fprq0\fcharset0 DejaVu Sans;}{\f4\fswiss\fprq0\fcharset0 DejaVu Sans;}{\f5\fswiss\fprq2\fcharset0 Arial;}{\f6\fnil\fprq0\fcharset128 OpenSymbol{\*\falt Arial Unicode MS};}{\f7\fswiss\fprq2\fcharset128 DejaVu Sans;}{\f8\fnil\fprq2\fcharset0 DejaVu Sans;}{\f9\fswiss\fprq2\fcharset0 DejaVu Sans;}}
{\colortbl;\red0\green0\blue0;\red128\green128\blue128;}
{\stylesheet{\s1\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031\snext1 Normal;}
{\s2\sb240\sa120\keepn\rtlch\af8\afs28\lang255\ltrch\dbch\af8\langfe255\hich\f2\fs28\lang1031\loch\f2\fs28\lang1031\sbasedon1\snext3 Heading;}
{\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031\sbasedon1\snext3 Body Text;}
{\s4\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031\sbasedon3\snext4 List;}
{\s5\sb120\sa120\rtlch\afs24\lang255\ai\ltrch\dbch\af9\langfe255\hich\f3\fs24\lang1031\i\loch\f3\fs24\lang1031\i\sbasedon1\snext5 caption;}
{\s6\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\f3\fs24\lang1031\loch\f3\fs24\lang1031\sbasedon1\snext6 Index;}
{\s7\sb240\sa120\keepn\rtlch\af5\afs28\lang255\ltrch\dbch\af9\langfe255\hich\f5\fs28\lang1031\loch\f5\fs28\lang1031\sbasedon1\snext3 Heading;}
{\s8\sb120\sa120\rtlch\afs24\lang255\ai\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\i\loch\fs24\lang1031\i\sbasedon1\snext8 caption;}
{\s9\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031\sbasedon1\snext9 Index;}
{\s10\sb240\sa120\keepn\rtlch\af5\afs28\lang255\ltrch\dbch\af9\langfe255\hich\f5\fs28\lang1031\loch\f5\fs28\lang1031\sbasedon1\snext3 WW-Heading;}
{\s11\sb120\sa120\rtlch\afs24\lang255\ai\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\i\loch\fs24\lang1031\i\sbasedon1\snext11 WW-caption;}
{\s12\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031\sbasedon1\snext12 WW-Index;}
{\s13\sb240\sa120\keepn\rtlch\af5\afs28\lang255\ltrch\dbch\af9\langfe255\hich\f5\fs28\lang1031\loch\f5\fs28\lang1031\sbasedon1\snext3 WW-Heading1;}
{\s14\sb120\sa120\rtlch\afs24\lang255\ai\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\i\loch\fs24\lang1031\i\sbasedon1\snext14 WW-caption1;}
{\s15\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031\sbasedon1\snext15 WW-Index1;}
{\s16\sb240\sa120\keepn\rtlch\af5\afs28\lang255\ltrch\dbch\af9\langfe255\hich\f5\fs28\lang1031\loch\f5\fs28\lang1031\sbasedon1\snext3 WW-Heading11;}
{\s17\sb120\sa120\rtlch\afs24\lang255\ai\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\i\loch\fs24\lang1031\i\sbasedon1\snext17 WW-caption11;}
{\s18\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031\sbasedon1\snext18 WW-Index11;}
{\s19\sb240\sa120\keepn\rtlch\af5\afs28\lang255\ltrch\dbch\af1\langfe255\hich\f5\fs28\lang1031\loch\f5\fs28\lang1031\sbasedon1\snext3 WW-Heading111;}
{\s20\sb120\sa120\rtlch\afs24\lang255\ai\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\i\loch\fs24\lang1031\i\sbasedon1\snext20 WW-caption111;}
{\s21\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031\sbasedon1\snext21 WW-Index111;}
{\s22\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031\sbasedon1\snext22 Table Contents;}
{\s23\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031\sbasedon1\snext23 WW-Table Contents;}
{\s24\qc\rtlch\afs24\lang255\ab\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\b\loch\fs24\lang1031\b\sbasedon23\snext24 Table Heading;}
{\s25\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031\sbasedon1\snext25 WW-Table Contents1;}
{\s26\qc\rtlch\afs24\lang255\ab\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\b\loch\fs24\lang1031\b\sbasedon25\snext26 WW-Table Heading;}
{\s27\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031\sbasedon1\snext27 WW-Table Contents12;}
{\s28\qc\rtlch\afs24\lang255\ab\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\b\loch\fs24\lang1031\b\sbasedon27\snext28 WW-Table Heading1;}
{\s29\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031\sbasedon1\snext29 WW-Table Contents123;}
{\s30\qc\rtlch\afs24\lang255\ab\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\b\loch\fs24\lang1031\b\sbasedon29\snext30 WW-Table Heading12;}
{\s31\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031\sbasedon1\snext31 Table Contents;}
{\s32\qc\rtlch\afs24\lang255\ab\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\b\loch\fs24\lang1031\b\sbasedon31\snext32 Table Heading;}
{\*\cs34\rtlch\af6\afs24\lang255\ltrch\dbch\af6\langfe255\hich\f6\fs24\lang1031\loch\f6\fs24\lang1031 RTF_Num 2 1;}
{\*\cs35\rtlch\af6\afs24\lang255\ltrch\dbch\af6\langfe255\hich\f6\fs24\lang1031\loch\f6\fs24\lang1031 RTF_Num 2 2;}
{\*\cs36\rtlch\af6\afs24\lang255\ltrch\dbch\af6\langfe255\hich\f6\fs24\lang1031\loch\f6\fs24\lang1031 RTF_Num 2 3;}
{\*\cs37\rtlch\af6\afs24\lang255\ltrch\dbch\af6\langfe255\hich\f6\fs24\lang1031\loch\f6\fs24\lang1031 RTF_Num 2 4;}
{\*\cs38\rtlch\af6\afs24\lang255\ltrch\dbch\af6\langfe255\hich\f6\fs24\lang1031\loch\f6\fs24\lang1031 RTF_Num 2 5;}
{\*\cs39\rtlch\af6\afs24\lang255\ltrch\dbch\af6\langfe255\hich\f6\fs24\lang1031\loch\f6\fs24\lang1031 RTF_Num 2 6;}
{\*\cs40\rtlch\af6\afs24\lang255\ltrch\dbch\af6\langfe255\hich\f6\fs24\lang1031\loch\f6\fs24\lang1031 RTF_Num 2 7;}
{\*\cs41\rtlch\af6\afs24\lang255\ltrch\dbch\af6\langfe255\hich\f6\fs24\lang1031\loch\f6\fs24\lang1031 RTF_Num 2 8;}
{\*\cs42\rtlch\af6\afs24\lang255\ltrch\dbch\af6\langfe255\hich\f6\fs24\lang1031\loch\f6\fs24\lang1031 RTF_Num 2 9;}
{\*\cs43\rtlch\af6\afs24\lang255\ltrch\dbch\af6\langfe255\hich\f6\fs24\lang1031\loch\f6\fs24\lang1031 RTF_Num 2 10;}
{\*\cs44\rtlch\af6\afs24\lang255\ltrch\dbch\af6\langfe255\hich\f6\fs24\lang1031\loch\f6\fs24\lang1031 RTF_Num 3 1;}
{\*\cs45\rtlch\af6\afs24\lang255\ltrch\dbch\af6\langfe255\hich\f6\fs24\lang1031\loch\f6\fs24\lang1031 RTF_Num 3 2;}
{\*\cs46\rtlch\af6\afs24\lang255\ltrch\dbch\af6\langfe255\hich\f6\fs24\lang1031\loch\f6\fs24\lang1031 RTF_Num 3 3;}
{\*\cs47\rtlch\af6\afs24\lang255\ltrch\dbch\af6\langfe255\hich\f6\fs24\lang1031\loch\f6\fs24\lang1031 RTF_Num 3 4;}
{\*\cs48\rtlch\af6\afs24\lang255\ltrch\dbch\af6\langfe255\hich\f6\fs24\lang1031\loch\f6\fs24\lang1031 RTF_Num 3 5;}
{\*\cs49\rtlch\af6\afs24\lang255\ltrch\dbch\af6\langfe255\hich\f6\fs24\lang1031\loch\f6\fs24\lang1031 RTF_Num 3 6;}
{\*\cs50\rtlch\af6\afs24\lang255\ltrch\dbch\af6\langfe255\hich\f6\fs24\lang1031\loch\f6\fs24\lang1031 RTF_Num 3 7;}
{\*\cs51\rtlch\af6\afs24\lang255\ltrch\dbch\af6\langfe255\hich\f6\fs24\lang1031\loch\f6\fs24\lang1031 RTF_Num 3 8;}
{\*\cs52\rtlch\af6\afs24\lang255\ltrch\dbch\af6\langfe255\hich\f6\fs24\lang1031\loch\f6\fs24\lang1031 RTF_Num 3 9;}
{\*\cs53\rtlch\af6\afs24\lang255\ltrch\dbch\af6\langfe255\hich\f6\fs24\lang1031\loch\f6\fs24\lang1031 RTF_Num 3 10;}
{\*\cs54\cf0\rtlch\af1\afs24\lang255\ltrch\dbch\af1\langfe255\hich\f1\fs24\lang1031\loch\f1\fs24\lang1031 Numbering Symbols;}
{\*\cs55\cf0\rtlch\af6\afs24\lang255\ltrch\dbch\af6\langfe255\hich\f6\fs24\lang1031\loch\f6\fs24\lang1031 Bullet Symbols;}
}
{\info{\creatim\yr2010\mo11\dy15\hr15\min35}{\revtim\yr0\mo0\dy0\hr0\min0}{\printim\yr0\mo0\dy0\hr0\min0}{\comment StarWriter}{\vern3000}}\deftab709
{\*\pgdsctbl
{\pgdsc0\pgdscuse195\pgwsxn11905\pghsxn16837\marglsxn1134\margrsxn1134\margtsxn1134\margbsxn1134\pgdscnxt0 Standard;}}
{\*\pgdscno0}\paperh16837\paperw11905\margl1134\margr1134\margt1134\margb1134\sectd\sbknone\pgwsxn11905\pghsxn16837\marglsxn1134\margrsxn1134\margtsxn1134\margbsxn1134\ftnbj\ftnstart1\ftnrstcont\ftnnar\aenddoc\aftnrstcont\aftnstart1\aftnnrlc
\pard\plain \ltrpar\s3\sa120\ql\rtlch\afs28\lang255\ab\ltrch\dbch\af9\langfe255\hich\fs28\lang1031\b\loch\fs28\lang1031\b {\rtlch \ltrch\loch\f1\fs28\lang1031\i0\b The character tools of Extreme Tux Racer}
\par \pard\plain \ltrpar\s3\sa120\ql\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031{\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b0{\rtlch\ltrch\hich\b\loch\b Note}}{\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b0 : Now the keyframes are built and adjusted on per-character basis. The consequence is that each character gets its own set of keyframes. They are placed in the particular character folder. The folder can contain the following files:}
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031 {\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b0 - shape.lst - the file for building the character}
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031 {\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b0 - preview.png - an image for the entrance screen}
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031 {\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b0 - start.lst - the keyframe for the intro mode}
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031 {\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b0 - finish.lst - neutral keyframe for the final stage}
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031 {\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b0 - wonrace.lst - the same but used in case that the race was successful}
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031 {\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b0 - lostrace.lst - that should be clear}
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031 {\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b0 The animations rules should be part of the character, too, but that will be implemented later.}
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031
\par \pard\plain \ltrpar\s3\sa120\ql\rtlch\afs24\lang255\ab\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\b\loch\fs24\lang1031\b {\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b Starting the tools}
\par \pard\plain \ltrpar\s3\sa120\ql\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031 {\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b0 For running the character tools you have to start the program by}
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031 {\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b0 \tab ./etr --char folder keyframe}
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031 {\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b0 where folder is the character folder (e.g. \'84samuel\'93) and keyframe one of the frame descriptions in this folder (e.g. \'84wonrace.lst\'93). Probably it's a good idea to create a special test folder.}
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031
\par \pard\plain \ltrpar\s3\sa120\ql\rtlch\afs24\lang255\ab\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\b\loch\fs24\lang1031\b {\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b The tool modes}
\par \pard\plain \ltrpar\s3\sa120\ql\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031 {\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b0 There are 3 modes:}
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031 {\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b0 - char mode - for shaping the figure}
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031 {\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b0 - frame mode - for editing a singe frame of a keyframe sequence}
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031 {\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b0 - sequence mode - running the keyframe with real time}
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031 {\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b0 After starting the tools you are in char mode.}
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031
\par \pard\plain \ltrpar\s3\sa120\ql\rtlch\afs24\lang255\ab\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\b\loch\fs24\lang1031\b {\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b View}
\par \pard\plain \ltrpar\s3\sa120\ql\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031 {\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b0 In char mode you can rotate and move the figure (see tables below). Also you can zoom in and out.}
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031 {\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b0 In frame mode it doesn't make sense to move or rotate the figure freely because the position as well as the rotations are adjusted by the frames. To get another view we have to move and rotate the camera whereas the figure keeps the specified adjustments.
It's not easy to orientate oneself by changing the camera position and direction, but it might be helpful to use <1> ... <8>. That sets the camera on fixed positions around the reference point (0, 0, 0).}
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031{\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b0{\rtlch\ltrch\hich\b\loch\b Keyboard function in the different modes:}}{\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b0 \tab }
\par \pard\plain \ltrpar\s3\sa120\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031
\par \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrt\brdrs\brdrw1\brdrcf1\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrt\brdrs\brdrw1\brdrcf1\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrt\brdrs\brdrw1\brdrcf1\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrt\brdrs\brdrw1\brdrcf1\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ab\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\b\loch\f7\fs20\lang1031\b
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ab\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\b\loch\f7\fs18\lang1031\b {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b char mode}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ab\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\b\loch\f7\fs20\lang1031\b {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b frame mode}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ab\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\b\loch\f7\fs18\lang1031\b {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b sequence mode}
\cell\row\pard \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <PAGE_DOWN>}
\par \pard\plain \intbl\ltrpar\s22\ql\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <PAGE_UP>}
\par \pard\plain \intbl\ltrpar\s22\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <HOME> <END>}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 select node}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 select frame}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\row\pard \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <CRSR_DOWN>}
\par \pard\plain \intbl\ltrpar\s22\ql\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <CRSR_UP>}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 select }
\par \pard\plain \intbl\ltrpar\s22\ql\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 transformation}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 select }
\par \pard\plain \intbl\ltrpar\s22\ql\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 joint}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\row\pard \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <SPACE>}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 select vector component }
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\row\pard \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <CRSR_LEFT>}
\par \pard\plain \intbl\ltrpar\s22\ql\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <CRSR_RIGHT>}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 change value of}
\par \pard\plain \intbl\ltrpar\s22\ql\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 selected component}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 rotate joint}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\row\pard \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <1> ... <4>}
\par \pard\plain \intbl\ltrpar\s22\ql\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <1> ... <8>}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 set standard}
\par \pard\plain \intbl\ltrpar\s22\ql\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 orientations}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 set standard}
\par \pard\plain \intbl\ltrpar\s22\ql\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 views}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\row\pard \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <TAB>}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 go to frame mode}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 go to char mode}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 back to frame mode}
\cell\row\pard \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <ESCAPE>}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 quit program}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 quit program}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 back to frame mode}
\cell\row\pard \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <ENTER>}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 start sequence}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 repeat sequence}
\cell\row\pard \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <M>}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 show / hide material}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 show / hide material}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\row\pard \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <H>}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 toggle highlighting}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 toggle highlighting}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\row\pard \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <R>}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 reload character}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\row\pard \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <U>}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 reset current node}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\row\pard \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <-> <+> <=>}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 zoom}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\row\pard \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <S>}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 save character}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 save keyframe seq.}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\row\pard \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <A><INST>}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 add, insert frame}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\row\pard \trowd\trql\trleft17\trrh312\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <DEL>}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 delete frame}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\row\pard \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <CTRL> + <C>}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 copy }
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\row\pard \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <CTRL> + <V>}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 paste}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\row\pard \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <C>}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 clear current frame}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\row\pard \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <P>}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 copy previous frame}
\par \pard\plain \intbl\ltrpar\s22\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 to current frame}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\row\pard \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <0> (zero)}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 set current value to}
\par \pard\plain \intbl\ltrpar\s22\ql\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 0.0}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\row\pard \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <F1> <F2>}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 change camera rotation}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\row\pard \trowd\trql\trleft17\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4827\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7233\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031 {\rtlch \ltrch\loch\f7\fs18\lang1031\i0\b0 <F3> <F4>}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs20\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 change camera}
\par \pard\plain \intbl\ltrpar\s22\ql\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs20\lang1031\loch\f7\fs20\lang1031 {\rtlch \ltrch\loch\f7\fs20\lang1031\i0\b0 distance}
\cell\pard\plain \intbl\ltrpar\s22\ql\rtlch\af7\afs18\lang255\ltrch\dbch\af9\langfe255\hich\f7\fs18\lang1031\loch\f7\fs18\lang1031
\cell\row\pard \pard\plain \ltrpar\s1\ql\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031
\par \pard\plain \ltrpar\s1\ql\rtlch\afs24\lang255\ab\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\b\loch\fs24\lang1031\b {\rtlch \ltrch\loch\f1\fs24\lang1031\i0\b Mouse functions:}
\par \pard\plain \ltrpar\s1\ql\rtlch\afs18\lang255\ltrch\dbch\af9\langfe255\hich\fs18\lang1031\loch\fs18\lang1031
\par \pard\plain \ltrpar\s1\ql\rtlch\afs24\lang255\ltrch\dbch\af9\langfe255\hich\fs24\lang1031\loch\fs24\lang1031
\par \trowd\trql\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrt\brdrs\brdrw1\brdrcf1\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrt\brdrs\brdrw1\brdrcf1\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4818\clbrdrt\brdrs\brdrw1\brdrcf1\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7227\clbrdrt\brdrs\brdrw1\brdrcf1\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s23\ql\rtlch\afs18\lang255\ab\ltrch\dbch\af9\langfe255\hich\fs18\lang1031\b\loch\fs18\lang1031\b
\cell\pard\plain \intbl\ltrpar\s23\ql\rtlch\afs18\lang255\ab\ltrch\dbch\af9\langfe255\hich\fs18\lang1031\b\loch\fs18\lang1031\b {\rtlch \ltrch\loch\f1\fs18\lang1031\i0\b char mode}
\cell\pard\plain \intbl\ltrpar\s23\ql\rtlch\afs18\lang255\ab\ltrch\dbch\af9\langfe255\hich\fs18\lang1031\b\loch\fs18\lang1031\b {\rtlch \ltrch\loch\f1\fs18\lang1031\i0\b frame mode}
\cell\pard\plain \intbl\ltrpar\s23\ql\rtlch\afs18\lang255\ab\ltrch\dbch\af9\langfe255\hich\fs18\lang1031\b\loch\fs18\lang1031\b {\rtlch \ltrch\loch\f1\fs18\lang1031\i0\b sequence mode}
\cell\row\pard \trowd\trql\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4818\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7227\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s23\ql\rtlch\afs18\lang255\ltrch\dbch\af9\langfe255\hich\fs18\lang1031\loch\fs18\lang1031 {\rtlch \ltrch\loch\f1\fs18\lang1031\i0\b0 WHEEL}
\cell\pard\plain \intbl\ltrpar\s23\ql\rtlch\afs18\lang255\ltrch\dbch\af9\langfe255\hich\fs18\lang1031\loch\fs18\lang1031 {\rtlch \ltrch\loch\f1\fs18\lang1031\i0\b0 zoom}
\cell\pard\plain \intbl\ltrpar\s23\ql\rtlch\afs18\lang255\ltrch\dbch\af9\langfe255\hich\fs18\lang1031\loch\fs18\lang1031 {\rtlch \ltrch\loch\f1\fs18\lang1031\i0\b0 zoom}
\cell\pard\plain \intbl\ltrpar\s23\ql\rtlch\afs18\lang255\ltrch\dbch\af9\langfe255\hich\fs18\lang1031\loch\fs18\lang1031
\cell\row\pard \trowd\trql\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4818\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7227\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s23\ql\rtlch\afs18\lang255\ltrch\dbch\af9\langfe255\hich\fs18\lang1031\loch\fs18\lang1031 {\rtlch \ltrch\loch\f1\fs18\lang1031\i0\b0 LEFT BUTTON}
\cell\pard\plain \intbl\ltrpar\s23\ql\rtlch\afs18\lang255\ltrch\dbch\af9\langfe255\hich\fs18\lang1031\loch\fs18\lang1031 {\rtlch \ltrch\loch\f1\fs18\lang1031\i0\b0 rotate figure}
\cell\pard\plain \intbl\ltrpar\s23\ql\rtlch\afs18\lang255\ltrch\dbch\af9\langfe255\hich\fs18\lang1031\loch\fs18\lang1031
\cell\pard\plain \intbl\ltrpar\s23\ql\rtlch\afs18\lang255\ltrch\dbch\af9\langfe255\hich\fs18\lang1031\loch\fs18\lang1031
\cell\row\pard \trowd\trql\trpaddft3\trpaddt55\trpaddfl3\trpaddl55\trpaddfb3\trpaddb55\trpaddfr3\trpaddr55\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx2409\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx4818\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\cellx7227\clbrdrl\brdrs\brdrw1\brdrcf1\clbrdrb\brdrs\brdrw1\brdrcf1\clbrdrr\brdrs\brdrw1\brdrcf1\cellx9637
\pard\intbl\pard\plain \intbl\ltrpar\s23\ql\rtlch\afs18\lang255\ltrch\dbch\af9\langfe255\hich\fs18\lang1031\loch\fs18\lang1031 {\rtlch \ltrch\loch\f1\fs18\lang1031\i0\b0 RIGHT BUTTON}
\cell\pard\plain \intbl\ltrpar\s23\ql\rtlch\afs18\lang255\ltrch\dbch\af9\langfe255\hich\fs18\lang1031\loch\fs18\lang1031 {\rtlch \ltrch\loch\f1\fs18\lang1031\i0\b0 move figure}
\cell\pard\plain \intbl\ltrpar\s23\ql\rtlch\afs18\lang255\ltrch\dbch\af9\langfe255\hich\fs18\lang1031\loch\fs18\lang1031
\cell\pard\plain \intbl\ltrpar\s23\ql\rtlch\afs18\lang255\ltrch\dbch\af9\langfe255\hich\fs18\lang1031\loch\fs18\lang1031
\cell\row\pard \pard\plain \ltrpar\s1\ql\rtlch\afs18\lang255\ltrch\dbch\af9\langfe255\hich\fs18\lang1031\loch\fs18\lang1031
\par }

211
doc/tux.lst.templ Normal file
View File

@ -0,0 +1,211 @@
# Character definition
# [par] = parent node
# [order] = order of transform actions
# [name] only used for information on the tool screen
# [joint] a identifier that relaces the numeric identifier in case that
# the node contains a joint
# 0 translation
# 1 x-rotation
# 2 y-rotation
# 3 z-rotation
# 4 scale
# 5 visible
# 9 additionl y-rotation, use z component
# material
*[material] 1 [mat] whitecol [diff] 0.78 0.78 0.78 [spec] 0.2 0.2 0.2 [exp] 50.0
*[material] 1 [mat] blackcol [diff] 0.1 0.1 0.1 [spec] 0.5 0.5 0.5 [exp] 20.0
*[material] 1 [mat] beakcol [diff] 0.64 0.54 0.06 [spec] 0.4 0.4 0.4 [exp] 5.0
*[material] 1 [mat] iriscol [diff] 0.01 0.01 0.41 [spec] 0.4 0.4 0.4 [exp] 90.0
# -----------------------------------------------------------------------------------
# body
*[node] 01 [par] 00 [order] 4 [scale] 0.35 0.35 0.35
[name] complete figure
*[node] 02 [par] 01 [order] 4 [scale] 0.9 0.9 0.9
[name] body
*[node] 72 [par] 02 [order] 45 [vis] 10 [scale] 0.95 1.0 0.8 [mat] blackcol [shad] 1
[name] black part of the body
*[node] 73 [par] 02 [order] 045 [vis] 10 [trans] 0 0 0.17 [scale] 0.8 0.9 0.7 [mat] whitecol
[name] white part of the body
# breast
*[node] 03 [par] 01 [order] 0 [trans] 0 0.4 0.05
[name] breast
*[node] 04 [par] 03 [order] 4 [scale] 0.72 0.72 0.72
[name] breast
*[node] 74 [par] 04 [order] 45 [vis] 10 [scale] 0.95 1.0 0.8 [mat] blackcol
[name] black part of the breast
*[node] 75 [par] 04 [order] 045 [vis] 10 [trans] 0 0 0.17 [scale] 0.8 0.9 0.7
[mat] whitecol [name] white part of the breast
# neck
*[node] 05 [par] 01 [order] 02 [trans] 0 0.9 0.07 [rot] 0 90.0 0 [name] neck and head
*[node] 06 [par] 05 [joint] neck [name] joint for neck
*[node] 07 [par] 06 [order] 2 [rot] 0 -90 0 [name] neck and head
*[node] 08 [par] 07 [order] 4 [scale] 0.45 0.5 0.45 [name] neck
*[node] 09 [par] 08 [order] 5 [vis] 10 [mat] blackcol [shad] 1
[name] black part of the neck
*[node] 10 [par] 08 [order] 045 [vis] 10 [trans] 0 -0.08 0.35
[scale] 0.8 0.9 0.7 [mat] whitecol [name] white part of the neck
# head
*[node] 11 [par] 07 [order] 02 [trans] 0 0.3 0.07 [rot] 0 90.0 0 [name] head
*[node] 12 [par] 11 [joint] head [name] joint for head
#*[node] 13 [par] 12 [order] seems to do nothing, waste
*[node] 14 [par] 12 [order] 02 [trans] 0 0.2 0 [rot] 0 -90.0 0 [name] head
*[node] 15 [par] 14 [order] 45 [vis] 10 [scale] 0.42 0.5 0.42
[mat] blackcol [shad] 1 [name] head
# beak
*[node] 16 [par] 14 [order] 0145 [vis] 4 [trans] 0 -0.205 0.3 [rot] 10 0 0
[scale] 0.23 0.12 0.4 [mat] beakcol [name] beak
*[node] 17 [par] 14 [order] 0145 [vis] 4 [trans] 0 -0.23 0.3 [rot] 10 0 0
[scale] 0.21 0.17 0.38 [mat] beakcol [name] beak
# left eye
*[node] 18 [par] 14 [order] 023145 [vis] 4 [trans] 0.13 -0.03 0.38 [rot] 5.0 18.0 -5.0
[mat] whitecol [scale] 0.1 0.13 0.03 [name] left eye
# right eye
*[node] 19 [par] 14 [order] 023145 [vis] 4 [trans] -0.13 -0.03 0.38 [rot] 5.0 -18.0 -5.0
[mat] whitecol [scale] 0.1 0.13 0.03 [name] right eye
# left iris
*[node] 20 [par] 14 [order] 023145 [vis] 2 [trans] 0.12 -0.045 0.4 [rot] 5.0 18.0 5.0
[mat] iriscol [scale] 0.055 0.07 0.03 [name] left iris
# right iris
*[node] 21 [par] 14 [order] 023145 [vis] 2 [trans] -0.12 -0.045 0.4 [rot] 5.0 -18.0 -5.0
[mat] iriscol [scale] 0.055 0.07 0.03 [name] right iris
# left upper arm
*[node] 22 [par] 03 [order] 2031 [rot] 90 180 45 [trans] -0.56 0.3 0 [name] left arm
*[node] 23 [par] 22 [joint] left_shldr [name] joint for left shoulder
*[node] 24 [par] 23 [order] 01 [trans] -0.22 0 0 [rot] -90.0 0 0 [name] left arm
*[node] 25 [par] 24 [order] 45 [vis] 5 [scale] 0.34 0.1 0.2 [mat] blackcol [shad] 1
[name] left upper arm
# left forearm
*[node] 30 [par] 24 [order] 031 [trans] -0.23 0 0 [rot] 90 0 20.0
[name] left forearm and hand
*[node] 31 [par] 30 [joint] joint [name] joint for left_elbow
*[node] 32 [par] 31 [order] 01 [trans] -0.19 0 0 [rot] -90.0 0 0
[name] left forearm and hand
*[node] 33 [par] 32 [order] 45 [vis] 5 [scale] 0.3 0.07 0.15 [mat] blackcol [shad] 1
[name] left forearm
# left hand
*[node] 38 [par] 32 [order] 031 [trans] -0.24 0 0 [rot] 90 0 20.0 [name] left hand
*[node] 39 [par] 38 [joint] left_hand [name] joint for left hand
*[node] 40 [par] 39 [order] 01 [trans] -0.1 0 0 [rot] -90.0 0 0 [name] left hand
*[node] 41 [par] 40 [order] 45 [vis] 3 [scale] 0.12 0.05 0.12 [mat] blackcol [shad] 1
[name] left hand
# right upper arm
*[node] 26 [par] 03 [order] 031 [trans] -0.56 0.3 0 [rot] -90 0 45.0 [name] right arm
*[node] 27 [par] 26 [joint] right_shldr [name] joint for right shoulder
*[node] 28 [par] 27 [order] 01 [trans] -0.22 0 0 [rot] 90.0 0 0 [name] right arm
*[node] 29 [par] 28 [order] 45 [vis] 5 [scale] 0.34 0.1 0.2 [mat] blackcol [shad] 1
[name] right upper arm
# right forearm
*[node] 34 [par] 28 [order] 031 [trans] -0.23 0 0 [rot] -90 0 20.0
[name] rigth forearm and hand
*[node] 35 [par] 34 [joint] right_elbow [name] joint for right elbow
*[node] 36 [par] 35 [order] 01 [trans] -0.19 0 0 [rot] 90.0 0 0
[name] right forearm and hand
*[node] 37 [par] 36 [order] 45 [vis] 5 [scale] 0.3 0.07 0.15 [mat] blackcol [shad] 1
[name] right forearm
# right hand
*[node] 42 [par] 36 [order] 031 [trans] -0.24 0 0 [rot] -90 0 20.0 [name] right hand
*[node] 43 [par] 42 [joint] right_hand [name] joint for right hand
*[node] 44 [par] 43 [order] 01 [trans] -0.1 0 0 [rot] 90.0 0 0 [name] right hand
*[node] 45 [par] 44 [order] 45 [vis] 3 [scale] 0.12 0.05 0.12 [mat] blackcol [shad] 1
[name] right hand
# left leg
*[node] 46 [par] 01 [order] 209 [rot] 0 180.0 110 [trans] -0.28 -0.8 0 [name] left leg
*[node] 47 [par] 46 [joint] left_hip [name] joint for left leg
*[node] 48 [par] 47 [order] 02 [trans] 0 -0.1 0 [rot] 0 -110.0 0 [name] left leg
*[node] 49 [par] 48 [order] 45 [vis] 3 [scale] 0.07 0.3 0.07 [mat] beakcol [shad] 1
[name] left highbone
*[node] 50 [par] 48 [order] 045 [vis] 3 [trans] 0.0 0.05 0.0
[scale] 0.09 0.18 0.09 [mat] blackcol [name] left hip
*[node] 56 [par] 48 [order] 02 [trans] 0 -0.21 0 [rot] 0 90.0 0
[name] left lower leg and foot
*[node] 57 [par] 56 [joint] left_knee [name] joint for left knee
*[node] 58 [par] 57 [order] 02 [trans] 0 -0.13 0 [rot] 0 -90.0 0
[name] left lower leg and foot
*[node] 59 [par] 58 [order] 45 [vis] 3 [scale] 0.06 0.18 0.06
[mat] beakcol [name] left lower leg
*[node] 64 [par] 58 [order] 02 [trans] 0 -0.18 0 [rot] 0 -50.0 0
[name] left foot
*[node] 65 [par] 64 [joint] left_ankle [name] joint for left ankle
*[node] 76 [par] 65 [order] 04 [trans] -0.13 0 0 [scale] 1.1 1.0 1.3
[name] left foot
*[node] 77 [par] 76 [vis] 8 [order] 45 [scale] 0.25 0.08 0.18
[mat] beakcol [name] left foot
*[node] 78 [par] 76 [vis] 8 [order] 0245 [trans] -0.07 0 0.1 [rot] 0 30 0
[scale] 0.27 0.07 0.11 [mat] beakcol [shad] 1 [name] toe at left foot
*[node] 79 [par] 76 [vis] 8 [order] 0245 [trans] -0.07 0 -0.1 [rot] 0 -30 0
[scale] 0.27 0.07 0.11 [mat] beakcol [shad] 1 [name] toe at left foot
*[node] 80 [par] 76 [vis] 8 [order] 045 [trans] -0.08 0 0
[scale] 0.27 0.07 0.10 [mat] beakcol [shad] 1 [name] toe at left foot
# right leg
*[node] 51 [par] 01 [order] 02 [trans] -0.28 -0.8 0 [rot] 0 -110.0 0
[name] right leg
*[node] 52 [par] 51 [joint] right_hip [name] joint for right leg
*[node] 53 [par] 52 [order] 02 [trans] 0 -0.1 0 [rot] 0 110.0 0
[name] right leg
*[node] 54 [par] 53 [order] 45 [vis] 3 [scale] 0.07 0.3 0.07
[mat] beakcol [shad] 1 [name] right highbone
*[node] 55 [par] 53 [order] 045 [vis] 3 [trans] 0.0 0.05 0.0
[scale] 0.09 0.18 0.09 [mat] blackcol [name] right hip
*[node] 60 [par] 53 [order] 02 [trans] 0 -0.21 0 [rot] 0 -90.0 0
[name] right lower leg and foot
*[node] 61 [par] 60 [joint] right_knee [name] joint for right knee
*[node] 62 [par] 61 [order] 02 [trans] 0 -0.13 0 [rot] 0 90.0 0
[name] right lower leg and foot
*[node] 63 [par] 62 [order] 45 [vis] 3 [scale] 0.06 0.18 0.06
[mat] beakcol [name] right lower leg
*[node] 66 [par] 62 [order] 02 [trans] 0 -0.18 0 [rot] 0 50.0 0
[name] right foot
*[node] 67 [par] 66 [joint] right_ankle [name] joint for right ankle
*[node] 81 [par] 67 [order] 04 [trans] -0.13 0 0 [scale] 1.1 1.0 1.3
[name] right foot
*[node] 82 [par] 81 [vis] 8 [order] 45 [scale] 0.25 0.08 0.18
[mat] beakcol [name] right foot
*[node] 83 [par] 81 [vis] 8 [order] 0245 [trans] -0.07 0 0.1 [rot] 0 30 0
[scale] 0.27 0.07 0.11 [mat] beakcol [shad] 1 [name] toe at right foot
*[node] 84 [par] 81 [vis] 8 [order] 0245 [trans] -0.07 0 -0.1 [rot] 0 -30 0
[scale] 0.27 0.07 0.11 [mat] beakcol [shad] 1 [name] toe at right foot
*[node] 85 [par] 81 [vis] 8 [order] 045 [trans] -0.08 0 0
[scale] 0.27 0.07 0.10 [mat] beakcol [shad] 1 [name] toe at right foot
# tail
*[node] 68 [par] 01 [order] 01 [trans] 0 -0.4 -0.5 [rot] -60.0 0 0 [name] tail
*[node] 69 [par] 68 [joint] tail [name] joint for tail
*[node] 70 [par] 69 [order] 0 [trans] 0 0.15 0 [name] tail
*[node] 71 [par] 70 [order] 45 [vis] 2 [scale] 0.2 0.3 0.1
[mat] blackcol [shad] 1 [name] tail