| 323 | // * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * // |
| 324 | |
| 325 | void Foam::coordinateSystem::init(const dictionary& rhs) |
| 326 | { |
| 327 | rhs.lookup("origin") >> origin_; |
| 328 | note_.clear(); |
| 329 | rhs.readIfPresent("note", note_); |
| 330 | R_.reset(coordinateRotation::New(rhs.subDict("coordinateRotation")).ptr()); |
| 331 | } |
| 332 | |
| 333 | |
| 334 | void Foam::coordinateSystem::init |
no test coverage detected