Lines Matching defs:population
165 , population(0)
271 sp_event_context_read(this, "population");
317 } else if (path == "population") {
318 this->population = 0.01 * CLAMP(val.getInt(10), 1, 100);
390 return pressure * tc->population;
871 double population,
927 if(_fid <= population)
1024 if (_fid <= population) { // Rules the population of objects sprayed
1064 if(_fid <= population) {
1157 double population = get_population(tc);
1158 if (radius == 0 || population == 0) {
1190 , population
1324 temp = this->population;
1325 this->population = 1.0;
1326 desktop->setToolboxAdjustmentValue("population", this->population * 100);
1347 this->population = temp;
1348 desktop->setToolboxAdjustmentValue("population", this->population * 100);
1423 this->population += 0.01;
1424 if (this->population > 1.0) {
1425 this->population = 1.0;
1427 desktop->setToolboxAdjustmentValue("spray-population", this->population * 100);
1434 this->population -= 0.01;
1435 if (this->population < 0.0) {
1436 this->population = 0.0;
1438 desktop->setToolboxAdjustmentValue("spray-population", this->population * 100);