Chaste  Build::
GeometryTools.hpp
1 /*
2 
3 Copyright (c) 2005-2016, University of Oxford.
4  All rights reserved.
5 
6  University of Oxford means the Chancellor, Masters and Scholars of the
7  University of Oxford, having an administrative office at Wellington
8  Square, Oxford OX1 2JD, UK.
9 
10  This file is part of Chaste.
11 
12  Redistribution and use in source and binary forms, with or without
13  modification, are permitted provided that the following conditions are met:
14  * Redistributions of source code must retain the above copyright notice,
15  this list of conditions and the following disclaimer.
16  * Redistributions in binary form must reproduce the above copyright notice,
17  this list of conditions and the following disclaimer in the documentation
18  and/or other materials provided with the distribution.
19  * Neither the name of the University of Oxford nor the names of its
20  contributors may be used to endorse or promote products derived from this
21  software without specific prior written permission.
22 
23  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
24  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
27  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
29  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 
34  */
35 
36 #ifndef GEOMETRYTOOLS_HPP_
37 #define GEOMETRYTOOLS_HPP_
38 
39 #include <vector>
40 #include <math.h>
41 #include "SmartPointers.hpp"
42 #include "UblasVectorInclude.hpp"
43 #include "UnitCollection.hpp"
44 #include "DimensionalChastePoint.hpp"
45 
52 template<unsigned DIM>
53 units::quantity<unit::length> GetDistance(const DimensionalChastePoint<DIM>& rLocation1,
54  const DimensionalChastePoint<DIM>& rLocation2);
55 
63 template<unsigned DIM>
64 units::quantity<unit::length> GetDistanceToLineSegment(const DimensionalChastePoint<DIM>& rStartLocation,
65  const DimensionalChastePoint<DIM>& rEndLocation,
66  const DimensionalChastePoint<DIM>& rProbeLocation);
67 
74 template<unsigned DIM>
75 units::quantity<unit::area> GetDotProduct(const DimensionalChastePoint<DIM>& rLocation1,
76  const DimensionalChastePoint<DIM>& rLocation2);
77 
84 template<unsigned DIM>
85 units::quantity<unit::length> GetDotProduct(const DimensionalChastePoint<DIM>& rLocation1,
86  const c_vector<double, DIM>& rLocation2);
96 template<unsigned DIM>
97 DimensionalChastePoint<DIM> GetPointProjectionOnLineSegment(const DimensionalChastePoint<DIM>& rStartLocation,
98  const DimensionalChastePoint<DIM>& rEndLocation,
99  const DimensionalChastePoint<DIM>& rProbeLocation,
100  bool projectToEnds = false,
101  bool checkDimensions = true);
102 
109 template<unsigned DIM>
110 std::vector<DimensionalChastePoint<DIM> > GetProbeLocationsExternalPoint(DimensionalChastePoint<DIM> rCentrePoint,
111  units::quantity<unit::length> probeLength);
112 
122 template<unsigned DIM>
123 std::vector<DimensionalChastePoint<DIM> > GetProbeLocationsInternalPoint(DimensionalChastePoint<DIM> rInitialDirection,
124  DimensionalChastePoint<DIM> rCentralPoint,
125  DimensionalChastePoint<DIM> rRotationAxis,
126  units::quantity<unit::length> probeLength,
127  units::quantity<unit::plane_angle> angle);
128 
137 template<unsigned DIM>
138 bool IsPointInCone(const DimensionalChastePoint<DIM>& rPoint,
139  const DimensionalChastePoint<DIM>& rApex,
140  const DimensionalChastePoint<DIM>& rBase, double aperture);
141 
149 template<unsigned DIM>
150 bool IsPointInBox(const DimensionalChastePoint<DIM>& rPoint,
151  const DimensionalChastePoint<DIM>& rLocation, units::quantity<unit::length> spacing);
152 
159 template<unsigned DIM>
160 bool IsPointInTetra(const DimensionalChastePoint<DIM>& rPoint, const std::vector<DimensionalChastePoint<DIM> >& locations);
161 
169 template<unsigned DIM>
170 units::quantity<unit::length> LengthOfLineInBox(const DimensionalChastePoint<DIM>& rStartPoint,
171  const DimensionalChastePoint<DIM>& rEndPoint,
172  const DimensionalChastePoint<DIM>& rBoxCentre, units::quantity<unit::length> spacing);
173 
181 template<unsigned DIM>
182 units::quantity<unit::length> LengthOfLineInTetra(const DimensionalChastePoint<DIM>& rStartPoint,
183  const DimensionalChastePoint<DIM>& rEndPoint,
184  const std::vector<DimensionalChastePoint<DIM> >& locations);
185 
192 template<unsigned DIM>
193 DimensionalChastePoint<DIM> OffsetAlongVector(const DimensionalChastePoint<DIM>& rVector, units::quantity<unit::length> offset);
194 
202 template<unsigned DIM>
203 DimensionalChastePoint<DIM> OffsetAlongVector(const c_vector<double, DIM>& rVector, units::quantity<unit::length> offset,
204  units::quantity<unit::length> referenceLength);
205 
213 template<unsigned DIM>
214 DimensionalChastePoint<DIM> RotateAboutAxis(const DimensionalChastePoint<DIM>& rDirection,
215  const DimensionalChastePoint<3>& rAxis, units::quantity<unit::plane_angle> angle);
216 
224 template<unsigned DIM>
225 c_vector<double, DIM> RotateAboutAxis(const c_vector<double, DIM>& rDirection,
226  const c_vector<double, 3>& rAxis, units::quantity<unit::plane_angle> angle);
227 
228 #include "GeometryToolsImpl.hpp"
229 #endif /*GEOMETRYTOOLS_HPP_*/