Changeset 7874 in orxonox.OLD for branches/gui/src/lib/graphics/render2D/element_2d.cc
- Timestamp:
- May 26, 2006, 3:54:11 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/src/lib/graphics/render2D/element_2d.cc
r7846 r7874 62 62 this->toCoordinate = NULL; 63 63 this->toDirection = NULL; 64 65 this->size = Vector2D(0,0); 64 66 this->toSize = NULL; 65 this->setSize2D(1, 1);66 67 67 68 … … 847 848 if (unlikely(this->toSize != NULL)) 848 849 { 849 Vector2D shiftSize = (*this->toSize - Vector2D(this->sizeX, this->sizeY)) *fabsf(dt)*bias;850 Vector2D shiftSize = (*this->toSize - this->size) *fabsf(dt)*bias; 850 851 if (likely((shiftSize).len() >= .001))//PNODE_ITERATION_DELTA)) 851 852 { 852 this->sizeX += shiftSize.x; 853 this->sizeY += shiftSize.y; 853 this->size += shiftSize; 854 854 } 855 855 else
Note: See TracChangeset
for help on using the changeset viewer.