for (; anIt != aList.end(); ++anIt) {
if (anIt != aList.begin())
theDumper << ", ";
- theDumper << theDumper.name((*anIt)->feature(), false);
+ theDumper << (*anIt)->feature();
}
theDumper << "] = " << theDumper.name(aBase) << ".mirrored()" << std::endl;
for (; anIt != aList.end(); ++anIt) {
if (anIt != aList.begin())
theDumper << ", ";
- theDumper << theDumper.name((*anIt)->feature(), false);
+ theDumper << (*anIt)->feature();
}
theDumper << "] = " << theDumper.name(aBase) << ".rotated()" << std::endl;
for (; anIt != aList.end(); ++anIt) {
if (anIt != aList.begin())
theDumper << ", ";
- theDumper << theDumper.name((*anIt)->feature(), false);
+ theDumper << (*anIt)->feature();
}
theDumper << "] = " << theDumper.name(aBase) << ".translated()" << std::endl;