Changeset 450 for code/branches/objecthierarchy/src/orxonox/objects
- Timestamp:
- Dec 10, 2007, 3:40:55 AM (17 years ago)
- Location:
- code/branches/objecthierarchy/src/orxonox/objects
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy/src/orxonox/objects/test3.cc
r434 r450 20 20 SetConfigValue(value_bool_, true); 21 21 SetConfigValue(value_string_, "Dies ist ein Test"); 22 SetConfigValue(value_vector2_, Vector2(101, 202)); 22 23 SetConfigValue(value_vector3_, Vector3(13, 26, 39)); 23 24 SetConfigValue(value_colourvalue_, ColourValue(1.0, 0.5, 0.25, 0.887)); … … 28 29 } 29 30 31 #include <fstream> 30 32 void Test3::configOutput() 31 33 { … … 34 36 std::cout << this->value_bool_ << std::endl; 35 37 std::cout << this->value_string_ << std::endl; 38 std::cout << this->value_vector2_ << std::endl; 36 39 std::cout << this->value_vector3_ << std::endl; 37 40 std::cout << this->value_colourvalue_ << std::endl; -
code/branches/objecthierarchy/src/orxonox/objects/test3.h
r434 r450 27 27 bool value_bool_; 28 28 std::string value_string_; 29 Vector2 value_vector2_; 29 30 Vector3 value_vector3_; 30 31 ColourValue value_colourvalue_;
Note: See TracChangeset
for help on using the changeset viewer.