21 float t = Vector3::computeDotProduct(pSubP1, lineDirection);
22 if (t < 0.0f) t = 0.0f;
23 if (t > lineLength) t = lineLength;
48 auto a = Vector3::computeDotProduct(d1, d1);
49 auto e = Vector3::computeDotProduct(d2, d2);
50 auto f = Vector3::computeDotProduct(d2, r);
52 if (a <= Math::EPSILON && e <= Math::EPSILON) {
60 if (a <= Math::EPSILON) {
63 t = Math::clamp(t, 0.0f, 1.0f);
65 auto c = Vector3::computeDotProduct(d1, r);
67 if (e <= Math::EPSILON) {
69 s = Math::clamp(-c / a, 0.0f, 1.0f);
72 auto b = Vector3::computeDotProduct(d1, d2);
73 auto denom = a * e - b * b;
75 s = Math::clamp((b * f - c * e) / denom, 0.0f, 1.0f);
82 s = Math::clamp(-c / a, 0.0f, 1.0f);
83 }
else if (t > 1.0f) {
85 s = Math::clamp((b - c) / a, 0.0f, 1.0f);
105 for (
auto i = 0; i < 3; i++) {
106 if (Math::abs(directionXYZ[i]) < Math::EPSILON &&
107 (pointXYZ[i] <= minXYZ[i] || pointXYZ[i] >= maxXYZ[i])) {
110 auto odd = 1.0f / directionXYZ[i];
111 auto t1 = (minXYZ[i] - pointXYZ[i]) * odd;
112 auto t2 = (maxXYZ[i] - pointXYZ[i]) * odd;
118 tmin = Math::max(tmin, t1);
119 tmax = Math::min(tmax, t2);
125 if (tmin > 1.0)
return false;
140 auto obbAxes = orientedBoundingBox->
getAxes();
141 auto obbCenter = orientedBoundingBox->
getCenter();
143 auto& obbHalfExtensionXYZ = obbHalfExtension.
getArray();
145 for (
auto i = 0; i < 3; i++) {
146 auto directionLengthOnAxis = Vector3::computeDotProduct(d, obbAxes[i]);
147 auto obbExtensionLengthOnAxis = obbHalfExtensionXYZ[i];
148 auto obbCenterLengthOnAxis = Vector3::computeDotProduct(obbCenter, obbAxes[i]);
149 auto pointLengthOnAxis = Vector3::computeDotProduct(p, obbAxes[i]);
150 if (Math::abs(directionLengthOnAxis) < Math::EPSILON &&
151 (pointLengthOnAxis <= obbCenterLengthOnAxis - obbExtensionLengthOnAxis ||
152 pointLengthOnAxis >= obbCenterLengthOnAxis + obbExtensionLengthOnAxis)) {
155 auto odd = 1.0f / directionLengthOnAxis;
156 auto t1 = (obbCenterLengthOnAxis - obbExtensionLengthOnAxis - pointLengthOnAxis) * odd;
157 auto t2 = (obbCenterLengthOnAxis + obbExtensionLengthOnAxis - pointLengthOnAxis) * odd;
163 tmin = Math::max(tmin, t1);
164 tmax = Math::min(tmax, t2);
170 if (tmin > 1.0)
return false;
185 auto h = Vector3::computeCrossProduct(rayVector, edge2);
186 a = Vector3::computeDotProduct(edge1, h);
187 if (a > -Math::EPSILON && a < Math::EPSILON) {
193 u = f * Vector3::computeDotProduct(s, h);
194 if (u < 0.0 || u > 1.0) {
197 auto q = Vector3::computeCrossProduct(s, edge1);
198 v = f * Vector3::computeDotProduct(rayVector, q);
199 if (v < 0.0 || u + v > 1.0) {
203 float t = f * Vector3::computeDotProduct(edge2, q);
204 if (t > Math::EPSILON) {
206 contact = r1 + rayVector * t;
216 auto lineDirection = p2.
clone().
sub(p1);
218 lineDirection.normalize();
219 float nDotP1 = Vector3::computeDotProduct(n, p1);
220 float nDotLineDirection = Vector3::computeDotProduct(n, lineDirection);
221 auto t = ((d - nDotP1) / nDotLineDirection);
222 if (t < 0.0 || t > lineLength)
return false;
223 contact.
set(p1 + (lineDirection * t));
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
const Vector3 & getCenter() const
Line segment helper functions.
static bool doesLineSegmentCollideWithPlane(const Vector3 &n, float d, const Vector3 &p1, const Vector3 &p2, Vector3 &contact)
Does line segment collides with triangle.
static void computeClosestPointsOnLineSegments(const Vector3 &p1, const Vector3 &q1, const Vector3 &p2, const Vector3 &q2, Vector3 &c1, Vector3 &c2)
Computes closest points c1, c2 on line segment p1->q1, p2->q2 based on an algorithm from "Real-Time C...
static bool doesBoundingBoxCollideWithLineSegment(BoundingBox *boundingBox, const Vector3 &p, const Vector3 &q, Vector3 &contactMin, Vector3 &contactMax)
Check if segment collides with bounding box based on an algorithm from "Real-Time Collision Detection...
static bool doesOrientedBoundingBoxCollideWithLineSegment(OrientedBoundingBox *orientedBoundingBox, const Vector3 &p, const Vector3 &q, Vector3 &contactMin, Vector3 &contactMax)
Check if segment collides with oriented bounding box based on an algorithm from "Real-Time Collision ...
static bool doesLineSegmentCollideWithTriangle(const Vector3 &p1, const Vector3 &p2, const Vector3 &p3, const Vector3 &r1, const Vector3 &r2, Vector3 &contact)
Does line segment collides with triangle.
static bool doesLineSegmentsCollide(const Vector3 &p1, const Vector3 &q1, const Vector3 &p2, const Vector3 &q2, Vector3 &p)
Does line segments collide.
Oriented bounding box physics primitive.
const Vector3 & getHalfExtension() const
const array< Vector3, 3 > & getAxes() const
float computeLength() const
Vector3 & normalize()
Normalize the vector.
Vector3 & set(float x, float y, float z)
Set up vector.
Vector3 clone() const
Clones the vector.
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Vector3 & add(const Vector3 &v)
Adds a vector.
Vector3 & scale(float scale)
Scale this vector.
array< float, 3 > & getArray() const