Changeset 6dc3fe for src/Tesselation/unittests
- Timestamp:
- Mar 28, 2012, 1:25:07 PM (13 years ago)
- 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)
- Location:
- src/Tesselation/unittests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Tesselation/unittests/Tesselation_BoundaryTriangleUnitTest.cpp
r70a0ba r6dc3fe 31 31 #include "Atom/TesselPoint.hpp" 32 32 #include "LinearAlgebra/Plane.hpp" 33 #include "LinearAlgebra/RealSpaceMatrix.hpp" 33 34 #include "LinearAlgebra/VectorSet.hpp" 34 35 #include "Tesselation/BoundaryPointSet.hpp" … … 98 99 logger::purgeInstance(); 99 100 errorLogger::purgeInstance(); 100 } ;101 } 101 102 102 103 /** UnitTest for Tesselation::IsInsideTriangle() … … 214 215 } 215 216 217 /** UnitTest for Tesselation::GetClosestPointInsideTriangle() 218 * 219 * We check whether this function always returns a intersection inside the 220 * triangle. 221 * 222 */ 223 void 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 216 270 /** UnitTest for Tesselation::IsInnerPoint() 217 271 */ -
src/Tesselation/unittests/Tesselation_BoundaryTriangleUnitTest.hpp
r70a0ba r6dc3fe 34 34 CPPUNIT_TEST ( IsInsideTriangleTest ); 35 35 CPPUNIT_TEST ( IsInsideTriangle_specificTest ); 36 CPPUNIT_TEST ( GetClosestPointInsideTriangleTest ); 36 37 CPPUNIT_TEST ( GetClosestPointOnPlaneTest ); 37 38 CPPUNIT_TEST ( GetClosestPointOffPlaneTest ); … … 43 44 void IsInsideTriangleTest(); 44 45 void IsInsideTriangle_specificTest(); 46 void GetClosestPointInsideTriangleTest(); 45 47 void GetClosestPointOnPlaneTest(); 46 48 void GetClosestPointOffPlaneTest();
Note:
See TracChangeset
for help on using the changeset viewer.