Changeset 2a3124 for src/Tesselation
- Timestamp:
- Apr 3, 2012, 8:00:45 AM (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:
- ce7bfd
- Parents:
- e791dc
- git-author:
- Frederik Heber <heber@…> (03/13/12 17:35:01)
- git-committer:
- Frederik Heber <heber@…> (04/03/12 08:00:45)
- Location:
- src/Tesselation
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Tesselation/BoundaryTriangleSet.cpp
re791dc r2a3124 46 46 Nr(-1) 47 47 { 48 Info FunctionInfo(__func__);48 //Info FunctionInfo(__func__); 49 49 for (int i = 0; i < 3; i++) { 50 50 endpoints[i] = NULL; … … 61 61 Nr(number) 62 62 { 63 Info FunctionInfo(__func__);63 //Info FunctionInfo(__func__); 64 64 // set number 65 65 // set lines … … 95 95 BoundaryTriangleSet::~BoundaryTriangleSet() 96 96 { 97 Info FunctionInfo(__func__);97 //Info FunctionInfo(__func__); 98 98 for (int i = 0; i < 3; i++) { 99 99 if (lines[i] != NULL) { … … 135 135 void BoundaryTriangleSet::GetNormalVector(const Vector &OtherVector) 136 136 { 137 Info FunctionInfo(__func__);137 //Info FunctionInfo(__func__); 138 138 // get normal vector 139 139 NormalVector = Plane((endpoints[0]->node->getPosition()), … … 163 163 bool BoundaryTriangleSet::GetIntersectionInsideTriangle(const Vector & MolCenter, const Vector & x, Vector &Intersection) const 164 164 { 165 Info FunctionInfo(__func__);165 //Info FunctionInfo(__func__); 166 166 Vector CrossPoint; 167 167 Vector helper; … … 227 227 double BoundaryTriangleSet::GetClosestPointInsideTriangle(const Vector &x, Vector &ClosestPoint) const 228 228 { 229 Info FunctionInfo(__func__);229 //Info FunctionInfo(__func__); 230 230 Vector Direction; 231 231 … … 309 309 bool BoundaryTriangleSet::ContainsBoundaryLine(const BoundaryLineSet * const line) const 310 310 { 311 Info FunctionInfo(__func__);311 //Info FunctionInfo(__func__); 312 312 for (int i = 0; i < 3; i++) 313 313 if (line == lines[i]) … … 323 323 bool BoundaryTriangleSet::ContainsBoundaryPoint(const BoundaryPointSet * const point) const 324 324 { 325 Info FunctionInfo(__func__);325 //Info FunctionInfo(__func__); 326 326 for (int i = 0; i < 3; i++) 327 327 if (point == endpoints[i]) … … 337 337 bool BoundaryTriangleSet::ContainsBoundaryPoint(const TesselPoint * const point) const 338 338 { 339 Info FunctionInfo(__func__);339 //Info FunctionInfo(__func__); 340 340 for (int i = 0; i < 3; i++) 341 341 if (point == endpoints[i]->node) … … 351 351 bool BoundaryTriangleSet::IsPresentTupel(const BoundaryPointSet * const Points[3]) const 352 352 { 353 Info FunctionInfo(__func__);353 //Info FunctionInfo(__func__); 354 354 LOG(1, "INFO: Checking " << Points[0] << "," << Points[1] << "," << Points[2] << " against " << endpoints[0] << "," << endpoints[1] << "," << endpoints[2] << "."); 355 355 return (((endpoints[0] == Points[0]) || (endpoints[0] == Points[1]) || (endpoints[0] == Points[2])) && ((endpoints[1] == Points[0]) || (endpoints[1] == Points[1]) || (endpoints[1] == Points[2])) && ((endpoints[2] == Points[0]) || (endpoints[2] == Points[1]) || (endpoints[2] == Points[2]) … … 365 365 bool BoundaryTriangleSet::IsPresentTupel(const BoundaryTriangleSet * const T) const 366 366 { 367 Info FunctionInfo(__func__);367 //Info FunctionInfo(__func__); 368 368 return (((endpoints[0] == T->endpoints[0]) || (endpoints[0] == T->endpoints[1]) || (endpoints[0] == T->endpoints[2])) && ((endpoints[1] == T->endpoints[0]) || (endpoints[1] == T->endpoints[1]) || (endpoints[1] == T->endpoints[2])) && ((endpoints[2] == T->endpoints[0]) || (endpoints[2] == T->endpoints[1]) || (endpoints[2] == T->endpoints[2]) 369 369 … … 453 453 class BoundaryPointSet *BoundaryTriangleSet::GetThirdEndpoint(const BoundaryLineSet * const line) const 454 454 { 455 Info FunctionInfo(__func__);455 //Info FunctionInfo(__func__); 456 456 // sanity check 457 457 if (!ContainsBoundaryLine(line)) … … 471 471 class BoundaryLineSet *BoundaryTriangleSet::GetThirdLine(const BoundaryPointSet * const point) const 472 472 { 473 Info FunctionInfo(__func__);473 //Info FunctionInfo(__func__); 474 474 // sanity check 475 475 if (!ContainsBoundaryPoint(point)) … … 489 489 void BoundaryTriangleSet::GetCenter(Vector & center) const 490 490 { 491 Info FunctionInfo(__func__);491 //Info FunctionInfo(__func__); 492 492 center.Zero(); 493 493 for (int i = 0; i < 3; i++) -
src/Tesselation/tesselation.cpp
re791dc r2a3124 2571 2571 bool Tesselation::IsInnerPoint(const Vector &Point, const LinkedCell_deprecated* const LC) const 2572 2572 { 2573 Info FunctionInfo(__func__);2574 2573 TriangleIntersectionList Intersections(Point, this, LC); 2575 2576 2574 return Intersections.IsInside(); 2577 2575 } 2578 ;2579 2576 2580 2577 /** Returns the distance to the surface given by the tesselation. -
src/Tesselation/triangleintersectionlist.cpp
re791dc r2a3124 46 46 Vicinity(LC) 47 47 { 48 Info FunctionInfo(__func__);48 //Info FunctionInfo(__func__); 49 49 GatherIntersectionsWithTriangles(); 50 50 }; … … 55 55 TriangleIntersectionList::~TriangleIntersectionList() 56 56 { 57 Info FunctionInfo(__func__);57 //Info FunctionInfo(__func__); 58 58 for (TriangleVectorMap::iterator Runner = IntersectionList.begin(); Runner != IntersectionList.end(); Runner++) 59 59 delete((*Runner).second); … … 66 66 double TriangleIntersectionList::GetSmallestDistance() const 67 67 { 68 Info FunctionInfo(__func__);68 //Info FunctionInfo(__func__); 69 69 FillDistanceList(); 70 70 if (!DistanceList.empty()) … … 81 81 Vector TriangleIntersectionList::GetClosestIntersection() const 82 82 { 83 Info FunctionInfo(__func__);83 //Info FunctionInfo(__func__); 84 84 TriangleVectorMap::const_iterator runner; 85 85 runner = GetIteratortoSmallestDistance(); … … 97 97 BoundaryTriangleSet * TriangleIntersectionList::GetClosestTriangle() const 98 98 { 99 Info FunctionInfo(__func__);99 //Info FunctionInfo(__func__); 100 100 TriangleVectorMap::const_iterator runner; 101 101 runner = GetIteratortoSmallestDistance(); … … 112 112 bool TriangleIntersectionList::IsInside() const 113 113 { 114 Info FunctionInfo(__func__);114 //Info FunctionInfo(__func__); 115 115 TriangleVectorMap::const_iterator runner = GetIteratortoSmallestDistance(); 116 116 if (runner != IntersectionList.end()) { … … 144 144 void TriangleIntersectionList::GatherIntersectionsWithTriangles() 145 145 { 146 Info FunctionInfo(__func__);146 //Info FunctionInfo(__func__); 147 147 148 148 // get closest points … … 174 174 void TriangleIntersectionList::FillDistanceList() const 175 175 { 176 Info FunctionInfo(__func__);176 //Info FunctionInfo(__func__); 177 177 if (DistanceList.empty()) 178 178 for (TriangleVectorMap::const_iterator runner = IntersectionList.begin(); runner != IntersectionList.end(); runner++) … … 190 190 TriangleVectorMap::const_iterator TriangleIntersectionList::GetIteratortoSmallestDistance() const 191 191 { 192 Info FunctionInfo(__func__);192 //Info FunctionInfo(__func__); 193 193 FillDistanceList(); 194 194
Note:
See TracChangeset
for help on using the changeset viewer.