AminetAminet
Search:
84782 packages online
About
Recent
Browse
Search
Upload
Setup
Services

dev/src/teddycvs163.lha

Mirror:Random
Showing: ppc-morphos icongeneric icon
No screenshot available
Short:Gl port of Elite
Author: tksuoran at cc.helsinki.fi (Timo Suoranta)
Uploader:walternn rupert informatik uni-stuttgart de (Norman Walter)
Type:dev/src
Architecture:m68k-amigaos
Date:2002-03-31
Requires:C++ Compiler (e.g. gcc, StormC)
Download:dev/src/teddycvs163.lha - View contents
Readme:dev/src/teddycvs163.readme
Downloads:637

TEDDY RELEASE VERSION 1.63


This is early development version of Teddy.

Starting from this version, the Teddy framework has
been separated from the application. In addition to
the glElite main application, there are several smaller
demonstration applications. The purpose of these
applications is to help getting used with Teddy easier.
I will try to write a tutorial around these example
programs.

Rest of this file is about glElite.

Please read through test scene instructions and keyboard
controls before trying the program.

While original plan was to create OpenGL version of Elite,
current development is focused on making modular, generic
opensource space-roleplaying framework. Teddy is project
name for the framework. glElite is project name for the
spacegame of original idea.

As the project grows, I might eventually split some libraries
out of Teddy and make standalone libraries from them. The
lightwave object loader would be a good candidate for such
library project.


I am working alone on Teddy at the moment. If you would
like to join to help me with the development, I will be
happy to receive e-mail from you. Also mail me if you
have comments or suggestions.

See GettingStarted.html for building instructions.
See currently implemeted features below to see what Teddy can do.


COMMAND LINE ARGUMENTS:


Following commandline arguments are in use:
    --width <int> 
    --height <int>
    --fullscreen
    --background, 
    --no-background
    --no-audio
    --no-windows
    --no-cabin

For example:
    
    Teddy --width 1024 --height 768 --fullscreen --no-audio


KEYBOARD CONTROLS:


    a    : autopilot (key needs to be held down)
    s x  : control pitch
    , .  : control roll
    space: more speed
    tab  : less speed
    esc  : brakes
    
    1    : toggle inside / outside ship camera
    f1-f6: choose inside ship camera direction
    
    5    : cycle scanner range
    6    : turn off ROAM update
    7    : turn on ROAM update
    8    : decrease ROAM error tolerance
    9    : increase ROAM error tolerance

    n    : narrower view
    m    : wider view
    k    : lighting disabled
    l    : lighting enabled
    v    : culling disabled
    b    : culling enabled
    u    : point vectors
    i    : wireframe vectors
    o    : filled vectors
    p    : outlined filled vectors
    d    : debug selected target

Numeric keyboard:

    8, 2 : control camera pitch
    4, 6 : control camera heading
    7, 9 : control camera roll
    1, 3 : control camera roll
    -    : move camera further
    +    : move camera closer


TEST SCENE INSTRUCTIONS


