Changeset f4a863


Ignore:
Timestamp:
Sep 26, 2012, 5:24:33 PM (13 years ago)
Author:
Frederik Heber <heber@…>
Branches:
Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
Children:
5d4179f
Parents:
9e2737
git-author:
Gregor Bollerhey <bollerhe@…> (06/22/12 15:41:24)
git-committer:
Frederik Heber <heber@…> (09/26/12 17:24:33)
Message:

Implemented getLineIntersections.

Needs testing!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Shapes/BaseShapes.cpp

    r9e2737 rf4a863  
    8383
    8484LineSegmentSet Cylinder_impl::getLineIntersections(const Line &line) const {
    85     // TODO
    86         ASSERT(0, "Cylinder_impl::getLineIntersections - not implemented.");
     85    const Vector origin = line.getOrigin();
     86    const Vector direction = line.getDirection();
     87   
     88    const Vector e(direction[0], direction[1], 0.0);
     89    const Vector f(origin[0], origin[1], 0.0);
     90    const double A = e.ScalarProduct(e);
     91    const double B = 2.0*e.ScalarProduct(f);
     92    const double C = f.ScalarProduct(f) - 1.0;
     93
     94    std::vector<double> solutions;
     95
     96    // Common routine to solve quadratic quations, anywhere?
     97    const double neg_p_half = -B/(2.0*A);
     98    const double q = C/A;
     99    const double radicant = neg_p_half*neg_p_half-q;
     100
     101    if (radicant > 0.0) {
     102        const double root = sqrt(radicant);
     103        solutions.push_back(neg_p_half+root);
     104        const double sln2 = neg_p_half-root;
     105        if (sln2 != solutions.back())
     106            solutions.push_back(sln2);
     107    }
     108
     109    // Now get parameter for intersection with z-Planes.
     110    const double origin_z = origin[2];
     111    const double dir_z = direction[2];
     112
     113    if (dir_z != 0.0) {
     114        solutions.push_back((-1.0-origin_z)/dir_z);
     115        solutions.push_back((1.0-origin_z)/dir_z);
     116    }
     117
     118    // Calculate actual vectors from obtained parameters and check,
     119    // if they are actual intersections.
     120    std::vector<Vector> intersections;
     121
     122    for(unsigned int i=0; i<solutions.size(); i++) {
     123        const Vector check_me(origin + direction*solutions[i]);
     124        if (isOnSurface(check_me))
     125            intersections.push_back(check_me);
     126    }
     127
     128    LineSegmentSet result(line);
     129    if (intersections.size()==2)
     130        result.insert(LineSegment(intersections[0], intersections[1]));
     131    return result;
    87132}
    88133
Note: See TracChangeset for help on using the changeset viewer.