Ignore:
File:
1 edited

Legend:

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

    rbe21fa rf10b0c  
    4444/** =========== define the function ====================== */
    4545Action::state_ptr SelectionNotAllAtomsInsideSphereAction::performCall() {
    46   LOG(1, "Unselecting all atoms inside a sphere at " << params.position << " with radius " << params.radius << ".");
    47   Shape s = translate(resize(Sphere(),params.radius),params.position);
     46  LOG(1, "Unselecting all atoms inside a sphere at " << params.position.get() << " with radius " << params.radius.get() << ".");
     47  Shape s = translate(resize(Sphere(),params.radius.get()),params.position.get());
    4848  std::vector<atom *> unselectedAtoms = World::getInstance().getAllAtoms((!AtomsBySelection()) && AtomsByShape(s));
    4949  World::getInstance().unselectAllAtoms(AtomsByShape(s));
Note: See TracChangeset for help on using the changeset viewer.