Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4655 in orxonox.OLD for orxonox/trunk


Ignore:
Timestamp:
Jun 18, 2005, 6:57:55 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: removed some unnecessary stuff

Location:
orxonox/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/scripts/gtk-config.osXframework

    r4097 r4655  
    1313usage()
    1414{
    15         cat <<EOF
     15        cat <<EOF
    1616Usage: gtk-config [OPTIONS] [LIBRARIES]
    1717Options:
    18         [--prefix[=DIR]]
    19         [--exec-prefix[=DIR]]
    20         [--version]
    21         [--libs]
    22         [--cflags]
     18        [--prefix[=DIR]]
     19        [--exec-prefix[=DIR]]
     20        [--version]
     21        [--libs]
     22        [--cflags]
    2323Libraries:
    24         gtk
    25         gthread
     24        gtk
     25        gthread
    2626EOF
    27         exit $1
     27        exit $1
    2828}
    2929
    3030if test $# -eq 0; then
    31         usage 1 1>&2
     31        usage 1 1>&2
    3232fi
    3333
     
    8080
    8181if test "$echo_prefix" = "yes"; then
    82         echo $prefix
     82        echo $prefix
    8383fi
    8484
    8585if test "$echo_exec_prefix" = "yes"; then
    86         echo $exec_prefix
     86        echo $exec_prefix
    8787fi
    8888
  • orxonox/trunk/scripts/orxodox.checkFiles.pl

    r4462 r4655  
    11#!/usr/bin/perl
    2 ########################################################################## 
    3 #   orxonox - the future of 3D-vertical-scrollers                        #
    4 #                                                                        #
    5 #   Copyright (C) 2004 orx                                              #
    6 #                                                                        #
     2##########################################################################
     3#   orxonox - the future of 3D-vertical-scrollers                        #
     4#                                                                        #
     5#   Copyright (C) 2004 orx                                              #
     6#                                                                        #
    77#   This program is free software; you can redistribute it and/or modify #
    88#   it under the terms of the GNU General Public License as published by #
    99#   the Free Software Foundation; either version 2, or (at your option)  #
    10 #   any later version.                                                  #
    11 #                                                                        #
    12 #   ### File Specific:                                                  #
    13 #   main-programmer: Benjamin Grauer                                    #
    14 #   co-programmer: ...                                                  #
    15 #                                                                        #
     10#   any later version.                                                  #
     11#                                                                        #
     12#   ### File Specific:                                                  #
     13#   main-programmer: Benjamin Grauer                                    #
     14#   co-programmer: ...                                                  #
     15#                                                                        #
    1616#   This Script is for parsing single or multiple files for their        #
    1717#   doxygeb-tags, and outputs the warnings and errors, but prehibits     #
     
    4444    if (-e $inputFile)
    4545      {
    46         $processFiles = "$processFiles $inputFile";
    47         $numberOfFiles++;
    48         print "found .h ";
     46        $processFiles = "$processFiles $inputFile";
     47        $numberOfFiles++;
     48        print "found .h ";
    4949      }
    5050    $inputFile =~ s/\.h$/\.cc/;
    5151    if (-e $inputFile)
    5252      {
    53         $processFiles = "$processFiles $inputFile";
    54         $numberOfFiles++;
    55         print "...found .cc ";
     53        $processFiles = "$processFiles $inputFile";
     54        $numberOfFiles++;
     55        print "...found .cc ";
    5656      }
    5757    if ($tmpNumber == $numberOfFiles) {print "no matching files found";}
  • orxonox/trunk/src/lib/particles/particle_system.cc

    r4654 r4655  
    9595  this->setType(PARTICLE_DEFAULT_TYPE, 1);
    9696  ParticleEngine::getInstance()->addSystem(this);
    97 
    98   colorAnim[0].setName("test"); //!< \todo delete this line
    9997}
    10098
  • orxonox/trunk/src/lib/particles/quick_animation.cc

    r4654 r4655  
    6767void QuickAnimation::addEntry(float position, float value)
    6868{
    69   if (this->getName())
    70   {
    71     printf("ADDED KEYFRAME %d\n", this->count);
    72   }
    73 
    7469  // create the new KeyFrame
    7570  QuickKeyFrame* newKey = new QuickKeyFrame;
     
    185180float QuickAnimation::getValue(float position)
    186181{
    187   int counter = 0;
    188182  while (true)
    189183  {
    190     counter++;
    191     if (counter >= 10)
    192     {
    193       printf("FUCK!!! %f\n", position);
    194       this->debug();
    195       break;
    196 
    197     }
    198184    // if we have a match
    199185    if (likely(this->current->position <= position && this->current->next->position >= position))
Note: See TracChangeset for help on using the changeset viewer.