| 113 |
|
|
| 114 |
|
void writeFrame(std::ostream& outStream); |
| 115 |
|
void clear() {frame.clear();} |
| 116 |
< |
|
| 116 |
> |
void setPosOnly(bool posOnly){posOnly_ = posOnly;} |
| 117 |
|
protected: |
| 118 |
|
void internalVisit(StuntDouble* sd); |
| 119 |
|
bool isSelected(StuntDouble* sd); |
| 120 |
|
|
| 121 |
|
private: |
| 122 |
+ |
std::string trimmedName(const std::string& atomType); |
| 123 |
+ |
std::string baseTypeName(AtomType* at); |
| 124 |
+ |
|
| 125 |
|
SimInfo* info; |
| 126 |
|
SelectionManager seleMan; |
| 127 |
|
SelectionEvaluator evaluator; |
| 128 |
|
std::vector<std::string> frame; |
| 129 |
< |
|
| 129 |
> |
bool posOnly_; |
| 130 |
|
}; |
| 131 |
|
|
| 132 |
|
|