Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/SelectionAction/Atoms/NotAllAtomsInsideCuboidAction.cpp

    rbe21fa rf10b0c  
    4646Action::state_ptr SelectionNotAllAtomsInsideCuboidAction::performCall() {
    4747  RealSpaceMatrix RotationMatrix;
    48   RotationMatrix.setRotation(params.Xangle, params.Yangle, params.Zangle);
     48  RotationMatrix.setRotation(params.Xangle.get(), params.Yangle.get(), params.Zangle.get());
    4949
    50   LOG(1, "Unselecting all atoms inside a rotated " << RotationMatrix << " cuboid at " << params.position << " and extension of " << params.extension << ".");
    51   Shape s = translate(transform(stretch(Cuboid(),params.extension),RotationMatrix),params.position);
     50  LOG(1, "Unselecting all atoms inside a rotated " << RotationMatrix << " cuboid at " << params.position.get() << " and extension of " << params.extension.get() << ".");
     51  Shape s = translate(transform(stretch(Cuboid(),params.extension.get()),RotationMatrix),params.position.get());
    5252  std::vector<atom *> unselectedAtoms = World::getInstance().getAllAtoms((!AtomsBySelection()) && AtomsByShape(s));
    5353  World::getInstance().unselectAllAtoms(AtomsByShape(s));
Note: See TracChangeset for help on using the changeset viewer.