Ignore:
Timestamp:
Mar 28, 2012, 1:25:07 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:
c27ce7
Parents:
70a0ba
git-author:
Frederik Heber <heber@…> (03/14/12 20:36:47)
git-committer:
Frederik Heber <heber@…> (03/28/12 13:25:07)
Message:

Enhanced Tesselation_BoundaryTriangleUnitTest by check on ::GetClosestPointInsideTriangle().

  • checking on rotated triangle as well.
Location:
src/Tesselation/unittests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/Tesselation/unittests/Tesselation_BoundaryTriangleUnitTest.cpp

    r70a0ba r6dc3fe  
    3131#include "Atom/TesselPoint.hpp"
    3232#include "LinearAlgebra/Plane.hpp"
     33#include "LinearAlgebra/RealSpaceMatrix.hpp"
    3334#include "LinearAlgebra/VectorSet.hpp"
    3435#include "Tesselation/BoundaryPointSet.hpp"
     
    9899  logger::purgeInstance();
    99100  errorLogger::purgeInstance();
    100 };
     101}
    101102
    102103/** UnitTest for Tesselation::IsInsideTriangle()
     
    214215}
    215216
     217/** UnitTest for Tesselation::GetClosestPointInsideTriangle()
     218 *
     219 * We check whether this function always returns a intersection inside the
     220 * triangle.
     221 *
     222 */
     223void TesselationBoundaryTriangleTest::GetClosestPointInsideTriangleTest()
     224{
     225  Vector TestIntersection;
     226
     227  {
     228    // march through a cube mesh on triangle in xy plane
     229    double n[3];
     230    const double boundary = 4.;
     231    const double step = 1.;
     232    // go through the cube and check each point
     233    for (n[0] = -boundary; n[0] <= boundary; n[0]+=step)
     234      for (n[1] = -boundary; n[1] <= boundary; n[1]+=step)
     235        for (n[2] = -boundary; n[2] <= boundary; n[2]+=step) {
     236          const Vector testPoint(n[0], n[1], n[2]);
     237          triangle->GetClosestPointInsideTriangle(testPoint, TestIntersection);
     238          CPPUNIT_ASSERT( triangle->IsInsideTriangle( TestIntersection ));
     239        }
     240  }
     241
     242  delete triangle;
     243  // create better triangle;
     244  VECTORSET(std::vector) Vectors;
     245  Vectors.push_back( Vector(0., 0., 0.) );
     246  Vectors.push_back( Vector(0., 1., 0.) );
     247  Vectors.push_back( Vector(1., 0., 0.) );
     248  RealSpaceMatrix M;
     249  M.setRotation(M_PI/3., M_PI/4., 2.*M_PI/3.);
     250  Vectors.transform(M);
     251  createTriangle(Vectors);
     252
     253  {
     254    // march through a cube mesh on rotated triangle
     255    double n[3];
     256    const double boundary = 4.;
     257    const double step = 1.;
     258    // go through the cube and check each point
     259    for (n[0] = -boundary; n[0] <= boundary; n[0]+=step)
     260      for (n[1] = -boundary; n[1] <= boundary; n[1]+=step)
     261        for (n[2] = -boundary; n[2] <= boundary; n[2]+=step) {
     262          const Vector testPoint(n[0], n[1], n[2]);
     263          triangle->GetClosestPointInsideTriangle(testPoint, TestIntersection);
     264          CPPUNIT_ASSERT( triangle->IsInsideTriangle( TestIntersection ));
     265        }
     266  }
     267}
     268
     269
    216270/** UnitTest for Tesselation::IsInnerPoint()
    217271 */
  • src/Tesselation/unittests/Tesselation_BoundaryTriangleUnitTest.hpp

    r70a0ba r6dc3fe  
    3434    CPPUNIT_TEST ( IsInsideTriangleTest );
    3535    CPPUNIT_TEST ( IsInsideTriangle_specificTest );
     36    CPPUNIT_TEST ( GetClosestPointInsideTriangleTest );
    3637    CPPUNIT_TEST ( GetClosestPointOnPlaneTest );
    3738    CPPUNIT_TEST ( GetClosestPointOffPlaneTest );
     
    4344      void IsInsideTriangleTest();
    4445      void IsInsideTriangle_specificTest();
     46      void GetClosestPointInsideTriangleTest();
    4547      void GetClosestPointOnPlaneTest();
    4648      void GetClosestPointOffPlaneTest();
Note: See TracChangeset for help on using the changeset viewer.