- Timestamp:
- Aug 18, 2005, 2:13:20 PM (19 years ago)
- Location:
- orxonox/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/ChangeLog
r5065 r5066 1 2005-08-16 orxonox <info@orxonox.ethz.ch> 2 Realesed 0.3.1_alpha, on the grounds of collision detection 3 Working on a Windows-Realease... 4 1 5 2005-08-16 Patrick Boenzli <boenzli@orxonox.ethz.ch> 2 6 Integrated the collision detection into the orxonox framework. It 3 bases on object-oriented-bounding boxes. The tree is spawned out of 4 7 bases on object-oriented-bounding boxes. The tree is spawned out of 8 any polygon soup. 5 9 6 10 2005-08-15 Benjamin Grauer <bensch@orxonox.ethz.ch> … … 22 26 2005-07-23 Patrick Boenzli <boenzli@orxonox.ethz.ch> 23 27 Implemented a spatial separation algorithm that separates any polygon 24 25 28 soup into a quadtree. The tree leafs are hold in a hash table for 29 fast lookup. 26 30 27 31 2005-07-14 Benjamin Grauer <bensch@orxonox.ethz.ch> -
orxonox/trunk/configure
r4909 r5066 1 1 #! /bin/sh 2 2 # Guess values for system-dependent variables and create Makefiles. 3 # Generated by GNU Autoconf 2.59 for orxonox 0.3. 0_alpha.3 # Generated by GNU Autoconf 2.59 for orxonox 0.3.1_alpha. 4 4 # 5 5 # Report bugs to <orxonox-dev at mail.datacore.ch>. … … 270 270 PACKAGE_NAME='orxonox' 271 271 PACKAGE_TARNAME='orxonox' 272 PACKAGE_VERSION='0.3. 0_alpha'273 PACKAGE_STRING='orxonox 0.3. 0_alpha'272 PACKAGE_VERSION='0.3.1_alpha' 273 PACKAGE_STRING='orxonox 0.3.1_alpha' 274 274 PACKAGE_BUGREPORT='orxonox-dev at mail.datacore.ch' 275 275 … … 789 789 # This message is too long to be a string in the A/UX 3.1 sh. 790 790 cat <<_ACEOF 791 \`configure' configures orxonox 0.3. 0_alpha to adapt to many kinds of systems.791 \`configure' configures orxonox 0.3.1_alpha to adapt to many kinds of systems. 792 792 793 793 Usage: $0 [OPTION]... [VAR=VALUE]... … … 856 856 if test -n "$ac_init_help"; then 857 857 case $ac_init_help in 858 short | recursive ) echo "Configuration of orxonox 0.3. 0_alpha:";;858 short | recursive ) echo "Configuration of orxonox 0.3.1_alpha:";; 859 859 esac 860 860 cat <<\_ACEOF … … 991 991 if $ac_init_version; then 992 992 cat <<\_ACEOF 993 orxonox configure 0.3. 0_alpha993 orxonox configure 0.3.1_alpha 994 994 generated by GNU Autoconf 2.59 995 995 … … 1005 1005 running configure, to aid debugging if configure makes a mistake. 1006 1006 1007 It was created by orxonox $as_me 0.3. 0_alpha, which was1007 It was created by orxonox $as_me 0.3.1_alpha, which was 1008 1008 generated by GNU Autoconf 2.59. Invocation command line was 1009 1009 … … 1725 1725 # Define the identity of the package. 1726 1726 PACKAGE='orxonox' 1727 VERSION='0.3. 0_alpha'1727 VERSION='0.3.1_alpha' 1728 1728 1729 1729 … … 9867 9867 cat >&5 <<_CSEOF 9868 9868 9869 This file was extended by orxonox $as_me 0.3. 0_alpha, which was9869 This file was extended by orxonox $as_me 0.3.1_alpha, which was 9870 9870 generated by GNU Autoconf 2.59. Invocation command line was 9871 9871 … … 9930 9930 cat >>$CONFIG_STATUS <<_ACEOF 9931 9931 ac_cs_version="\\ 9932 orxonox config.status 0.3. 0_alpha9932 orxonox config.status 0.3.1_alpha 9933 9933 configured by $0, generated by GNU Autoconf 2.59, 9934 9934 with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" -
orxonox/trunk/configure.ac
r4944 r5066 25 25 ######################### 26 26 AC_PREREQ(2.56) 27 AC_INIT(orxonox, 0.3. 0_alpha, [orxonox-dev at mail.datacore.ch])27 AC_INIT(orxonox, 0.3.1_alpha, [orxonox-dev at mail.datacore.ch]) 28 28 29 29 ## Detect the canonical host and target build environment. -
orxonox/trunk/src/world_entities/world_entity.cc
r5065 r5066 72 72 if (fileName != NULL) 73 73 { 74 PRINTF(4)(" loading %s\n", fileName);74 PRINTF(4)("fetching %s\n", fileName); 75 75 if (scaling == 1.0) 76 76 this->model = (Model*)ResourceManager::getInstance()->load(fileName, OBJ, RP_CAMPAIGN);
Note: See TracChangeset
for help on using the changeset viewer.