Test scene starts with outside ship
camera active. You can control the outside ship
camera with mouse while controlling your ship with
keyboard (sx,. etc.). Your ship is a textured
Cobra Mk III, initially near center of the outside
ship camera. Notice that the outside ship camera
    does not follow your ship.

    You should start testing by getting familiar with the
    controls, one by one. First test turning the outside
    ship camera. You can do this by dragging around with
    the mouse while holding left mouse button down. You
    will notice that uou can only control pitch and roll.
    This is the way original Elite controlled ships.

    Then you can try moving the outside ship camera. Do this
    by dragging mouse around while holding down right mouse
    button.

    Next you can try controlling your ship. Before doing so,
    either restart the program, or make sure that you can
    see the texture cobra which was initially shown. Then
    try controlling ship pitch with s and x keys. Then try
    controlling roll with , and . keys.

    Next it is worth trying inside ship cameras before
    actually flying with the ship. Press 1 repeatedly to
    see how you can toggle between inside and outside ship
    cameras. Then while inside ship camera, press f1-f4 to
    select front-rear view cameras.

    Finally get into inside ship front view camera. Then try
    again pitch and roll controls sx,. and then speed controls.
    You can gain (more) speed by pressing space. You can get
    less speed by pressing esc. You can also move backwards by
    pressing tab.

    Now you should be able to fly your Cobra Mk III. Try
    looking at your f1-f4 views while moving and try to spot
    your wingmen, two Vipers.

    While you are looking through outside ship camera, you
    can select autopilot target for your ship by clicking on
    ships. The HUD display on top of the view should display
    name and distance to the target if you have succesfully
    selected one. For the moment target can not be selected
    while inside ship camera (this will be fixed in next
    release). You can activate the autopilot by holding down
    the a-key.


    CREDITS:


    Timo K. Suoranta  Main programming and design
    Sean O'Neil       ROAM                 (not used in this release)
    Russell L. Smith  Open Dynamics Engine (not used in this release)
    Fabrice Bellard   TinyGL               (not used in this release)


    CONTACT INFORMATION:

    
    glElite homepage:  http://glelite.sf.net
    Author:            Timo.Suoranta@Helsinki.FI


    ---- CURRENTLY IMPLEMENTED FEATURES ----


    - OpenGL rendering of textured and smoothed objects
    - Userinterface with hierarchial components, input focus,
      layout management and logical styles
    - Multiple 2D and 3D windows inside single OpenGL context
    - Object loader for Lightwave LWOB, LWLO and LWO2 file formats
    - Vector, matrix and quaternion math classes
    - Vertex, Face, Mesh, elements for object parts
    - Flexible vertex API with hierarchial inheritance
    - Mesh structures for object representation (can be hierarchial)
    - Material class to maintain lighting and texture mapping properties for surfaces
    - Light class to maintain light properties
    - ModelInstance class to define objects
    - Scene as collection of ModelInstances and Lights
    - Cameras for scenes
    - Flexible camera management; separate rendering preferences for each camera
    - Optional skybox and star/dustfield for cameras
    - Simple font rendering system                                                  
    - Simple scene animation/physics system to animate ModelInstances in physics System
    - Spline interpolation, perlin noise and multifractal routines (Sean O'Neil)
    - Realtime optimally adapting mesh planet rendering (Sean O'Neil)
    - Based on Simple Directmedia Library
    - Heavy use of STL on most data structures
    - Some custom memory management for timecritical structures (memorypools) (Sean O'Neil)
    - System support routines for precise timer, directory scanning and endian intelligent IO


    ---- TO DO ----


    - Texture reuse
    - Graphics back-end optimizer
    - Experiment with alpha blending effects
    - Implement console variables, improve console component
    - Improve GUI Physical components
    - Early startup/splash window
    - Lightwave scene reader and player
    - Ship AI, Autopilot
    - Polar and Celestial Coordinates for Navigation
    - Navigation data display (to skybox?)
    - Solar system plane
    - Orbit Calculations?
    - Line cull: use triangle (can be culled) & edgeflag
    - Fog effect for ships?
    - Map Editor
    - Race Editor
    - Equipment Editor


Contents of dev/src/teddycvs163.lha
 PERMSSN    UID  GID    PACKED    SIZE  RATIO     CRC       STAMP          NAME
---------- ----------- ------- ------- ------ ---------- ------------ -------------
[generic]                  288     493  58.4% -lh5- 7633 Nov 21  2001 TeddyCvsWork/CVSROOT/checkoutlist
[generic]                  417     697  59.8% -lh5- b182 Nov 21  2001 TeddyCvsWork/CVSROOT/checkoutlist,v
[generic]                  389     760  51.2% -lh5- 92f4 Nov 21  2001 TeddyCvsWork/CVSROOT/commitinfo
[generic]                  519     964  53.8% -lh5- c56b Nov 21  2001 TeddyCvsWork/CVSROOT/commitinfo,v
[generic]                  216     364  59.3% -lh5- 718e Nov 21  2001 TeddyCvsWork/CVSROOT/config
[generic]                  345     568  60.7% -lh5- 67b1 Nov 21  2001 TeddyCvsWork/CVSROOT/config,v
[generic]                  402     753  53.4% -lh5- 348e Nov 21  2001 TeddyCvsWork/CVSROOT/cvswrappers
[generic]                  537     957  56.1% -lh5- 6565 Nov 21  2001 TeddyCvsWork/CVSROOT/cvswrappers,v
[generic]                  519    1025  50.6% -lh5- fd9c Nov 21  2001 TeddyCvsWork/CVSROOT/editinfo
[generic]                  652    1229  53.1% -lh5- 81d8 Nov 21  2001 TeddyCvsWork/CVSROOT/editinfo,v
[generic]                   48      48 100.0% -lh0- 5cd4 Nov 21  2001 TeddyCvsWork/CVSROOT/history
[generic]                  557    1141  48.8% -lh5- 1cfb Nov 21  2001 TeddyCvsWork/CVSROOT/loginfo
[generic]                  689    1345  51.2% -lh5- a836 Nov 21  2001 TeddyCvsWork/CVSROOT/loginfo,v
[generic]                  540    1151  46.9% -lh5- 1c89 Nov 21  2001 TeddyCvsWork/CVSROOT/modules
[generic]                  677    1355  50.0% -lh5- eb6d Nov 21  2001 TeddyCvsWork/CVSROOT/modules,v
[generic]                  337     564  59.8% -lh5- e4d4 Nov 21  2001 TeddyCvsWork/CVSROOT/notify
[generic]                  467     768  60.8% -lh5- 8483 Nov 21  2001 TeddyCvsWork/CVSROOT/notify,v
[generic]                  342     649  52.7% -lh5- 4a98 Nov 21  2001 TeddyCvsWork/CVSROOT/rcsinfo
[generic]                  475     853  55.7% -lh5- eb8f Nov 21  2001 TeddyCvsWork/CVSROOT/rcsinfo,v
[generic]                  465     879  52.9% -lh5- 0b36 Nov 21  2001 TeddyCvsWork/CVSROOT/taginfo
[generic]                  592    1083  54.7% -lh5- a5d7 Nov 21  2001 TeddyCvsWork/CVSROOT/taginfo,v
[generic]                  520    1026  50.7% -lh5- a77c Nov 21  2001 TeddyCvsWork/CVSROOT/verifymsg
[generic]                  653    1230  53.1% -lh5- 0331 Nov 21  2001 TeddyCvsWork/CVSROOT/verifymsg,v
[generic]                  226     390  57.9% -lh5- 13f8 Nov 21  2001 TeddyCvsWork/fix.sh
[generic]                  247     378  65.3% -lh5- 0014 Nov 21  2001 TeddyCvsWork/Teddy/AUTHORS
[generic]                  469     780  60.1% -lh5- 5d15 Nov 21  2001 TeddyCvsWork/Teddy/CHANGES
[generic]                 9650   26430  36.5% -lh5- 10a2 Nov 21  2001 TeddyCvsWork/Teddy/COPYING
[generic]                  179     456  39.3% -lh5- 2567 Nov 21  2001 TeddyCvsWork/Teddy/CVS/Entries
[generic]                    6       6 100.0% -lh0- a4bc Nov 21  2001 TeddyCvsWork/Teddy/CVS/Repository
[generic]                   59      59 100.0% -lh0- a24d Nov 21  2001 TeddyCvsWork/Teddy/CVS/Root
[generic]                10231   26302  38.9% -lh5- 88dd Nov 21  2001 TeddyCvsWork/Teddy/GettingStarted.html
[generic]                 4407   11081  39.8% -lh5- 0344 Nov 21  2001 TeddyCvsWork/Teddy/HISTORY
[generic]                 3036    7834  38.8% -lh5- ee1d Nov 21  2001 TeddyCvsWork/Teddy/INSTALL
[generic]                 9650   26430  36.5% -lh5- 10a2 Nov 21  2001 TeddyCvsWork/Teddy/LICENSE.TXT
[generic]                   34      34 100.0% -lh0- 378a Nov 21  2001 TeddyCvsWork/Teddy/NEWS
[generic]                 3175    7039  45.1% -lh5- e117 Nov 21  2001 TeddyCvsWork/Teddy/README.TXT
[generic]                   48      69  69.6% -lh5- a3dd Nov 21  2001 TeddyCvsWork/Teddy/src/.cvsignore
[generic]                 2184    6036  36.2% -lh5- abe4 Nov 21  2001 TeddyCvsWork/Teddy/src/acinclude.m4
[generic]                   12      12 100.0% -lh0- deea Nov 21  2001 TeddyCvsWork/Teddy/src/arch/CVS/Entries
[generic]                   15      15 100.0% -lh0- 0920 Nov 21  2001 TeddyCvsWork/Teddy/src/arch/CVS/Repository
[generic]                   59      59 100.0% -lh0- a24d Nov 21  2001 TeddyCvsWork/Teddy/src/arch/CVS/Root
[generic]                   68     100  68.0% -lh5- 2c90 Nov 21  2001 TeddyCvsWork/Teddy/src/arch/win32/CVS/Entries
[generic]                   21      21 100.0% -lh0- ad80 Nov 21  2001 TeddyCvsWork/Teddy/src/arch/win32/CVS/Repository
[generic]                   59      59 100.0% -lh0- a24d Nov 21  2001 TeddyCvsWork/Teddy/src/arch/win32/CVS/Root
[generic]                 1048    2166  48.4% -lh5- 04a3 Nov 21  2001 TeddyCvsWork/Teddy/src/arch/win32/native_midi.h
[generic]                 3323   12369  26.9% -lh5- 8712 Nov 21  2001 TeddyCvsWork/Teddy/src/arch/win32/native_midi_win32.c
[generic]                   44      44 100.0% -lh0- 1063 Nov 21  2001 TeddyCvsWork/Teddy/src/autogen.sh
[generic]                11789   35954  32.8% -lh5- 9a41 Nov 21  2001 TeddyCvsWork/Teddy/src/config.guess
[generic]                  198     469  42.2% -lh5- ea25 Nov 21  2001 TeddyCvsWork/Teddy/src/config.h.in
[generic]                 7587   24535  30.9% -lh5- fb05 Nov 21  2001 TeddyCvsWork/Teddy/src/config.sub
[generic]                20141   87720  23.0% -lh5- 784d Nov 21  2001 TeddyCvsWork/Teddy/src/configure
[generic]                 1109    2729  40.6% -lh5- aad6 Nov 21  2001 TeddyCvsWork/Teddy/src/configure.in
[generic]                  476    1373  34.7% -lh5- 3c67 Nov 21  2001 TeddyCvsWork/Teddy/src/CVS/Entries
[generic]                   10      10 100.0% -lh0- dc3b Nov 21  2001 TeddyCvsWork/Teddy/src/CVS/Repository
[generic]                   59      59 100.0% -lh0- a24d Nov 21  2001 TeddyCvsWork/Teddy/src/CVS/Root
[generic]                  153     245  62.4% -lh5- c3bc Nov 21  2001 TeddyCvsWork/Teddy/src/distclean.sh
[generic]                 2235    5111  43.7% -lh5- 6290 Nov 21  2001 TeddyCvsWork/Teddy/src/doc_diary.h
[generic]                 2721    6901  39.4% -lh5- 09bf Nov 21  2001 TeddyCvsWork/Teddy/src/doc_links.h
[generic]                 1916    3954  48.5% -lh5- 6889 Nov 21  2001 TeddyCvsWork/Teddy/src/doc_mainpage.h
[generic]                17303   47888  36.1% -lh5- 115c Nov 21  2001 TeddyCvsWork/Teddy/src/doc_plan.h
[generic]                 1980    4174  47.4% -lh5- 07d2 Nov 21  2001 TeddyCvsWork/Teddy/src/doc_program_flow.h
[generic]                 8887   31169  28.5% -lh5- d0be Nov 21  2001 TeddyCvsWork/Teddy/src/Doxyfile
[generic]                   15      15 100.0% -lh0- 0b1d Nov 21  2001 TeddyCvsWork/Teddy/src/footer.html
[generic]                  545     933  58.4% -lh5- e4a2 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/Action.cpp
[generic]                  819    1511  54.2% -lh5- 85de Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/Action.h
[generic]                 2042    5662  36.1% -lh5- f799 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/Atmosphere.cpp
[generic]                 2202    4938  44.6% -lh5- a02d Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/Atmosphere.h
[generic]                  991    1971  50.3% -lh5- 23f4 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/Cabin.cpp
[generic]                  738    1357  54.4% -lh5- 3c24 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/Cabin.h
[generic]                  710    1347  52.7% -lh5- 50e9 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/CollisionGroup.cpp
[generic]                  784    1505  52.1% -lh5- 2a09 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/CollisionGroup.h
[generic]                 1039    2414  43.0% -lh5- 3e8e Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/CollisionInstance.cpp
[generic]                  878    1761  49.9% -lh5- c64c Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/CollisionInstance.h
[generic]                  662    1170  56.6% -lh5- 5bae Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/ComputerShip.cpp
[generic]                  762    1405  54.2% -lh5- 6b06 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/ComputerShip.h
[generic]                 3739   10778  34.7% -lh5- c849 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/Console.cpp
[generic]                 1746    3962  44.1% -lh5- 36eb Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/Console.h
[generic]                  550     941  58.4% -lh5- cfdc Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/ConsoleStream.cpp
[generic]                 1085    2062  52.6% -lh5- b398 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/ConsoleStream.h
[generic]                  630    1092  57.7% -lh5- cfd7 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/ConsoleStreamBuffer.cpp
[generic]                  986    1884  52.3% -lh5- 666e Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/ConsoleStreamBuffer.h
[generic]                  507    3653  13.9% -lh5- 06d9 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/CVS/Entries
[generic]                   18      18 100.0% -lh0- 7e7a Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/CVS/Repository
[generic]                   59      59 100.0% -lh0- a24d Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/CVS/Root
[generic]                 2513    8801  28.6% -lh5- a844 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/FrontCamera.cpp
[generic]                 1150    2575  44.7% -lh5- 4161 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/FrontCamera.h
[generic]                 2124    6043  35.1% -lh5- aef1 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/FrontierBitmap.cpp
[generic]                  731    1351  54.1% -lh5- 1d0d Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/FrontierBitmap.h
[generic]                 2635    8572  30.7% -lh5- 3a86 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/FrontierFile.cpp
[generic]                 1041    2149  48.4% -lh5- 2777 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/FrontierFile.h
[generic]                 8121   28097  28.9% -lh5- f401 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/FrontierMesh.cpp
[generic]                 1221    2778  44.0% -lh5- a2db Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/FrontierMesh.h
[generic]                 1029    1998  51.5% -lh5- 2e65 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/FrontierObjects.cpp
[generic]                    0       0 ****** -lh0- 0000 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/FrontierObjects.h
[generic]                 1679    9681  17.3% -lh5- bd38 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/glElite.dsp
[generic]                 3326  107008   3.1% -lh5- 8bbb Nov 16  2001 TeddyCvsWork/Teddy/src/glElite/glElite.opt
[generic]                 2683    8085  33.2% -lh5- f40c Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/Hud.cpp
[generic]                  808    1523  53.1% -lh5- f44d Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/Hud.h
[generic]                 1833    4215  43.5% -lh5- 40fa Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/LightwaveObjects.cpp
[generic]                    0       0 ****** -lh0- 0000 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/LightwaveObjects.h
[generic]                  725    1271  57.0% -lh5- 7b5c Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/LogicalUI.cpp
[generic]                  746    1336  55.8% -lh5- addf Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/LogicalUI.h
[generic]                  726    1318  55.1% -lh5- 2ccb Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/mod_application.h
[generic]                 1416    3268  43.3% -lh5- 92fb Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/PlayerShip.cpp
[generic]                  935    1880  49.7% -lh5- 89ec Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/PlayerShip.h
[generic]                 1467    3588  40.9% -lh5- d9ca Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/PrimitiveObjects.cpp
[generic]                    0       0 ****** -lh0- 0000 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/PrimitiveObjects.h
[generic]                  622    1084  57.4% -lh5- 029f Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/RoamAlgorithm.cpp
[generic]                  778    1494  52.1% -lh5- 740b Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/RoamAlgorithm.h
[generic]                 1166    2671  43.7% -lh5- 81e6 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/RoamInstance.cpp
[generic]                  763    1405  54.3% -lh5- 239f Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/RoamInstance.h
[generic]                 1230    2569  47.9% -lh5- 4cdb Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/RoamObjects.cpp
[generic]                    0       0 ****** -lh0- 0000 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/RoamObjects.h
[generic]                 1023    1973  51.8% -lh5- 0eff Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/RoamSphere.cpp
[generic]                 1196    2366  50.5% -lh5- e4ef Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/RoamSphere.h
[generic]                 1557    3791  41.1% -lh5- bd54 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/Scanner.cpp
[generic]                  802    1525  52.6% -lh5- caf3 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/Scanner.h
[generic]                 2337    7883  29.6% -lh5- f4ef Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/Ship.cpp
[generic]                 1386    4045  34.3% -lh5- 6f26 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/Ship.h
[generic]                 1262    3369  37.5% -lh5- 462b Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/ShipCamera.cpp
[generic]                  998    2127  46.9% -lh5- dd5f Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/ShipCamera.h
[generic]                 1580    5326  29.7% -lh5- 60b6 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/ShipControls.cpp
[generic]                  760    1653  46.0% -lh5- 3d45 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/ShipType.cpp
[generic]                  847    1716  49.4% -lh5- 4670 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/ShipType.h
[generic]                 1216    3280  37.1% -lh5- fec4 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/Sight.cpp
[generic]                  751    1379  54.5% -lh5- 1acf Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/Sight.h
[generic]                  655    1220  53.7% -lh5- b336 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/Simulated.cpp
[generic]                  755    1385  54.5% -lh5- b24e Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/Simulated.h
[generic]                  803    1763  45.5% -lh5- 8468 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/SimulatedInstance.cpp
[generic]                  911    1956  46.6% -lh5- 6685 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/SimulatedInstance.h
[generic]                  735    1387  53.0% -lh5- 617a Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/SimulationTimer.cpp
[generic]                  743    1324  56.1% -lh5- 358f Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/SimulationTimer.h
[generic]                  997    1766  56.5% -lh5- 9260 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/teddy.cpp
[generic]                 2619    7619  34.4% -lh5- 3cb9 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/ui.cpp
[generic]                 2313    6379  36.3% -lh5- 3f3d Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/ui.h
[generic]                 2989    9590  31.2% -lh5- 7001 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/uiActions.cpp
[generic]                 1534    3349  45.8% -lh5- 36a0 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/uiAudio.cpp
[generic]                 2358    7660  30.8% -lh5- f812 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/uiObjects.cpp
[generic]                 1669    4723  35.3% -lh5- 529f Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/uiPhysicalComponents.cpp
[generic]                 1227    3892  31.5% -lh5- 17d8 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/uiPreferences.cpp
[generic]                 1066    2231  47.8% -lh5- be14 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/uiUpdate.cpp
[generic]                  617    1125  54.8% -lh5- 0a02 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/version.h
[generic]                  598    1024  58.4% -lh5- fca1 Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/VertexArray.cpp
[generic]                  764    1470  52.0% -lh5- 85ab Nov 21  2001 TeddyCvsWork/Teddy/src/glElite/VertexArray.h
[generic]                 1344    4621  29.1% -lh5- 981a Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/Color.cpp
[generic]                 1231    3633  33.9% -lh5- 67cc Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/Color.h
[generic]                  252    1132  22.3% -lh5- 60c9 Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/CVS/Entries
[generic]                   19      19 100.0% -lh0- c6f8 Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/CVS/Repository
[generic]                   59      59 100.0% -lh0- a24d Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/CVS/Root
[generic]                  521     877  59.4% -lh5- 3c62 Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/Device.cpp
[generic]                 1195    2707  44.1% -lh5- 89ea Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/Device.h
[generic]                  104     195  53.3% -lh5- e40c Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/DeviceGL.cpp
[generic]                 1128    3783  29.8% -lh5- 78bc Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/Features.cpp
[generic]                  908    1810  50.2% -lh5- c0bb Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/Features.h
[generic]                 1994    4524  44.1% -lh5- 5bfa Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/Font.cpp
[generic]                 1017    2156  47.2% -lh5- 737f Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/Font.h
[generic]                 4886   20180  24.2% -lh5- 5aeb Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/glu_mipmap.cpp
[generic]                  376    1026  36.6% -lh5- c5b3 Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/glu_mipmap.h
[generic]                 1077    4348  24.8% -lh5- 1b50 Nov 18  2001 TeddyCvsWork/Teddy/src/Graphics/Graphics.dsp
[generic]                  648    1141  56.8% -lh5- 3c28 Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/mod_graphics.h
[generic]                 1240    2758  45.0% -lh5- 389b Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/OpenGL.h
[generic]                 9721   49248  19.7% -lh5- 5e6d Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/SDL_gfxPrimitives.cpp
[generic]                  720    3779  19.1% -lh5- 54ec Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/SDL_gfxPrimitives.h
[generic]                 4795   50492   9.5% -lh5- e5a1 Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/SDL_gfxPrimitives_font.h
[generic]                 2917    9233  31.6% -lh5- 2705 Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/Texture.cpp
[generic]                 1201    2872  41.8% -lh5- 0990 Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/Texture.h
[generic]                  966    3529  27.4% -lh5- d3d2 Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/TextureConversions.cpp
[generic]                 5349   15843  33.8% -lh5- 2cba Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/View.cpp
[generic]                 1977    5827  33.9% -lh5- 8a0a Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/View.h
[generic]                  838    2308  36.3% -lh5- 3dd8 Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/ViewClient.cpp
[generic]                  921    2144  43.0% -lh5- 88d1 Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/ViewClient.h
[generic]                 1478    5085  29.1% -lh5- 0294 Nov 21  2001 TeddyCvsWork/Teddy/src/Graphics/ViewGL.cpp
[generic]                  261    1178  22.2% -lh5- d403 Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/CVS/Entries
[generic]                   18      18 100.0% -lh0- 0ba0 Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/CVS/Repository
[generic]                   59      59 100.0% -lh0- a24d Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/CVS/Root
[generic]                 1077    4441  24.3% -lh5- 97ad Nov 16  2001 TeddyCvsWork/Teddy/src/Imports/Imports.dsp
[generic]                 2591    8219  31.5% -lh5- 3f7b Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/LWClip.cpp
[generic]                 1316    3568  36.9% -lh5- 5bfb Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/LWClip.h
[generic]                 3060   11224  27.3% -lh5- 81c1 Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/lwdef.h
[generic]                 1781    3914  45.5% -lh5- ef72 Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/LWEnvelope.cpp
[generic]                  953    1814  52.5% -lh5- 0af3 Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/LWEnvelope.h
[generic]                  609    1048  58.1% -lh5- 36b3 Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/LWEnvelopeKey.cpp
[generic]                  714    1283  55.7% -lh5- 557a Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/LWEnvelopeKey.h
[generic]                 1882    5365  35.1% -lh5- d00e Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/LWFile.cpp
[generic]                 1271    2807  45.3% -lh5- 64db Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/LWFile.h
[generic]                 9248   28523  32.4% -lh5- 7ab5 Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/LWLayer.cpp
[generic]                 1620    3964  40.9% -lh5- 03e6 Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/LWLayer.h
[generic]                 2593    6367  40.7% -lh5- c876 Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/LWMesh.cpp
[generic]                 1392    2939  47.4% -lh5- 7216 Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/LWMesh.h
[generic]                 8473   29236  29.0% -lh5- bbfe Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/LWSurface.cpp
[generic]                 1967    6018  32.7% -lh5- 7a72 Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/LWSurface.h
[generic]                 8094   25855  31.3% -lh5- 858f Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/LWSurfaceBlok.cpp
[generic]                 2393    6935  34.5% -lh5- 8000 Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/LWSurfaceBlok.h
[generic]                  741    1295  57.2% -lh5- e75b Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/LWSurfaceBlokGradient.cpp
[generic]                 2255    6595  34.2% -lh5- e5b1 Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/LWSurfaceBlokImageMap.cpp
[generic]                  692    1227  56.4% -lh5- 9466 Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/LWSurfaceBlokProcedural.cpp
[generic]                  695    1224  56.8% -lh5- 4862 Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/LWSurfaceBlokShader.cpp
[generic]                 2209    7053  31.3% -lh5- 977c Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/LWTexture.cpp
[generic]                 1265    3023  41.8% -lh5- c3f5 Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/LWTexture.h
[generic]                  638    1099  58.1% -lh5- f664 Nov 21  2001 TeddyCvsWork/Teddy/src/Imports/mod_imports.h
[generic]                 2233    5598  39.9% -lh5- a21f Nov 21  2001 TeddyCvsWork/Teddy/src/install-sh
[generic]                 2271   10348  21.9% -lh5- 23ae Nov 21  2001 TeddyCvsWork/Teddy/src/Makefile.in
[generic]                 1336    3009  44.4% -lh5- 94cb Nov 21  2001 TeddyCvsWork/Teddy/src/Materials/convgltex.c
[generic]                  165     551  29.9% -lh5- e932 Nov 21  2001 TeddyCvsWork/Teddy/src/Materials/CVS/Entries
[generic]                   20      20 100.0% -lh0- b32a Nov 21  2001 TeddyCvsWork/Teddy/src/Materials/CVS/Repository
[generic]                   59      59 100.0% -lh0- a24d Nov 21  2001 TeddyCvsWork/Teddy/src/Materials/CVS/Root
[generic]                 1822    4845  37.6% -lh5- 63c5 Nov 21  2001 TeddyCvsWork/Teddy/src/Materials/Light.cpp
[generic]                 1272    2897  43.9% -lh5- 66e4 Nov 21  2001 TeddyCvsWork/Teddy/src/Materials/Light.h
[generic]                 2685   13096  20.5% -lh5- 8154 Nov 21  2001 TeddyCvsWork/Teddy/src/Materials/Material.cpp
[generic]                 1408    4400  32.0% -lh5- 3328 Nov 21  2001 TeddyCvsWork/Teddy/src/Materials/Material.h
[generic]                 1001    3578  28.0% -lh5- adb2 Nov 16  2001 TeddyCvsWork/Teddy/src/Materials/Materials.dsp
[generic]                  562     969  58.0% -lh5- 2377 Nov 21  2001 TeddyCvsWork/Teddy/src/Materials/mod_materials.h
[generic]                 1684    4383  38.4% -lh5- 2f33 Nov 21  2001 TeddyCvsWork/Teddy/src/Materials/PixFileTexture.cpp
[generic]                  710    1299  54.7% -lh5- 1732 Nov 21  2001 TeddyCvsWork/Teddy/src/Materials/PixFileTexture.h
[generic]                 1228    4789  25.6% -lh5- 9547 Nov 21  2001 TeddyCvsWork/Teddy/src/Materials/Render.cpp
[generic]                 3284   11823  27.8% -lh5- 161b Nov 21  2001 TeddyCvsWork/Teddy/src/Materials/Render.h
[generic]                 1385    3120  44.4% -lh5- 2734 Nov 21  2001 TeddyCvsWork/Teddy/src/Materials/SdlTexture.cpp
[generic]                  804    1581  50.9% -lh5- 9727 Nov 21  2001 TeddyCvsWork/Teddy/src/Materials/SdlTexture.h
[generic]                  169     566  29.9% -lh5- 0088 Nov 21  2001 TeddyCvsWork/Teddy/src/Maths/CVS/Entries
[generic]                   16      16 100.0% -lh0- 942c Nov 21  2001 TeddyCvsWork/Teddy/src/Maths/CVS/Repository
[generic]                   59      59 100.0% -lh0- a24d Nov 21  2001 TeddyCvsWork/Teddy/src/Maths/CVS/Root
[generic]                  970    3483  27.8% -lh5- 1581 Nov 18  2001 TeddyCvsWork/Teddy/src/Maths/Maths.dsp
[generic]                 1424    4944  28.8% -lh5- f2f6 Nov 21  2001 TeddyCvsWork/Teddy/src/Maths/Matrix.cpp
[generic]                 3585   14716  24.4% -lh5- 6ba9 Nov 21  2001 TeddyCvsWork/Teddy/src/Maths/Matrix.h
[generic]                  984    1775  55.4% -lh5- f0db Nov 21  2001 TeddyCvsWork/Teddy/src/Maths/mod_maths.h
[generic]                  992    2067  48.0% -lh5- c4fb Nov 21  2001 TeddyCvsWork/Teddy/src/Maths/Plane.cpp
[generic]                  795    1549  51.3% -lh5- 4482 Nov 21  2001 TeddyCvsWork/Teddy/src/Maths/Plane.h
[generic]                 1671    3888  43.0% -lh5- 23ec Nov 21  2001 TeddyCvsWork/Teddy/src/Maths/Quaternion.cpp
[generic]                 2145    7315  29.3% -lh5- 7fe2 Nov 21  2001 TeddyCvsWork/Teddy/src/Maths/Quaternion.h
[generic]                  612    1083  56.5% -lh5- 9aed Nov 21  2001 TeddyCvsWork/Teddy/src/Maths/trigmath.h
[generic]                  593    1017  58.3% -lh5- a2e9 Nov 21  2001 TeddyCvsWork/Teddy/src/Maths/Vector.cpp
[generic]                 2268    7930  28.6% -lh5- 2d2a Nov 21  2001 TeddyCvsWork/Teddy/src/Maths/Vector.h
[generic]                  593    1018  58.3% -lh5- 6cfe Nov 21  2001 TeddyCvsWork/Teddy/src/Maths/Vector4.cpp
[generic]                 1761    5902  29.8% -lh5- 9ad2 Nov 21  2001 TeddyCvsWork/Teddy/src/Maths/Vector4.h
[generic]                 2135    6283  34.0% -lh5- b90d Nov 21  2001 TeddyCvsWork/Teddy/src/missing
[generic]                  113     260  43.5% -lh5- 487b Nov 21  2001 TeddyCvsWork/Teddy/src/MixIn/CVS/Entries
[generic]                   16      16 100.0% -lh0- 5f97 Nov 21  2001 TeddyCvsWork/Teddy/src/MixIn/CVS/Repository
[generic]                   59      59 100.0% -lh0- a24d Nov 21  2001 TeddyCvsWork/Teddy/src/MixIn/CVS/Root
[generic]                  937    3050  30.7% -lh5- c80c Nov 16  2001 TeddyCvsWork/Teddy/src/MixIn/MixIn.dsp
[generic]                    0       0 ****** -lh0- 0000 Nov 21  2001 TeddyCvsWork/Teddy/src/MixIn/mod_mix_in.h
[generic]                  850    1907  44.6% -lh5- c470 Nov 21  2001 TeddyCvsWork/Teddy/src/MixIn/Named.cpp
[generic]                  695    1274  54.6% -lh5- 5b75 Nov 21  2001 TeddyCvsWork/Teddy/src/MixIn/Named.h
[generic]                  729    1752  41.6% -lh5- 7a92 Nov 21  2001 TeddyCvsWork/Teddy/src/MixIn/Options.cpp
[generic]                  737    1541  47.8% -lh5- 4a34 Nov 21  2001 TeddyCvsWork/Teddy/src/MixIn/Options.h
[generic]                  383     726  52.8% -lh5- 43de Nov 21  2001 TeddyCvsWork/Teddy/src/mkinstalldirs
[generic]                  868    2348  37.0% -lh5- 79ec Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Box.cpp
[generic]                  734    1328  55.3% -lh5- b460 Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Box.h
[generic]                 1284    2879  44.6% -lh5- 6e93 Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Cone.cpp
[generic]                  739    1325  55.8% -lh5- 7ab7 Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Cone.h
[generic]                  340    1747  19.5% -lh5- 9a30 Nov 21  2001 TeddyCvsWork/Teddy/src/Models/CVS/Entries
[generic]                   17      17 100.0% -lh0- cdc5 Nov 21  2001 TeddyCvsWork/Teddy/src/Models/CVS/Repository
[generic]                   59      59 100.0% -lh0- a24d Nov 21  2001 TeddyCvsWork/Teddy/src/Models/CVS/Root
[generic]                 1023    2223  46.0% -lh5- 8a64 Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Cylinder.cpp
[generic]                  755    1377  54.8% -lh5- 9a7a Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Cylinder.h
[generic]                  577     978  59.0% -lh5- 3f3d Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Element.cpp
[generic]                  775    1421  54.5% -lh5- d61d Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Element.h
[generic]                 3512   10552  33.3% -lh5- ed9c Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Face.cpp
[generic]                 1131    2362  47.9% -lh5- 15a2 Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Face.h
[generic]                  916    1848  49.6% -lh5- 765d Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Grid.cpp
[generic]                  789    1477  53.4% -lh5- 9a8e Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Grid.h
[generic]                  990    2295  43.1% -lh5- 8cac Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Line.cpp
[generic]                  791    1487  53.2% -lh5- 7a00 Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Line.h
[generic]                  715    1328  53.8% -lh5- a92a Nov 21  2001 TeddyCvsWork/Teddy/src/Models/LineMesh.cpp
[generic]                  805    1468  54.8% -lh5- f9bc Nov 21  2001 TeddyCvsWork/Teddy/src/Models/LineMesh.h
[generic]                 1930    5671  34.0% -lh5- 1e3e Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Mesh.cpp
[generic]                 1598    4099  39.0% -lh5- 00f1 Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Mesh.h
[generic]                 3196   13437  23.8% -lh5- 1790 Nov 21  2001 TeddyCvsWork/Teddy/src/Models/MeshTextureCoordinates.cpp
[generic]                 1329    2673  49.7% -lh5- 26d6 Nov 21  2001 TeddyCvsWork/Teddy/src/Models/mod_models.h
[generic]                 2439    6810  35.8% -lh5- b387 Nov 21  2001 TeddyCvsWork/Teddy/src/Models/ModelInstance.cpp
[generic]                 1425    3728  38.2% -lh5- 570b Nov 21  2001 TeddyCvsWork/Teddy/src/Models/ModelInstance.h
[generic]                 1607    3799  42.3% -lh5- 6206 Nov 21  2001 TeddyCvsWork/Teddy/src/Models/ModelInstanceMatrices.cpp
[generic]                 1175    5417  21.7% -lh5- ef37 Nov 16  2001 TeddyCvsWork/Teddy/src/Models/Models.dsp
[generic]                  696    1307  53.3% -lh5- 8f7b Nov 21  2001 TeddyCvsWork/Teddy/src/Models/PointMesh.cpp
[generic]                  761    1395  54.6% -lh5- 4a7c Nov 21  2001 TeddyCvsWork/Teddy/src/Models/PointMesh.h
[generic]                  769    1423  54.0% -lh5- cd77 Nov 21  2001 TeddyCvsWork/Teddy/src/Models/QuadStrip.cpp
[generic]                  830    1511  54.9% -lh5- 932c Nov 21  2001 TeddyCvsWork/Teddy/src/Models/QuadStrip.h
[generic]                  850    1743  48.8% -lh5- 950e Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Ring.cpp
[generic]                  732    1350  54.2% -lh5- 0506 Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Ring.h
[generic]                 1000    2088  47.9% -lh5- aaa0 Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Sphere.cpp
[generic]                  759    1382  54.9% -lh5- 24cf Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Sphere.h
[generic]                  903    1837  49.2% -lh5- f60d Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Torus.cpp
[generic]                  751    1394  53.9% -lh5- 05a7 Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Torus.h
[generic]                  782    1452  53.9% -lh5- b71d Nov 21  2001 TeddyCvsWork/Teddy/src/Models/TriangleFan.cpp
[generic]                  820    1504  54.5% -lh5- 024c Nov 21  2001 TeddyCvsWork/Teddy/src/Models/TriangleFan.h
[generic]                  989    2687  36.8% -lh5- b23d Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Tube.cpp
[generic]                  739    1348  54.8% -lh5- 31fd Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Tube.h
[generic]                 2287    8526  26.8% -lh5- 7385 Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Vertex.cpp
[generic]                 1959    5816  33.7% -lh5- 8de1 Nov 21  2001 TeddyCvsWork/Teddy/src/Models/Vertex.h
[generic]                 1342    3078  43.6% -lh5- 15a0 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/ActionButton.cpp
[generic]                  976    2080  46.9% -lh5- c87e Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/ActionButton.h
[generic]                 2919   10509  27.8% -lh5- 3c0a Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/Area.cpp
[generic]                 2312    6151  37.6% -lh5- 2463 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/Area.h
[generic]                 1038    2285  45.4% -lh5- 697a Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/Button.cpp
[generic]                  778    1423  54.7% -lh5- 48f2 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/Button.h
[generic]                  369    1974  18.7% -lh5- fb68 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/CVS/Entries
[generic]                   29      29 100.0% -lh0- 51e7 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/CVS/Repository
[generic]                   59      59 100.0% -lh0- a24d Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/CVS/Root
[generic]                  844    1756  48.1% -lh5- 572d Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/Dock.cpp
[generic]                  922    1786  51.6% -lh5- 98e1 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/Dock.h
[generic]                  627    1091  57.5% -lh5- 6df5 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/EventListener.cpp
[generic]                 1198    3355  35.7% -lh5- 10c8 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/EventListener.h
[generic]                  834    1585  52.6% -lh5- 6146 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/Fill.cpp
[generic]                  790    1438  54.9% -lh5- 29e5 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/Fill.h
[generic]                  925    1964  47.1% -lh5- 5485 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/Frame.cpp
[generic]                  892    1657  53.8% -lh5- 245a Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/Frame.h
[generic]                  966    1941  49.8% -lh5- 36e8 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/GradientFill.cpp
[generic]                  867    1704  50.9% -lh5- c529 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/GradientFill.h
[generic]                 1374    3281  41.9% -lh5- 837b Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/HDock.cpp
[generic]                  876    1649  53.1% -lh5- ab20 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/HDock.h
[generic]                 1035    2032  50.9% -lh5- 1626 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/HSplit.cpp
[generic]                  887    1772  50.1% -lh5- e434 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/HSplit.h
[generic]                  964    2092  46.1% -lh5- 90a8 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/Label.cpp
[generic]                  780    1441  54.1% -lh5- e323 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/Label.h
[generic]                 1499    4033  37.2% -lh5- 99b9 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/Layer.cpp
[generic]                  993    1940  51.2% -lh5- 9118 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/Layer.h
[generic]                  718    1642  43.7% -lh5- fa43 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/LayoutConstraint.cpp
[generic]                  912    2141  42.6% -lh5- a431 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/LayoutConstraint.h
[generic]                  962    1845  52.1% -lh5- 20a3 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/mod_physical_components.h
[generic]                 1219    6216  19.6% -lh5- 0428 Nov 16  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/PhysicalComponents.dsp
[generic]                 3107    9368  33.2% -lh5- a3c2 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/Projection.cpp
[generic]                 1735    4407  39.4% -lh5- 5b85 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/Projection.h
[generic]                 1019    2302  44.3% -lh5- 9c17 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/Style.cpp
[generic]                 1111    2433  45.7% -lh5- 1f6e Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/Style.h
[generic]                  816    1647  49.5% -lh5- 01be Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/TextureFill.cpp
[generic]                  834    1574  53.0% -lh5- 7d30 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/TextureFill.h
[generic]                 1361    3220  42.3% -lh5- 3902 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/VDock.cpp
[generic]                  892    1679  53.1% -lh5- 3e7e Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/VDock.h
[generic]                 1033    2030  50.9% -lh5- b1b9 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/VSplit.cpp
[generic]                  884    1770  49.9% -lh5- 2580 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/VSplit.h
[generic]                  899    1943  46.3% -lh5- bce9 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/Window.cpp
[generic]                  830    1573  52.8% -lh5- b709 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/Window.h
[generic]                 1592    4433  35.9% -lh5- 8a20 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/WindowFrame.cpp
[generic]                  907    1710  53.0% -lh5- 7345 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/WindowFrame.h
[generic]                 3203    8738  36.7% -lh5- 3c51 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/WindowManager.cpp
[generic]                 1272    2878  44.2% -lh5- b318 Nov 21  2001 TeddyCvsWork/Teddy/src/PhysicalComponents/WindowManager.h
[generic]                 3038    8536  35.6% -lh5- 8ccd Nov 21  2001 TeddyCvsWork/Teddy/src/Scenes/Camera.cpp
[generic]                 1507    3889  38.8% -lh5- 7c94 Nov 21  2001 TeddyCvsWork/Teddy/src/Scenes/Camera.h
[generic]                  169     534  31.6% -lh5- 8d0f Nov 21  2001 TeddyCvsWork/Teddy/src/Scenes/CVS/Entries
[generic]                   17      17 100.0% -lh0- e6d4 Nov 21  2001 TeddyCvsWork/Teddy/src/Scenes/CVS/Repository
[generic]                   59      59 100.0% -lh0- a24d Nov 21  2001 TeddyCvsWork/Teddy/src/Scenes/CVS/Root
[generic]                  565     965  58.5% -lh5- fdfa Nov 21  2001 TeddyCvsWork/Teddy/src/Scenes/mod_scenes.h
[generic]                 1284    2746  46.8% -lh5- 9db8 Nov 21  2001 TeddyCvsWork/Teddy/src/Scenes/PostElement.cpp
[generic]                 1001    1990  50.3% -lh5- 0fac Nov 21  2001 TeddyCvsWork/Teddy/src/Scenes/PostElement.h
[generic]                 2327    6243  37.3% -lh5- f0af Nov 21  2001 TeddyCvsWork/Teddy/src/Scenes/Scene.cpp
[generic]                 1323    2987  44.3% -lh5- b8f9 Nov 21  2001 TeddyCvsWork/Teddy/src/Scenes/Scene.h
[generic]                  973    3451  28.2% -lh5- 9634 Nov 16  2001 TeddyCvsWork/Teddy/src/Scenes/Scenes.dsp
[generic]                 1342    3673  36.5% -lh5- 2e81 Nov 21  2001 TeddyCvsWork/Teddy/src/Scenes/SkyBox.cpp
[generic]                  803    1523  52.7% -lh5- c3ce Nov 21  2001 TeddyCvsWork/Teddy/src/Scenes/SkyBox.h
[generic]                 1277    2922  43.7% -lh5- 4223 Nov 21  2001 TeddyCvsWork/Teddy/src/Scenes/StarField.cpp
[generic]                  792    1464  54.1% -lh5- 33cd Nov 21  2001 TeddyCvsWork/Teddy/src/Scenes/StarField.h
[generic]                  291    1517  19.2% -lh5- 09c1 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/CVS/Entries
[generic]                   21      21 100.0% -lh0- 6f0f Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/CVS/Repository
[generic]                   59      59 100.0% -lh0- a24d Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/CVS/Root
[generic]                 1564    4953  31.6% -lh5- f452 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/endian_io.cpp
[generic]                 1012    2669  37.9% -lh5- bf93 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/endian_io.h
[generic]                 1348    3377  39.9% -lh5- 28d7 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/EndianIn.cpp
[generic]                  890    1750  50.9% -lh5- 23e5 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/EndianIn.h
[generic]                  691    1318  52.4% -lh5- 6c93 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/EndianIO.cpp
[generic]                  817    1502  54.4% -lh5- 7128 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/EndianIO.h
[generic]                  981    2304  42.6% -lh5- 3f6d Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/EndianOut.cpp
[generic]                  863    1732  49.8% -lh5- d125 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/EndianOut.h
[generic]                  587    1005  58.4% -lh5- a20d Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/Exception.cpp
[generic]                  713    1269  56.2% -lh5- 9db5 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/Exception.h
[generic]                 1253    2436  51.4% -lh5- b0b9 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/FileScan.cpp
[generic]                  830    1515  54.8% -lh5- d97d Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/FileScan.h
[generic]                  591    1015  58.2% -lh5- 8b1c Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/MemoryBlock.cpp
[generic]                 1202    2757  43.6% -lh5- c9e0 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/MemoryBlock.h
[generic]                  495    3336  14.8% -lh5- b13b Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/Messages.cpp
[generic]                  782    1805  43.3% -lh5- 9c32 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/Messages.h
[generic]                    0       0 ****** -lh0- 0000 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/mod_sys_support.h
[generic]                  730    1264  57.8% -lh5- b63e Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/mod_syssupport.h
[generic]                  525     881  59.6% -lh5- 5318 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/StdList.cpp
[generic]                  680    1176  57.8% -lh5- 2eb5 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/StdList.h
[generic]                  525     880  59.7% -lh5- cbe3 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/StdMap.cpp
[generic]                  679    1170  58.0% -lh5- 7472 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/StdMap.h
[generic]                  527     882  59.8% -lh5- 7f63 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/StdMaths.cpp
[generic]                  912    1760  51.8% -lh5- 3261 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/StdMaths.h
[generic]                  526     882  59.6% -lh5- f039 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/StdStack.cpp
[generic]                  683    1181  57.8% -lh5- 3681 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/StdStack.h
[generic]                  526     882  59.6% -lh5- 3924 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/StdString.cpp
[generic]                  682    1184  57.6% -lh5- fa01 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/StdString.h
[generic]                  526     883  59.6% -lh5- 21a5 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/StdVector.cpp
[generic]                  683    1185  57.6% -lh5- fe17 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/StdVector.h
[generic]                 1096    4670  23.5% -lh5- 9498 Nov 19  2001 TeddyCvsWork/Teddy/src/SysSupport/SysSupport.dsp
[generic]                 1164    2450  47.5% -lh5- 40a5 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/Timer.cpp
[generic]                  733    1302  56.3% -lh5- d720 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/Timer.h
[generic]                  702    1320  53.2% -lh5- 1c11 Nov 21  2001 TeddyCvsWork/Teddy/src/SysSupport/Types.h
[generic]                  574    9398   6.1% -lh5- 271e Nov 21  2001 TeddyCvsWork/Teddy/src/Teddy.dsw
[generic]                 5554  133632   4.2% -lh5- ca85 Nov 21  2001 TeddyCvsWork/Teddy/src/Teddy.opt
[generic]                   75      97  77.3% -lh5- 70aa Nov 21  2001 TeddyCvsWork/Teddy/src/TestBasic/CVS/Entries
[generic]                   20      20 100.0% -lh0- a675 Nov 21  2001 TeddyCvsWork/Teddy/src/TestBasic/CVS/Repository
[generic]                   59      59 100.0% -lh0- a24d Nov 21  2001 TeddyCvsWork/Teddy/src/TestBasic/CVS/Root
[generic]                 2498    6271  39.8% -lh5- bbb1 Nov 21  2001 TeddyCvsWork/Teddy/src/TestBasic/testbasic.cpp
[generic]                 1115    3967  28.1% -lh5- 4a77 Nov 21  2001 TeddyCvsWork/Teddy/src/TestBasic/TestBasic.dsp
[generic]                   75      99  75.8% -lh5- f139 Nov 21  2001 TeddyCvsWork/Teddy/src/TestEvents/CVS/Entries
[generic]                   21      21 100.0% -lh0- 2449 Nov 21  2001 TeddyCvsWork/Teddy/src/TestEvents/CVS/Repository
[generic]                   59      59 100.0% -lh0- a24d Nov 21  2001 TeddyCvsWork/Teddy/src/TestEvents/CVS/Root
[generic]                 6207   21688  28.6% -lh5- d5bc Nov 21  2001 TeddyCvsWork/Teddy/src/TestEvents/testevents.cpp
[generic]                 1135    4022  28.2% -lh5- b987 Nov 21  2001 TeddyCvsWork/Teddy/src/TestEvents/TestEvents.dsp
[generic]                  185     665  27.8% -lh5- 39fb Nov 21  2001 TeddyCvsWork/Teddy/src/TestManipulate/CVS/Entries
[generic]                   25      25 100.0% -lh0- b147 Nov 21  2001 TeddyCvsWork/Teddy/src/TestManipulate/CVS/Repository
[generic]                   59      59 100.0% -lh0- a24d Nov 21  2001 TeddyCvsWork/Teddy/src/TestManipulate/CVS/Root
[generic]                 1428    3889  36.7% -lh5- 2f2f Nov 21  2001 TeddyCvsWork/Teddy/src/TestManipulate/LSystem.cpp
[generic]                 1061    2253  47.1% -lh5- 6bb9 Nov 21  2001 TeddyCvsWork/Teddy/src/TestManipulate/LSystem.h
[generic]                  774    1414  54.7% -lh5- 171a Nov 21  2001 TeddyCvsWork/Teddy/src/TestManipulate/LSystemExpand.cpp
[generic]                 2838    8552  33.2% -lh5- c1db Nov 21  2001 TeddyCvsWork/Teddy/src/TestManipulate/LSystemGenerate.cpp
[generic]                 1294    2491  51.9% -lh5- 5a2a Nov 21  2001 TeddyCvsWork/Teddy/src/TestManipulate/main.cpp
[generic]                  811    1696  47.8% -lh5- 7898 Nov 21  2001 TeddyCvsWork/Teddy/src/TestManipulate/State.cpp
[generic]                  753    1417  53.1% -lh5- bb18 Nov 21  2001 TeddyCvsWork/Teddy/src/TestManipulate/State.h
[generic]                 3002    8638  34.8% -lh5- d843 Nov 21  2001 TeddyCvsWork/Teddy/src/TestManipulate/testmanipulate.cpp
[generic]                 1204    4889  24.6% -lh5- f784 Nov 21  2001 TeddyCvsWork/Teddy/src/TestManipulate/TestManipulate.dsp
[generic]                 1628    4214  38.6% -lh5- c0a5 Nov 21  2001 TeddyCvsWork/Teddy/src/TestManipulate/TestManipulate.h
[generic]                 1126    2945  38.2% -lh5- a153 Nov 21  2001 TeddyCvsWork/Teddy/src/TestManipulate/TestManipulateControls.cpp
[generic]                 1444    4370  33.0% -lh5- 7e0f Nov 21  2001 TeddyCvsWork/Teddy/src/TestManipulate/TestManipulateEvents.cpp
[generic]                  795    1429  55.6% -lh5- f686 Nov 21  2001 TeddyCvsWork/Teddy/src/TestManipulate/Timer.cpp
[generic]                  689    1225  56.2% -lh5- 845c Nov 21  2001 TeddyCvsWork/Teddy/src/TestManipulate/Timer.h
[generic]                   76     101  75.2% -lh5- 8f27 Nov 21  2001 TeddyCvsWork/Teddy/src/TestObjects/CVS/Entries
[generic]                   22      22 100.0% -lh0- 5483 Nov 21  2001 TeddyCvsWork/Teddy/src/TestObjects/CVS/Repository
[generic]                   59      59 100.0% -lh0- a24d Nov 21  2001 TeddyCvsWork/Teddy/src/TestObjects/CVS/Root
[generic]                 3597   11524  31.2% -lh5- 6243 Nov 21  2001 TeddyCvsWork/Teddy/src/TestObjects/testobjects.cpp
[generic]                 1126    4037  27.9% -lh5- 245f Nov 21  2001 TeddyCvsWork/Teddy/src/TestObjects/TestObjects.dsp
[generic]                  303    1810  16.7% -lh5- d63c Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/CVS/Entries
[generic]                   17      17 100.0% -lh0- 03b3 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/CVS/Repository
[generic]                   59      59 100.0% -lh0- a24d Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/CVS/Root
[generic]                 2098    9752  21.5% -lh5- e247 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_api.c
[generic]                 1102    4366  25.2% -lh5- ee78 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_arrays.c
[generic]                  322     687  46.9% -lh5- 101c Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_clear.c
[generic]                 3450   12302  28.0% -lh5- 53d2 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_clip.c
[generic]                  215     362  59.4% -lh5- 54b8 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_error.c
[generic]                  687    1603  42.9% -lh5- adc5 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_get.c
[generic]                12886   71287  18.1% -lh5- 7449 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_gl.h
[generic]                  981    2757  35.6% -lh5- 725a Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_image_util.c
[generic]                 1585    4543  34.9% -lh5- ca80 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_init.c
[generic]                 2408    7524  32.0% -lh5- 809f Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_light.c
[generic]                 1517    4458  34.0% -lh5- 51c0 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_list.c
[generic]                 1643    5251  31.3% -lh5- 903f Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_matrix.c
[generic]                 1104    3128  35.3% -lh5- 37c3 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_misc.c
[generic]                  543    1365  39.8% -lh5- 5e92 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_msghandling.c
[generic]                  177     360  49.2% -lh5- 61a9 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_msghandling.h
[generic]                  544    1649  33.0% -lh5- 6797 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_opinfo.h
[generic]                  740    2043  36.2% -lh5- 4a1b Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_oscontext.c
[generic]                  314     761  41.3% -lh5- 06bd Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_oscontext.h
[generic]                 1313    3496  37.6% -lh5- 14e9 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_sdlswgl.c
[generic]                  297     665  44.7% -lh5- 5470 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_sdlswgl.h
[generic]                  746    2393  31.2% -lh5- 4113 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_select.c
[generic]                  385     759  50.7% -lh5- e87f Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_specbuf.h
[generic]                  655    1525  43.0% -lh5- 4706 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_specbuffer.c
[generic]                 1465    4335  33.8% -lh5- f510 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_texture.c
[generic]                 2508    9118  27.5% -lh5- 8f4b Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_vertex.c
[generic]                 2104    7841  26.8% -lh5- e7f9 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_zbuffer.c
[generic]                 1146    4058  28.2% -lh5- 7661 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_zbuffer.h
[generic]                 1519    3544  42.9% -lh5- 3044 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_zdither.c
[generic]                  374     859  43.5% -lh5- 273f Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_zfeatures.h
[generic]                 2941    9486  31.0% -lh5- d666 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_zgl.h
[generic]                  548    1865  29.4% -lh5- e4b9 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_zline.c
[generic]                  804    2049  39.2% -lh5- def0 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_zline.h
[generic]                 1789    5754  31.1% -lh5- 3566 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_zmath.c
[generic]                  414    1274  32.5% -lh5- dbd4 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_zmath.h
[generic]                 1675    8392  20.0% -lh5- 3f1f Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_ztriangle.c
[generic]                 1668    5925  28.2% -lh5- 627c Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/gl_ztriangle.h
[generic]                  527    1012  52.1% -lh5- 6563 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/LICENCE
[generic]                 1778    4519  39.3% -lh5- 9a06 Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/LIMITATIONS
[generic]                 2396    5242  45.7% -lh5- 8e8c Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/README
[generic]                  545     940  58.0% -lh5- b52d Nov 21  2001 TeddyCvsWork/Teddy/src/TinyGL/Readme.txt
[generic]                 1174    5436  21.6% -lh5- 8a3a Nov 16  2001 TeddyCvsWork/Teddy/src/TinyGL/TinyGL.dsp
[generic]                   75      93  80.6% -lh5- fd5e Nov 21  2001 TeddyCvsWork/Teddy/src/VCconfig/CVS/Entries
[generic]                   19      19 100.0% -lh0- f77f Nov 21  2001 TeddyCvsWork/Teddy/src/VCconfig/CVS/Repository
[generic]                   59      59 100.0% -lh0- a24d Nov 21  2001 TeddyCvsWork/Teddy/src/VCconfig/CVS/Root
[generic]                 1248    5153  24.2% -lh5- 842a Nov 21  2001 TeddyCvsWork/Teddy/src/VCconfig/VCconfig.dsp
[generic]                  213     500  42.6% -lh5- 9eab Nov 21  2001 TeddyCvsWork/Teddy/src/VCconfig/vcconfig.h
[generic]                 6973   16629  41.9% -lh5- 708c Nov 21  2001 TeddyCvsWork/Teddy/wishlist.txt
---------- ----------- ------- ------- ------ ---------- ------------ -------------
 Total       471 files  649826 2142169  30.3%            Mar 31  2002
Page generated in 0.02 seconds
Aminet © 1992-2024 Urban Müller and the Aminet team. Aminet contact address: <aminetaminet net>