Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/MoleculeAction/RotateAroundOriginByAngleAction.cpp

    r2204b0 r4a06d6  
    5252{}
    5353
    54 void MoleculeRotateAroundOriginByAngle(double angle) {
     54void MoleculeRotateAroundOriginByAngle(const Vector &Axis, double angle) {
    5555  ValueStorage::getInstance().setCurrentValue(MoleculeRotateAroundOriginByAngleAction::NAME, angle);
     56  ValueStorage::getInstance().setCurrentValue("position", Axis);
    5657  ActionRegistry::getInstance().getActionByName(MoleculeRotateAroundOriginByAngleAction::NAME)->call(Action::NonInteractive);
    5758};
     
    8283  alpha *= M_PI/180.;
    8384
     85  // Creation Line that is the rotation axis
     86  Line RotationAxis(Vector(0.,0.,0.), Axis);
     87
    8488  DoLog(0) && (Log() << Verbose(0) << "Rotate around origin by " << alpha << " radian, axis from origin to " << Axis << "." << endl);
    8589  for (World::MoleculeSelectionIterator iter = World::getInstance().beginMoleculeSelection(); iter != World::getInstance().endMoleculeSelection(); ++iter) {
    8690    mol = iter->second;
    8791
    88     // Creation Line that is the rotation axis
    89     Line RotationAxis(Vector(0.,0.,0.), Axis);
    90 
    9192    for (molecule::iterator iter = mol->begin(); iter != mol->end(); ++iter) {
    9293      *((*iter)->node) = RotationAxis.rotateVector(*((*iter)->node), alpha);
    9394    }
    94     DoLog(0) && (Log() << Verbose(0) << "done." << endl);
    9595  }
     96  DoLog(0) && (Log() << Verbose(0) << "done." << endl);
    9697  return Action::state_ptr(new MoleculeRotateAroundOriginByAngleState(World::getInstance().getSelectedMolecules(), Axis, alpha));
    9798}
Note: See TracChangeset for help on using the changeset viewer.