Geant4-11
Static Public Member Functions
G4TessellatedGeometryAlgorithms Class Reference

#include <G4TessellatedGeometryAlgorithms.hh>

Static Public Member Functions

static G4double cross (const G4TwoVector &v1, const G4TwoVector &v2)
 
static G4int IntersectLineAndLineSegment2D (const G4TwoVector &p0, const G4TwoVector &d0, const G4TwoVector &p1, const G4TwoVector &d1, G4TwoVector location[2])
 
static G4bool IntersectLineAndTriangle2D (const G4TwoVector &p, const G4TwoVector &v, const G4TwoVector &p0, const G4TwoVector &e0, const G4TwoVector &e1, G4TwoVector location[2])
 

Detailed Description

Definition at line 69 of file G4TessellatedGeometryAlgorithms.hh.

Member Function Documentation

◆ cross()

G4double G4TessellatedGeometryAlgorithms::cross ( const G4TwoVector v1,
const G4TwoVector v2 
)
static

Definition at line 236 of file G4TessellatedGeometryAlgorithms.cc.

238{
239 return v1.x()*v2.y() - v1.y()*v2.x();
240}
double x() const
double y() const

References CLHEP::Hep2Vector::x(), and CLHEP::Hep2Vector::y().

Referenced by IntersectLineAndLineSegment2D().

◆ IntersectLineAndLineSegment2D()

G4int G4TessellatedGeometryAlgorithms::IntersectLineAndLineSegment2D ( const G4TwoVector p0,
const G4TwoVector d0,
const G4TwoVector p1,
const G4TwoVector d1,
G4TwoVector  location[2] 
)
static

Definition at line 163 of file G4TessellatedGeometryAlgorithms.cc.

166{
167 G4TwoVector e = p1 - p0;
168 G4double kross = cross(d0,d1);
169 G4double sqrKross = kross * kross;
170 G4double sqrLen0 = d0.mag2();
171 G4double sqrLen1 = d1.mag2();
172 location[0] = G4TwoVector(0.0,0.0);
173 location[1] = G4TwoVector(0.0,0.0);
174
175 if (sqrKross > DBL_EPSILON * DBL_EPSILON * sqrLen0 * sqrLen1)
176 {
177 //
178 // The line and line segment are not parallel. Determine if the intersection
179 // is in positive s where r=p0 + s*d0, and for 0<=t<=1 where r=p1 + t*d1.
180 //
181 G4double ss = cross(e,d1)/kross;
182 if (ss < 0) return 0; // Intersection does not occur for positive ss
183 G4double t = cross(e,d0)/kross;
184 if (t < 0 || t > 1) return 0; // Intersection does not occur on line-segment
185 //
186 // Intersection of lines is a single point on the forward-propagating line
187 // defined by r=p0 + ss*d0, and the line segment defined by r=p1 + t*d1.
188 //
189 location[0] = p0 + ss*d0;
190 return 1;
191 }
192 //
193 // Line and line segment are parallel. Determine whether they overlap or not.
194 //
195 G4double sqrLenE = e.mag2();
196 kross = cross(e,d0);
197 sqrKross = kross * kross;
198 if (sqrKross > DBL_EPSILON * DBL_EPSILON * sqrLen0 * sqrLenE)
199 {
200 return 0; //Lines are different.
201 }
202 //
203 // Lines are the same. Test for overlap.
204 //
205 G4double s0 = d0.dot(e)/sqrLen0;
206 G4double s1 = s0 + d0.dot(d1)/sqrLen0;
207 G4double smin = 0.0;
208 G4double smax = 0.0;
209
210 if (s0 < s1) {smin = s0; smax = s1;}
211 else {smin = s1; smax = s0;}
212
213 if (smax < 0.0) return 0;
214 else if (smin < 0.0)
215 {
216 location[0] = p0;
217 location[1] = p0 + smax*d0;
218 return 2;
219 }
220 else
221 {
222 location[0] = p0 + smin*d0;
223 location[1] = p0 + smax*d0;
224 return 2;
225 }
226}
static const G4double d1
CLHEP::Hep2Vector G4TwoVector
Definition: G4TwoVector.hh:36
double G4double
Definition: G4Types.hh:83
double mag2() const
double dot(const Hep2Vector &p) const
static G4double cross(const G4TwoVector &v1, const G4TwoVector &v2)
#define DBL_EPSILON
Definition: templates.hh:66

References cross(), d1, DBL_EPSILON, CLHEP::Hep2Vector::dot(), CLHEP::Hep2Vector::mag2(), and G4InuclParticleNames::s0.

Referenced by IntersectLineAndTriangle2D().

◆ IntersectLineAndTriangle2D()

G4bool G4TessellatedGeometryAlgorithms::IntersectLineAndTriangle2D ( const G4TwoVector p,
const G4TwoVector v,
const G4TwoVector p0,
const G4TwoVector e0,
const G4TwoVector e1,
G4TwoVector  location[2] 
)
static

Definition at line 55 of file G4TessellatedGeometryAlgorithms.cc.

59{
60 G4TwoVector loc0[2];
61 G4int e0i = IntersectLineAndLineSegment2D (p,v,p0,e0,loc0);
62 if (e0i == 2)
63 {
64 location[0] = loc0[0];
65 location[1] = loc0[1];
66 return true;
67 }
68
69 G4TwoVector loc1[2];
70 G4int e1i = IntersectLineAndLineSegment2D (p,v,p0,e1,loc1);
71 if (e1i == 2)
72 {
73 location[0] = loc1[0];
74 location[1] = loc1[1];
75 return true;
76 }
77
78 if ((e0i == 1) && (e1i == 1))
79 {
80 if ((loc0[0]-p).mag2() < (loc1[0]-p).mag2())
81 {
82 location[0] = loc0[0];
83 location[1] = loc1[0];
84 }
85 else
86 {
87 location[0] = loc1[0];
88 location[1] = loc0[0];
89 }
90 return true;
91 }
92
93 G4TwoVector p1 = p0 + e0;
94 G4TwoVector DE = e1 - e0;
95 G4TwoVector loc2[2];
96 G4int e2i = IntersectLineAndLineSegment2D (p,v,p1,DE,loc2);
97 if (e2i == 2)
98 {
99 location[0] = loc2[0];
100 location[1] = loc2[1];
101 return true;
102 }
103
104 if ((e0i == 0) && (e1i == 0) && (e2i == 0)) return false;
105
106 if ((e0i == 1) && (e2i == 1))
107 {
108 if ((loc0[0]-p).mag2() < (loc2[0]-p).mag2())
109 {
110 location[0] = loc0[0];
111 location[1] = loc2[0];
112 }
113 else
114 {
115 location[0] = loc2[0];
116 location[1] = loc0[0];
117 }
118 return true;
119 }
120
121 if ((e1i == 1) && (e2i == 1))
122 {
123 if ((loc1[0]-p).mag2() < (loc2[0]-p).mag2())
124 {
125 location[0] = loc1[0];
126 location[1] = loc2[0];
127 }
128 else
129 {
130 location[0] = loc2[0];
131 location[1] = loc1[0];
132 }
133 return true;
134 }
135
136 return false;
137}
static const G4double e1[44]
int G4int
Definition: G4Types.hh:85
static G4int IntersectLineAndLineSegment2D(const G4TwoVector &p0, const G4TwoVector &d0, const G4TwoVector &p1, const G4TwoVector &d1, G4TwoVector location[2])

References e1, and IntersectLineAndLineSegment2D().

Referenced by G4TriangularFacet::Intersect().


The documentation for this class was generated from the following files: