Changeset 11740 for code/branches/Presentation_HS17_merge
- Timestamp:
- Feb 12, 2018, 12:20:18 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/Presentation_HS17_merge/src/modules/asteroidmining/SpicedAsteroidBelt.cc
r11739 r11740 86 86 void SpicedAsteroidBelt::create(){ 87 87 88 float myPi = 3.1415927410125732421875; //pi; // Math.pi ist statisch oder so.89 float width = this->radius1 - this->radius0; if(width<0){width = -width;} // predefined abs?88 float myPi = math::pi; 89 float width = fabs(this->radius1 - this->radius0); 90 90 float radius = (this->radius1 + this->radius0) / 2.0f; 91 91 int segmentCount = (int)roundf(this->count / this->segments);
Note: See TracChangeset
for help on using the changeset viewer.