- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/MoleculeAction/RotateAroundOriginByAngleAction.cpp
r2204b0 r4a06d6 52 52 {} 53 53 54 void MoleculeRotateAroundOriginByAngle( double angle) {54 void MoleculeRotateAroundOriginByAngle(const Vector &Axis, double angle) { 55 55 ValueStorage::getInstance().setCurrentValue(MoleculeRotateAroundOriginByAngleAction::NAME, angle); 56 ValueStorage::getInstance().setCurrentValue("position", Axis); 56 57 ActionRegistry::getInstance().getActionByName(MoleculeRotateAroundOriginByAngleAction::NAME)->call(Action::NonInteractive); 57 58 }; … … 82 83 alpha *= M_PI/180.; 83 84 85 // Creation Line that is the rotation axis 86 Line RotationAxis(Vector(0.,0.,0.), Axis); 87 84 88 DoLog(0) && (Log() << Verbose(0) << "Rotate around origin by " << alpha << " radian, axis from origin to " << Axis << "." << endl); 85 89 for (World::MoleculeSelectionIterator iter = World::getInstance().beginMoleculeSelection(); iter != World::getInstance().endMoleculeSelection(); ++iter) { 86 90 mol = iter->second; 87 91 88 // Creation Line that is the rotation axis89 Line RotationAxis(Vector(0.,0.,0.), Axis);90 91 92 for (molecule::iterator iter = mol->begin(); iter != mol->end(); ++iter) { 92 93 *((*iter)->node) = RotationAxis.rotateVector(*((*iter)->node), alpha); 93 94 } 94 DoLog(0) && (Log() << Verbose(0) << "done." << endl);95 95 } 96 DoLog(0) && (Log() << Verbose(0) << "done." << endl); 96 97 return Action::state_ptr(new MoleculeRotateAroundOriginByAngleState(World::getInstance().getSelectedMolecules(), Axis, alpha)); 97 98 }
Note:
See TracChangeset
for help on using the changeset viewer.