| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986 |
- /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
- */
- #include <bx/rng.h>
- #include <bx/math.h>
- #include "bounds.h"
- using namespace bx;
- Vec3 getCenter(const Aabb& _aabb)
- {
- return mul(add(_aabb.min, _aabb.max), 0.5f);
- }
- Vec3 getExtents(const Aabb& _aabb)
- {
- return mul(sub(_aabb.max, _aabb.min), 0.5f);
- }
- Vec3 getCenter(const Triangle& _triangle)
- {
- return mul(add(add(_triangle.v0, _triangle.v1), _triangle.v2), 1.0f/3.0f);
- }
- void toAabb(Aabb& _outAabb, const Vec3& _extents)
- {
- _outAabb.min = neg(_extents);
- _outAabb.max = _extents;
- }
- void toAabb(Aabb& _outAabb, const Vec3& _center, const Vec3& _extents)
- {
- _outAabb.min = sub(_center, _extents);
- _outAabb.max = add(_center, _extents);
- }
- void toAabb(Aabb& _outAabb, const Cylinder& _cylinder)
- {
- // Reference(s):
- // - https://web.archive.org/web/20181113055756/http://iquilezles.org/www/articles/diskbbox/diskbbox.htm
- //
- const Vec3 axis = sub(_cylinder.end, _cylinder.pos);
- const Vec3 asq = mul(axis, axis);
- const Vec3 nsq = mul(asq, 1.0f/dot(axis, axis) );
- const Vec3 tmp = sub(1.0f, nsq);
- const float inv = 1.0f/(tmp.x*tmp.y*tmp.z);
- const Vec3 extent =
- {
- _cylinder.radius * tmp.x * sqrt( (nsq.x + nsq.y * nsq.z) * inv),
- _cylinder.radius * tmp.y * sqrt( (nsq.y + nsq.z * nsq.x) * inv),
- _cylinder.radius * tmp.z * sqrt( (nsq.z + nsq.x * nsq.y) * inv),
- };
- const Vec3 minP = sub(_cylinder.pos, extent);
- const Vec3 minE = sub(_cylinder.end, extent);
- const Vec3 maxP = add(_cylinder.pos, extent);
- const Vec3 maxE = add(_cylinder.end, extent);
- _outAabb.min = min(minP, minE);
- _outAabb.max = max(maxP, maxE);
- }
- void toAabb(Aabb& _outAabb, const Disk& _disk)
- {
- // Reference(s):
- // - https://web.archive.org/web/20181113055756/http://iquilezles.org/www/articles/diskbbox/diskbbox.htm
- //
- const Vec3 nsq = mul(_disk.normal, _disk.normal);
- const Vec3 one = { 1.0f, 1.0f, 1.0f };
- const Vec3 tmp = sub(one, nsq);
- const float inv = 1.0f / (tmp.x*tmp.y*tmp.z);
- const Vec3 extent =
- {
- _disk.radius * tmp.x * sqrt( (nsq.x + nsq.y * nsq.z) * inv),
- _disk.radius * tmp.y * sqrt( (nsq.y + nsq.z * nsq.x) * inv),
- _disk.radius * tmp.z * sqrt( (nsq.z + nsq.x * nsq.y) * inv),
- };
- _outAabb.min = sub(_disk.center, extent);
- _outAabb.max = add(_disk.center, extent);
- }
- void toAabb(Aabb& _outAabb, const Obb& _obb)
- {
- Vec3 xyz = { 1.0f, 1.0f, 1.0f };
- Vec3 tmp = mul(xyz, _obb.mtx);
- _outAabb.min = tmp;
- _outAabb.max = tmp;
- for (uint32_t ii = 1; ii < 8; ++ii)
- {
- xyz.x = ii & 1 ? -1.0f : 1.0f;
- xyz.y = ii & 2 ? -1.0f : 1.0f;
- xyz.z = ii & 4 ? -1.0f : 1.0f;
- tmp = mul(xyz, _obb.mtx);
- _outAabb.min = min(_outAabb.min, tmp);
- _outAabb.max = max(_outAabb.max, tmp);
- }
- }
- void toAabb(Aabb& _outAabb, const Sphere& _sphere)
- {
- const float radius = _sphere.radius;
- _outAabb.min = sub(_sphere.center, radius);
- _outAabb.max = add(_sphere.center, radius);
- }
- void toAabb(Aabb& _outAabb, const Triangle& _triangle)
- {
- _outAabb.min = min(_triangle.v0, _triangle.v1, _triangle.v2);
- _outAabb.max = max(_triangle.v0, _triangle.v1, _triangle.v2);
- }
- void aabbTransformToObb(Obb& _obb, const Aabb& _aabb, const float* _mtx)
- {
- toObb(_obb, _aabb);
- float result[16];
- mtxMul(result, _obb.mtx, _mtx);
- memCopy(_obb.mtx, result, sizeof(result) );
- }
- void toAabb(Aabb& _outAabb, const void* _vertices, uint32_t _numVertices, uint32_t _stride)
- {
- Vec3 mn, mx;
- uint8_t* vertex = (uint8_t*)_vertices;
- mn = mx = load<Vec3>(vertex);
- vertex += _stride;
- for (uint32_t ii = 1; ii < _numVertices; ++ii)
- {
- const Vec3 pos = load<Vec3>(vertex);
- vertex += _stride;
- mn = min(pos, mn);
- mx = max(pos, mx);
- }
- _outAabb.min = mn;
- _outAabb.max = mx;
- }
- void toAabb(Aabb& _outAabb, const float* _mtx, const void* _vertices, uint32_t _numVertices, uint32_t _stride)
- {
- Vec3 mn, mx;
- uint8_t* vertex = (uint8_t*)_vertices;
- mn = mx = mul(load<Vec3>(vertex), _mtx);
- vertex += _stride;
- for (uint32_t ii = 1; ii < _numVertices; ++ii)
- {
- Vec3 pos = mul(load<Vec3>(vertex), _mtx);
- vertex += _stride;
- mn = min(pos, mn);
- mx = max(pos, mx);
- }
- _outAabb.min = mn;
- _outAabb.max = mx;
- }
- float calcAreaAabb(const Aabb& _aabb)
- {
- const float ww = _aabb.max.x - _aabb.min.x;
- const float hh = _aabb.max.y - _aabb.min.y;
- const float dd = _aabb.max.z - _aabb.min.z;
- return 2.0f * (ww*hh + ww*dd + hh*dd);
- }
- void aabbExpand(Aabb& _outAabb, float _factor)
- {
- _outAabb.min.x -= _factor;
- _outAabb.min.y -= _factor;
- _outAabb.min.z -= _factor;
- _outAabb.max.x += _factor;
- _outAabb.max.y += _factor;
- _outAabb.max.z += _factor;
- }
- void aabbExpand(Aabb& _outAabb, const Vec3& _pos)
- {
- _outAabb.min = min(_outAabb.min, _pos);
- _outAabb.max = max(_outAabb.max, _pos);
- }
- void toObb(Obb& _outObb, const Aabb& _aabb)
- {
- memSet(_outObb.mtx, 0, sizeof(_outObb.mtx) );
- _outObb.mtx[ 0] = (_aabb.max.x - _aabb.min.x) * 0.5f;
- _outObb.mtx[ 5] = (_aabb.max.y - _aabb.min.y) * 0.5f;
- _outObb.mtx[10] = (_aabb.max.z - _aabb.min.z) * 0.5f;
- _outObb.mtx[12] = (_aabb.min.x + _aabb.max.x) * 0.5f;
- _outObb.mtx[13] = (_aabb.min.y + _aabb.max.y) * 0.5f;
- _outObb.mtx[14] = (_aabb.min.z + _aabb.max.z) * 0.5f;
- _outObb.mtx[15] = 1.0f;
- }
- void calcObb(Obb& _outObb, const void* _vertices, uint32_t _numVertices, uint32_t _stride, uint32_t _steps)
- {
- Aabb aabb;
- toAabb(aabb, _vertices, _numVertices, _stride);
- float minArea = calcAreaAabb(aabb);
- Obb best;
- toObb(best, aabb);
- float angleStep = float(kPiHalf/_steps);
- float ax = 0.0f;
- float mtx[16];
- for (uint32_t ii = 0; ii < _steps; ++ii)
- {
- float ay = 0.0f;
- for (uint32_t jj = 0; jj < _steps; ++jj)
- {
- float az = 0.0f;
- for (uint32_t kk = 0; kk < _steps; ++kk)
- {
- mtxRotateXYZ(mtx, ax, ay, az);
- float mtxT[16];
- mtxTranspose(mtxT, mtx);
- toAabb(aabb, mtxT, _vertices, _numVertices, _stride);
- float area = calcAreaAabb(aabb);
- if (area < minArea)
- {
- minArea = area;
- aabbTransformToObb(best, aabb, mtx);
- }
- az += angleStep;
- }
- ay += angleStep;
- }
- ax += angleStep;
- }
- memCopy(&_outObb, &best, sizeof(Obb) );
- }
- void calcMaxBoundingSphere(Sphere& _sphere, const void* _vertices, uint32_t _numVertices, uint32_t _stride)
- {
- Aabb aabb;
- toAabb(aabb, _vertices, _numVertices, _stride);
- Vec3 center = getCenter(aabb);
- float maxDistSq = 0.0f;
- uint8_t* vertex = (uint8_t*)_vertices;
- for (uint32_t ii = 0; ii < _numVertices; ++ii)
- {
- const Vec3& pos = load<Vec3>(vertex);
- vertex += _stride;
- const Vec3 tmp = sub(pos, center);
- const float distSq = dot(tmp, tmp);
- maxDistSq = max(distSq, maxDistSq);
- }
- _sphere.center = center;
- _sphere.radius = sqrt(maxDistSq);
- }
- void calcMinBoundingSphere(Sphere& _sphere, const void* _vertices, uint32_t _numVertices, uint32_t _stride, float _step)
- {
- RngMwc rng;
- uint8_t* vertex = (uint8_t*)_vertices;
- Vec3 center;
- float* position = (float*)&vertex[0];
- center.x = position[0];
- center.y = position[1];
- center.z = position[2];
- position = (float*)&vertex[1*_stride];
- center.x += position[0];
- center.y += position[1];
- center.z += position[2];
- center.x *= 0.5f;
- center.y *= 0.5f;
- center.z *= 0.5f;
- float xx = position[0] - center.x;
- float yy = position[1] - center.y;
- float zz = position[2] - center.z;
- float maxDistSq = xx*xx + yy*yy + zz*zz;
- float radiusStep = _step * 0.37f;
- bool done;
- do
- {
- done = true;
- for (uint32_t ii = 0, index = rng.gen()%_numVertices; ii < _numVertices; ++ii, index = (index + 1)%_numVertices)
- {
- position = (float*)&vertex[index*_stride];
- xx = position[0] - center.x;
- yy = position[1] - center.y;
- zz = position[2] - center.z;
- float distSq = xx*xx + yy*yy + zz*zz;
- if (distSq > maxDistSq)
- {
- done = false;
- center.x += xx * radiusStep;
- center.y += yy * radiusStep;
- center.z += zz * radiusStep;
- maxDistSq = lerp(maxDistSq, distSq, _step);
- break;
- }
- }
- } while (!done);
- _sphere.center = center;
- _sphere.radius = sqrt(maxDistSq);
- }
- void buildFrustumPlanes(Plane* _result, const float* _viewProj)
- {
- const float xw = _viewProj[ 3];
- const float yw = _viewProj[ 7];
- const float zw = _viewProj[11];
- const float ww = _viewProj[15];
- const float xz = _viewProj[ 2];
- const float yz = _viewProj[ 6];
- const float zz = _viewProj[10];
- const float wz = _viewProj[14];
- Plane& near = _result[0];
- Plane& far = _result[1];
- Plane& left = _result[2];
- Plane& right = _result[3];
- Plane& top = _result[4];
- Plane& bottom = _result[5];
- near.normal.x = xw - xz;
- near.normal.y = yw - yz;
- near.normal.z = zw - zz;
- near.dist = ww - wz;
- far.normal.x = xw + xz;
- far.normal.y = yw + yz;
- far.normal.z = zw + zz;
- far.dist = ww + wz;
- const float xx = _viewProj[ 0];
- const float yx = _viewProj[ 4];
- const float zx = _viewProj[ 8];
- const float wx = _viewProj[12];
- left.normal.x = xw - xx;
- left.normal.y = yw - yx;
- left.normal.z = zw - zx;
- left.dist = ww - wx;
- right.normal.x = xw + xx;
- right.normal.y = yw + yx;
- right.normal.z = zw + zx;
- right.dist = ww + wx;
- const float xy = _viewProj[ 1];
- const float yy = _viewProj[ 5];
- const float zy = _viewProj[ 9];
- const float wy = _viewProj[13];
- top.normal.x = xw + xy;
- top.normal.y = yw + yy;
- top.normal.z = zw + zy;
- top.dist = ww + wy;
- bottom.normal.x = xw - xy;
- bottom.normal.y = yw - yy;
- bottom.normal.z = zw - zy;
- bottom.dist = ww - wy;
- Plane* plane = _result;
- for (uint32_t ii = 0; ii < 6; ++ii)
- {
- const float invLen = 1.0f/length(plane->normal);
- plane->normal = normalize(plane->normal);
- plane->dist *= invLen;
- ++plane;
- }
- }
- Vec3 intersectPlanes(const Plane& _pa, const Plane& _pb, const Plane& _pc)
- {
- const Vec3 axb = cross(_pa.normal, _pb.normal);
- const Vec3 bxc = cross(_pb.normal, _pc.normal);
- const Vec3 cxa = cross(_pc.normal, _pa.normal);
- const Vec3 tmp0 = mul(bxc, _pa.dist);
- const Vec3 tmp1 = mul(cxa, _pb.dist);
- const Vec3 tmp2 = mul(axb, _pc.dist);
- const Vec3 tmp3 = add(tmp0, tmp1);
- const Vec3 tmp4 = add(tmp3, tmp2);
- const float denom = dot(_pa.normal, bxc);
- const Vec3 result = mul(tmp4, -1.0f/denom);
- return result;
- }
- Ray makeRay(float _x, float _y, const float* _invVp)
- {
- Ray ray;
- const Vec3 near = { _x, _y, 0.0f };
- ray.pos = mulH(near, _invVp);
- const Vec3 far = { _x, _y, 1.0f };
- Vec3 tmp = mulH(far, _invVp);
- const Vec3 dir = sub(tmp, ray.pos);
- ray.dir = normalize(dir);
- return ray;
- }
- inline Vec3 getPointAt(const Ray& _ray, float _t)
- {
- return mad(_ray.dir, _t, _ray.pos);
- }
- bool intersect(const Ray& _ray, const Aabb& _aabb, Hit* _hit)
- {
- const Vec3 invDir = rcp(_ray.dir);
- const Vec3 tmp0 = sub(_aabb.min, _ray.pos);
- const Vec3 t0 = mul(tmp0, invDir);
- const Vec3 tmp1 = sub(_aabb.max, _ray.pos);
- const Vec3 t1 = mul(tmp1, invDir);
- const Vec3 mn = min(t0, t1);
- const Vec3 mx = max(t0, t1);
- const float tmin = max(mn.x, mn.y, mn.z);
- const float tmax = min(mx.x, mx.y, mx.z);
- if (0.0f > tmax
- || tmin > tmax)
- {
- return false;
- }
- if (NULL != _hit)
- {
- _hit->plane.normal.x = float( (t1.x == tmin) - (t0.x == tmin) );
- _hit->plane.normal.y = float( (t1.y == tmin) - (t0.y == tmin) );
- _hit->plane.normal.z = float( (t1.z == tmin) - (t0.z == tmin) );
- _hit->plane.dist = tmin;
- _hit->pos = getPointAt(_ray, tmin);
- }
- return true;
- }
- static constexpr Aabb kUnitAabb =
- {
- { -1.0f, -1.0f, -1.0f },
- { 1.0f, 1.0f, 1.0f },
- };
- bool intersect(const Ray& _ray, const Obb& _obb, Hit* _hit)
- {
- Aabb aabb;
- toAabb(aabb, _obb);
- if (!intersect(_ray, aabb) )
- {
- return false;
- }
- float mtxInv[16];
- mtxInverse(mtxInv, _obb.mtx);
- Ray obbRay;
- obbRay.pos = mul(_ray.pos, mtxInv);
- obbRay.dir = mulXyz0(_ray.dir, mtxInv);
- if (intersect(obbRay, kUnitAabb, _hit) )
- {
- if (NULL != _hit)
- {
- _hit->pos = mul(_hit->pos, _obb.mtx);
- const Vec3 tmp = mulXyz0(_hit->plane.normal, _obb.mtx);
- _hit->plane.normal = normalize(tmp);
- }
- return true;
- }
- return false;
- }
- bool intersect(const Ray& _ray, const Disk& _disk, Hit* _hit)
- {
- Plane plane;
- plane.normal = _disk.normal;
- plane.dist = -dot(_disk.center, _disk.normal);
- Hit tmpHit;
- _hit = NULL != _hit ? _hit : &tmpHit;
- if (intersect(_ray, plane, _hit) )
- {
- const Vec3 tmp = sub(_disk.center, _hit->pos);
- return dot(tmp, tmp) <= square(_disk.radius);
- }
- return false;
- }
- static bool intersect(const Ray& _ray, const Cylinder& _cylinder, bool _capsule, Hit* _hit)
- {
- Vec3 axis = sub(_cylinder.end, _cylinder.pos);
- const Vec3 rc = sub(_ray.pos, _cylinder.pos);
- const Vec3 dxa = cross(_ray.dir, axis);
- const float len = length(dxa);
- const Vec3 normal = normalize(dxa);
- const float dist = bx::abs(dot(rc, normal) );
- if (dist > _cylinder.radius)
- {
- return false;
- }
- Vec3 vo = cross(rc, axis);
- const float t0 = -dot(vo, normal) / len;
- vo = normalize(cross(normal, axis) );
- const float rsq = square(_cylinder.radius);
- const float ddoto = dot(_ray.dir, vo);
- const float ss = t0 - bx::abs(sqrt(rsq - square(dist) ) / ddoto);
- if (0.0f > ss)
- {
- return false;
- }
- const Vec3 point = getPointAt(_ray, ss);
- const float axisLen = length(axis);
- axis = normalize(axis);
- const float pdota = dot(_cylinder.pos, axis);
- const float height = dot(point, axis) - pdota;
- if (0.0f < height
- && axisLen > height)
- {
- if (NULL != _hit)
- {
- const float t1 = height / axisLen;
- const Vec3 pointOnAxis = lerp(_cylinder.pos, _cylinder.end, t1);
- _hit->pos = point;
- const Vec3 tmp = sub(point, pointOnAxis);
- _hit->plane.normal = normalize(tmp);
- _hit->plane.dist = ss;
- }
- return true;
- }
- if (_capsule)
- {
- const float rdota = dot(_ray.pos, axis);
- const float pp = rdota - pdota;
- const float t1 = pp / axisLen;
- const Vec3 pointOnAxis = lerp(_cylinder.pos, _cylinder.end, t1);
- const Vec3 axisToRay = sub(_ray.pos, pointOnAxis);
- if (_cylinder.radius < length(axisToRay)
- && 0.0f > ss)
- {
- return false;
- }
- Sphere sphere;
- sphere.radius = _cylinder.radius;
- sphere.center = 0.0f >= height
- ? _cylinder.pos
- : _cylinder.end
- ;
- return intersect(_ray, sphere, _hit);
- }
- Plane plane;
- Vec3 pos;
- if (0.0f >= height)
- {
- plane.normal = neg(axis);
- pos = _cylinder.pos;
- }
- else
- {
- plane.normal = axis;
- pos = _cylinder.end;
- }
- plane.dist = -dot(pos, plane.normal);
- Hit tmpHit;
- _hit = NULL != _hit ? _hit : &tmpHit;
- if (intersect(_ray, plane, _hit) )
- {
- const Vec3 tmp = sub(pos, _hit->pos);
- return dot(tmp, tmp) <= rsq;
- }
- return false;
- }
- bool intersect(const Ray& _ray, const Cylinder& _cylinder, Hit* _hit)
- {
- return intersect(_ray, _cylinder, false, _hit);
- }
- bool intersect(const Ray& _ray, const Capsule& _capsule, Hit* _hit)
- {
- BX_STATIC_ASSERT(sizeof(Capsule) == sizeof(Cylinder) );
- return intersect(_ray, *( (const Cylinder*)&_capsule), true, _hit);
- }
- bool intersect(const Ray& _ray, const Cone& _cone, Hit* _hit)
- {
- const Vec3 axis = sub(_cone.pos, _cone.end);
- const float len = length(axis);
- const Vec3 normal = normalize(axis);
- Disk disk;
- disk.center = _cone.pos;
- disk.normal = normal;
- disk.radius = _cone.radius;
- Hit tmpInt;
- Hit* out = NULL != _hit ? _hit : &tmpInt;
- bool hit = intersect(_ray, disk, out);
- const Vec3 ro = sub(_ray.pos, _cone.end);
- const float hyp = sqrt(square(_cone.radius) + square(len) );
- const float cosaSq = square(len/hyp);
- const float ndoto = dot(normal, ro);
- const float ndotd = dot(normal, _ray.dir);
- const float aa = square(ndotd) - cosaSq;
- const float bb = 2.0f * (ndotd*ndoto - dot(_ray.dir, ro)*cosaSq);
- const float cc = square(ndoto) - dot(ro, ro)*cosaSq;
- float det = bb*bb - 4.0f*aa*cc;
- if (0.0f > det)
- {
- return hit;
- }
- det = sqrt(det);
- const float invA2 = 1.0f / (2.0f*aa);
- const float t1 = (-bb - det) * invA2;
- const float t2 = (-bb + det) * invA2;
- float tt = t1;
- if (0.0f > t1
- || (0.0f < t2 && t2 < t1) )
- {
- tt = t2;
- }
- if (0.0f > tt)
- {
- return hit;
- }
- const Vec3 hitPos = getPointAt(_ray, tt);
- const Vec3 point = sub(hitPos, _cone.end);
- const float hh = dot(normal, point);
- if (0.0f > hh
- || len < hh)
- {
- return hit;
- }
- if (NULL != _hit)
- {
- if (!hit
- || tt < _hit->plane.dist)
- {
- _hit->plane.dist = tt;
- _hit->pos = hitPos;
- const float scale = hh / dot(point, point);
- const Vec3 pointScaled = mul(point, scale);
- const Vec3 tmp = sub(pointScaled, normal);
- _hit->plane.normal = normalize(tmp);
- }
- }
- return true;
- }
- bool intersect(const Ray& _ray, const Plane& _plane, Hit* _hit)
- {
- const float dist = distance(_plane, _ray.pos);
- if (0.0f > dist)
- {
- return false;
- }
- const float ndotd = dot(_ray.dir, _plane.normal);
- if (0.0f < ndotd)
- {
- return false;
- }
- if (NULL != _hit)
- {
- _hit->plane.normal = _plane.normal;
- float tt = -dist/ndotd;
- _hit->plane.dist = tt;
- _hit->pos = getPointAt(_ray, tt);
- }
- return true;
- }
- bool intersect(const Ray& _ray, const Sphere& _sphere, Hit* _hit)
- {
- const Vec3 rs = sub(_ray.pos, _sphere.center);
- const float bb = dot(rs, _ray.dir);
- if (0.0f < bb)
- {
- return false;
- }
- const float aa = dot(_ray.dir, _ray.dir);
- const float cc = dot(rs, rs) - square(_sphere.radius);
- const float discriminant = bb*bb - aa*cc;
- if (0.0f >= discriminant)
- {
- return false;
- }
- const float sqrtDiscriminant = sqrt(discriminant);
- const float invA = 1.0f / aa;
- const float tt = -(bb + sqrtDiscriminant)*invA;
- if (0.0f >= tt)
- {
- return false;
- }
- if (NULL != _hit)
- {
- _hit->plane.dist = tt;
- const Vec3 point = getPointAt(_ray, tt);
- _hit->pos = point;
- const Vec3 tmp = sub(point, _sphere.center);
- _hit->plane.normal = normalize(tmp);
- }
- return true;
- }
- bool intersect(const Ray& _ray, const Triangle& _triangle, Hit* _hit)
- {
- const Vec3 edge10 = sub(_triangle.v1, _triangle.v0);
- const Vec3 edge02 = sub(_triangle.v0, _triangle.v2);
- const Vec3 normal = cross(edge02, edge10);
- const Vec3 vo = sub(_triangle.v0, _ray.pos);
- const Vec3 dxo = cross(_ray.dir, vo);
- const float det = dot(normal, _ray.dir);
- if (0.0f < det)
- {
- return false;
- }
- const float invDet = 1.0f/det;
- const float bz = dot(dxo, edge02) * invDet;
- const float by = dot(dxo, edge10) * invDet;
- const float bx = 1.0f - by - bz;
- if (0.0f > bx
- || 0.0f > by
- || 0.0f > bz)
- {
- return false;
- }
- if (NULL != _hit)
- {
- _hit->plane.normal = normalize(normal);
- const float tt = dot(normal, vo) * invDet;
- _hit->plane.dist = tt;
- _hit->pos = getPointAt(_ray, tt);
- }
- return true;
- }
- Vec3 barycentric(const Triangle& _triangle, const Vec3& _pos)
- {
- const Vec3 v0 = sub(_triangle.v1, _triangle.v0);
- const Vec3 v1 = sub(_triangle.v2, _triangle.v0);
- const Vec3 v2 = sub(_pos, _triangle.v0);
- const float dot00 = dot(v0, v0);
- const float dot01 = dot(v0, v1);
- const float dot02 = dot(v0, v2);
- const float dot11 = dot(v1, v1);
- const float dot12 = dot(v1, v2);
- const float invDenom = 1.0f/(dot00*dot11 - square(dot01) );
- const float vv = (dot11*dot02 - dot01*dot12)*invDenom;
- const float ww = (dot00*dot12 - dot01*dot02)*invDenom;
- const float uu = 1.0f - vv - ww;
- return { uu, vv, ww };
- }
- Vec3 cartesian(const Triangle& _triangle, const Vec3& _uvw)
- {
- const Vec3 b0 = mul(_triangle.v0, _uvw.x);
- const Vec3 b1 = mul(_triangle.v1, _uvw.y);
- const Vec3 b2 = mul(_triangle.v2, _uvw.z);
- return add(add(b0, b1), b2);
- }
- void calcPlane(Plane& _outPlane, const Triangle& _triangle)
- {
- calcPlane(_outPlane, _triangle.v0, _triangle.v1, _triangle.v2);
- }
- struct Range1
- {
- float start;
- float end;
- };
- bool overlap(const Range1& _a, const Range1& _b)
- {
- return _a.end > _b.start
- && _b.end > _a.start
- ;
- }
- float projectToAxis(const Vec3& _axis, const Vec3& _point)
- {
- return dot(_axis, _point);
- }
- Range1 projectToAxis(const Vec3& _axis, const Aabb& _aabb)
- {
- const float extent = bx::abs(dot(abs(_axis), getExtents(_aabb) ) );
- const float center = dot( _axis , getCenter (_aabb) );
- return
- {
- center - extent,
- center + extent,
- };
- }
- Range1 projectToAxis(const Vec3& _axis, const Triangle& _triangle)
- {
- const float a0 = dot(_axis, _triangle.v0);
- const float a1 = dot(_axis, _triangle.v1);
- const float a2 = dot(_axis, _triangle.v2);
- return
- {
- min(a0, a1, a2),
- max(a0, a1, a2),
- };
- }
- struct Srt
- {
- Quaternion rotation;
- Vec3 translation;
- Vec3 scale;
- };
- Srt toSrt(const void* _mtx)
- {
- Srt result;
- const float* mtx = (const float*)_mtx;
- result.translation = { mtx[12], mtx[13], mtx[14] };
- float xx = mtx[ 0];
- float xy = mtx[ 1];
- float xz = mtx[ 2];
- float yx = mtx[ 4];
- float yy = mtx[ 5];
- float yz = mtx[ 6];
- float zx = mtx[ 8];
- float zy = mtx[ 9];
- float zz = mtx[10];
- result.scale =
- {
- sqrt(xx*xx + xy*xy + xz*xz),
- sqrt(yx*yx + yy*yy + yz*yz),
- sqrt(zx*zx + zy*zy + zz*zz),
- };
- const Vec3 invScale = rcp(result.scale);
- xx *= invScale.x;
- xy *= invScale.x;
- xz *= invScale.x;
- yx *= invScale.y;
- yy *= invScale.y;
- yz *= invScale.y;
- zx *= invScale.z;
- zy *= invScale.z;
- zz *= invScale.z;
- const float trace = xx + yy + zz;
- if (0.0f < trace)
- {
- const float invS = 0.5f * rsqrt(trace + 1.0f);
- result.rotation =
- {
- (yz - zy) * invS,
- (zx - xz) * invS,
- (xy - yx) * invS,
- 0.25f / invS,
- };
- }
- else
- {
- if (xx > yy
- && xx > zz)
- {
- const float invS = 0.5f * sqrt(max(1.0f + xx - yy - zz, 1e-8f) );
- result.rotation =
- {
- 0.25f / invS,
- (xy + yx) * invS,
- (xz + zx) * invS,
- (yz - zy) * invS,
- };
- }
- else if (yy > zz)
- {
- const float invS = 0.5f * sqrt(max(1.0f + yy - xx - zz, 1e-8f) );
- result.rotation =
- {
- (xy + yx) * invS,
- 0.25f / invS,
- (yz + zy) * invS,
- (zx - xz) * invS,
- };
- }
- else
- {
- const float invS = 0.5f * sqrt(max(1.0f + zz - xx - yy, 1e-8f) );
- result.rotation =
- {
- (xz + zx) * invS,
- (yz + zy) * invS,
- 0.25f / invS,
- (xy - yx) * invS,
- };
- }
- }
- return result;
- }
- struct LineSegment
- {
- Vec3 pos;
- Vec3 end;
- };
- inline Vec3 getPointAt(const LineSegment& _line, float _t)
- {
- return lerp(_line.pos, _line.end, _t);
- }
- bool nearZero(float _v)
- {
- return bx::abs(_v) < 0.0001f;
- }
- bool nearZero(const Vec3& _v)
- {
- return nearZero(dot(_v, _v) );
- }
- bool intersect(float& _outTa, float& _outTb, const LineSegment& _a, const LineSegment _b)
- {
- // Reference(s):
- //
- // - The shortest line between two lines in 3D
- // https://web.archive.org/web/20120309093234/http://paulbourke.net/geometry/lineline3d/
- const Vec3 bd = sub(_b.end, _b.pos);
- if (nearZero(bd) )
- {
- return false;
- }
- const Vec3 ad = sub(_a.end, _a.pos);
- if (nearZero(ad) )
- {
- return false;
- }
- const Vec3 ab = sub(_a.pos, _b.pos);
- const float d0 = projectToAxis(ab, bd);
- const float d1 = projectToAxis(ad, bd);
- const float d2 = projectToAxis(ab, ad);
- const float d3 = projectToAxis(bd, bd);
- const float d4 = projectToAxis(ad, ad);
- const float denom = d4*d3 - square(d1);
- float ta = 0.0f;
- if (!nearZero(denom) )
- {
- ta = (d0*d1 - d2*d3)/denom;
- }
- _outTa = ta;
- _outTb = (d0+d1*ta)/d3;
- return true;
- }
- float distance(const Plane& _plane, const LineSegment& _line)
- {
- const float pd = distance(_plane, _line.pos);
- const float ed = distance(_plane, _line.end);
- return min(max(pd*ed, 0.0f), bx::abs(pd), bx::abs(ed) );
- }
- Vec3 closestPoint(const LineSegment& _line, const Vec3& _point, float& _outT)
- {
- const Vec3 axis = sub(_line.end, _line.pos);
- const float lengthSq = dot(axis, axis);
- const float tt = clamp(projectToAxis(axis, sub(_point, _line.pos) ) / lengthSq, 0.0f, 1.0f);
- _outT = tt;
- return mad(axis, tt, _line.pos);
- }
- Vec3 closestPoint(const LineSegment& _line, const Vec3& _point)
- {
- float ignore;
- return closestPoint(_line, _point, ignore);
- }
- Vec3 closestPoint(const Plane& _plane, const Vec3& _point)
- {
- const float dist = distance(_plane, _point);
- return sub(_point, mul(_plane.normal, dist) );
- }
- Vec3 closestPoint(const Aabb& _aabb, const Vec3& _point)
- {
- return clamp(_point, _aabb.min, _aabb.max);
- }
- Vec3 closestPoint(const Obb& _obb, const Vec3& _point)
- {
- Srt srt = toSrt(_obb.mtx);
- Aabb aabb;
- toAabb(aabb, srt.scale);
- const Quaternion invRotation = invert(srt.rotation);
- const Vec3 obbSpacePos = mul(sub(_point, srt.translation), invRotation);
- const Vec3 pos = closestPoint(aabb, obbSpacePos);
- return add(mul(pos, srt.rotation), srt.translation);
- }
- Vec3 closestPoint(const Triangle& _triangle, const Vec3& _point)
- {
- Plane plane;
- calcPlane(plane, _triangle);
- const Vec3 pos = closestPoint(plane, _point);
- const Vec3 uvw = barycentric(_triangle, pos);
- return cartesian(_triangle, clamp<Vec3>(uvw, 0.0f, 1.0f) );
- }
- bool overlap(const Aabb& _aabb, const Vec3& _pos)
- {
- const Vec3 ac = getCenter(_aabb);
- const Vec3 ae = getExtents(_aabb);
- const Vec3 abc = bx::abs(sub(ac, _pos) );
- return abc.x <= ae.x
- && abc.y <= ae.y
- && abc.z <= ae.z
- ;
- }
- bool overlap(const Aabb& _aabb, const Sphere& _sphere)
- {
- return overlap(_sphere, _aabb);
- }
- uint32_t overlapTestMask(const Aabb& _aabbA, const Aabb& _aabbB)
- {
- /// Returns 0 is two AABB don't overlap, otherwise returns flags of overlap
- /// test.
- const uint32_t ltMinX = _aabbA.max.x < _aabbB.min.x;
- const uint32_t gtMaxX = _aabbA.min.x > _aabbB.max.x;
- const uint32_t ltMinY = _aabbA.max.y < _aabbB.min.y;
- const uint32_t gtMaxY = _aabbA.min.y > _aabbB.max.y;
- const uint32_t ltMinZ = _aabbA.max.z < _aabbB.min.z;
- const uint32_t gtMaxZ = _aabbA.min.z > _aabbB.max.z;
- return 0
- | (ltMinX << 0)
- | (gtMaxX << 1)
- | (ltMinY << 2)
- | (gtMaxY << 3)
- | (ltMinZ << 4)
- | (gtMaxZ << 5)
- ;
- }
- bool overlap(const Aabb& _aabbA, const Aabb& _aabbB)
- {
- #if 0
- return 0 != overlapTestMask(_aabbA, _aabbB);
- #else
- const Vec3 ac = getCenter(_aabbA);
- const Vec3 bc = getCenter(_aabbB);
- const Vec3 abc = bx::abs(sub(ac, bc) );
- const Vec3 ae = getExtents(_aabbA);
- const Vec3 be = getExtents(_aabbB);
- const Vec3 abe = add(ae, be);
- return abc.x <= abe.x
- && abc.y <= abe.y
- && abc.z <= abe.z
- ;
- #endif // 0
- }
- bool overlap(const Aabb& _aabb, const Plane& _plane)
- {
- const Vec3 center = getCenter(_aabb);
- const float dist = distance(_plane, center);
- const Vec3 extents = getExtents(_aabb);
- const Vec3 normal = bx::abs(_plane.normal);
- const float radius = dot(extents, normal);
- return bx::abs(dist) <= radius;
- }
- static constexpr Vec3 kAxis[] =
- {
- { 1.0f, 0.0f, 0.0f },
- { 0.0f, 1.0f, 0.0f },
- { 0.0f, 0.0f, 1.0f },
- };
- bool overlap(const Aabb& _aabb, const Triangle& _triangle)
- {
- Aabb triAabb;
- toAabb(triAabb, _triangle);
- if (!overlap(_aabb, triAabb) )
- {
- return false;
- }
- Plane plane;
- calcPlane(plane, _triangle);
- if (!overlap(_aabb, plane) )
- {
- return false;
- }
- const Vec3 center = getCenter(_aabb);
- const Vec3 v0 = sub(_triangle.v0, center);
- const Vec3 v1 = sub(_triangle.v1, center);
- const Vec3 v2 = sub(_triangle.v2, center);
- const Vec3 edge[] =
- {
- sub(v1, v0),
- sub(v2, v1),
- sub(v0, v2),
- };
- for (uint32_t ii = 0; ii < 3; ++ii)
- {
- for (uint32_t jj = 0; jj < 3; ++jj)
- {
- const Vec3 axis = cross(kAxis[ii], edge[jj]);
- const Range1 aabbR = projectToAxis(axis, _aabb);
- const Range1 triR = projectToAxis(axis, _triangle);
- if (!overlap(aabbR, triR) )
- {
- return false;
- }
- }
- }
- return true;
- }
- bool overlap(const Aabb& _aabb, const Cylinder& _cylinder)
- {
- BX_UNUSED(_aabb, _cylinder);
- return false;
- }
- bool overlap(const Aabb& _aabb, const Capsule& _capsule)
- {
- const Vec3 pos = closestPoint(LineSegment{_capsule.pos, _capsule.end}, getCenter(_aabb) );
- return overlap(_aabb, Sphere{pos, _capsule.radius});
- }
- bool overlap(const Aabb& _aabb, const Cone& _cone)
- {
- float tt;
- const Vec3 pos = closestPoint(LineSegment{_cone.pos, _cone.end}, getCenter(_aabb), tt);
- return overlap(_aabb, Sphere{pos, lerp(_cone.radius, 0.0f, tt)});
- }
- bool overlap(const Aabb& _aabb, const Disk& _disk)
- {
- if (!overlap(_aabb, Sphere{_disk.center, _disk.radius}) )
- {
- return false;
- }
- Plane plane;
- calcPlane(plane, _disk.normal, _disk.center);
- return overlap(_aabb, plane);
- }
- bool overlap(const Aabb& _aabb, const Obb& _obb)
- {
- BX_UNUSED(_aabb, _obb);
- return false;
- }
- bool overlap(const Capsule& _capsule, const Vec3& _pos)
- {
- const Vec3 pos = closestPoint(LineSegment{_capsule.pos, _capsule.end}, _pos);
- return overlap(Sphere{pos, _capsule.radius}, _pos);
- }
- bool overlap(const Capsule& _capsule, const Sphere& _sphere)
- {
- return overlap(_sphere, _capsule);
- }
- bool overlap(const Capsule& _capsule, const Aabb& _aabb)
- {
- return overlap(_aabb, _capsule);
- }
- bool overlap(const Capsule& _capsule, const Plane& _plane)
- {
- return distance(_plane, LineSegment{_capsule.pos, _capsule.end}) <= _capsule.radius;
- }
- bool overlap(const Capsule& _capsule, const Triangle& _triangle)
- {
- return overlap(_triangle, _capsule);
- }
- bool overlap(const Capsule& _capsule, const Cylinder& _cylinder)
- {
- BX_UNUSED(_capsule, _cylinder);
- return false;
- }
- bool overlap(const Capsule& _capsuleA, const Capsule& _capsuleB)
- {
- float ta, tb;
- if (!intersect(ta, tb, {_capsuleA.pos, _capsuleA.end}, {_capsuleB.pos, _capsuleB.end}) )
- {
- return false;
- }
- if (0.0f <= ta
- && 1.0f >= ta
- && 0.0f <= tb
- && 1.0f >= tb)
- {
- const Vec3 ad = sub(_capsuleA.end, _capsuleA.pos);
- const Vec3 bd = sub(_capsuleB.end, _capsuleB.pos);
- return overlap(
- Sphere{mad(ad, ta, _capsuleA.pos), _capsuleA.radius}
- , Sphere{mad(bd, tb, _capsuleB.pos), _capsuleB.radius}
- );
- }
- if (0.0f <= ta
- && 1.0f >= ta)
- {
- return overlap(_capsuleA, Sphere{0.0f >= tb ? _capsuleB.pos : _capsuleB.end, _capsuleB.radius});
- }
- if (0.0f <= tb
- && 1.0f >= tb)
- {
- return overlap(_capsuleB, Sphere{0.0f >= ta ? _capsuleA.pos : _capsuleA.end, _capsuleA.radius});
- }
- const Vec3 pa = 0.0f > ta ? _capsuleA.pos : _capsuleA.end;
- const Vec3 pb = 0.0f > tb ? _capsuleB.pos : _capsuleB.end;
- const Vec3 closestA = closestPoint(LineSegment{_capsuleA.pos, _capsuleA.end}, pb);
- const Vec3 closestB = closestPoint(LineSegment{_capsuleB.pos, _capsuleB.end}, pa);
- if (dot(closestA, pb) <= dot(closestB, pa) )
- {
- return overlap(_capsuleA, Sphere{closestB, _capsuleB.radius});
- }
- return overlap(_capsuleB, Sphere{closestA, _capsuleA.radius});
- }
- bool overlap(const Capsule& _capsule, const Cone& _cone)
- {
- BX_UNUSED(_capsule, _cone);
- return false;
- }
- bool overlap(const Capsule& _capsule, const Disk& _disk)
- {
- BX_UNUSED(_capsule, _disk);
- return false;
- }
- bool overlap(const Capsule& _capsule, const Obb& _obb)
- {
- return overlap(_obb, _capsule);
- }
- bool overlap(const Cone& _cone, const Vec3& _pos)
- {
- BX_UNUSED(_cone, _pos);
- return false;
- }
- bool overlap(const Cone& _cone, const Sphere& _sphere)
- {
- return overlap(_sphere, _cone);
- }
- bool overlap(const Cone& _cone, const Aabb& _aabb)
- {
- return overlap(_aabb, _cone);
- }
- bool overlap(const Cone& _cone, const Plane& _plane)
- {
- BX_UNUSED(_cone, _plane);
- return false;
- }
- bool overlap(const Cone& _cone, const Triangle& _triangle)
- {
- BX_UNUSED(_cone, _triangle);
- return false;
- }
- bool overlap(const Cone& _cone, const Cylinder& _cylinder)
- {
- BX_UNUSED(_cone, _cylinder);
- return false;
- }
- bool overlap(const Cone& _cone, const Capsule& _capsule)
- {
- BX_UNUSED(_cone, _capsule);
- return false;
- }
- bool overlap(const Cone& _coneA, const Cone& _coneB)
- {
- BX_UNUSED(_coneA, _coneB);
- return false;
- }
- bool overlap(const Cone& _cone, const Disk& _disk)
- {
- BX_UNUSED(_cone, _disk);
- return false;
- }
- bool overlap(const Cone& _cone, const Obb& _obb)
- {
- BX_UNUSED(_cone, _obb);
- return false;
- }
- bool overlap(const Cylinder& _cylinder, const Vec3& _pos)
- {
- BX_UNUSED(_cylinder, _pos);
- return false;
- }
- bool overlap(const Cylinder& _cylinder, const Sphere& _sphere)
- {
- BX_UNUSED(_cylinder, _sphere);
- return false;
- }
- bool overlap(const Cylinder& _cylinder, const Aabb& _aabb)
- {
- BX_UNUSED(_cylinder, _aabb);
- return false;
- }
- bool overlap(const Cylinder& _cylinder, const Plane& _plane)
- {
- BX_UNUSED(_cylinder, _plane);
- return false;
- }
- bool overlap(const Cylinder& _cylinder, const Triangle& _triangle)
- {
- BX_UNUSED(_cylinder, _triangle);
- return false;
- }
- bool overlap(const Cylinder& _cylinderA, const Cylinder& _cylinderB)
- {
- BX_UNUSED(_cylinderA, _cylinderB);
- return false;
- }
- bool overlap(const Cylinder& _cylinder, const Capsule& _capsule)
- {
- BX_UNUSED(_cylinder, _capsule);
- return false;
- }
- bool overlap(const Cylinder& _cylinder, const Cone& _cone)
- {
- BX_UNUSED(_cylinder, _cone);
- return false;
- }
- bool overlap(const Cylinder& _cylinder, const Disk& _disk)
- {
- BX_UNUSED(_cylinder, _disk);
- return false;
- }
- bool overlap(const Cylinder& _cylinder, const Obb& _obb)
- {
- BX_UNUSED(_cylinder, _obb);
- return false;
- }
- bool overlap(const Disk& _disk, const Vec3& _pos)
- {
- Plane plane;
- calcPlane(plane, _disk.normal, _disk.center);
- if (!nearZero(distance(plane, _pos) ) )
- {
- return false;
- }
- return distanceSq(_disk.center, _pos) <= square(_disk.radius);
- }
- bool overlap(const Disk& _disk, const Sphere& _sphere)
- {
- return overlap(_sphere, _disk);
- }
- bool overlap(const Disk& _disk, const Aabb& _aabb)
- {
- return overlap(_aabb, _disk);
- }
- bool overlap(const Disk& _disk, const Plane& _plane)
- {
- BX_UNUSED(_disk, _plane);
- return false;
- }
- bool overlap(const Disk& _disk, const Triangle& _triangle)
- {
- return overlap(_triangle, _disk);
- }
- bool overlap(const Disk& _disk, const Cylinder& _cylinder)
- {
- BX_UNUSED(_disk, _cylinder);
- return false;
- }
- bool overlap(const Disk& _disk, const Capsule& _capsule)
- {
- return overlap(_capsule, _disk);
- }
- bool overlap(const Disk& _disk, const Cone& _cone)
- {
- BX_UNUSED(_disk, _cone);
- return false;
- }
- bool overlap(const Disk& _diskA, const Disk& _diskB)
- {
- BX_UNUSED(_diskA, _diskB);
- return false;
- }
- bool overlap(const Disk& _disk, const Obb& _obb)
- {
- BX_UNUSED(_disk, _obb);
- return false;
- }
- bool overlap(const Obb& _obb, const Vec3& _pos)
- {
- Srt srt = toSrt(_obb.mtx);
- Aabb aabb;
- toAabb(aabb, srt.scale);
- const Quaternion invRotation = invert(srt.rotation);
- const Vec3 pos = mul(sub(_pos, srt.translation), invRotation);
- return overlap(aabb, pos);
- }
- bool overlap(const Obb& _obb, const Sphere& _sphere)
- {
- return overlap(_sphere, _obb);
- }
- bool overlap(const Obb& _obb, const Aabb& _aabb)
- {
- return overlap(_aabb, _obb);
- }
- bool overlap(const Obb& _obb, const Plane& _plane)
- {
- BX_UNUSED(_obb, _plane);
- return false;
- }
- bool overlap(const Obb& _obb, const Triangle& _triangle)
- {
- return overlap(_triangle, _obb);
- }
- bool overlap(const Obb& _obb, const Cylinder& _cylinder)
- {
- BX_UNUSED(_obb, _cylinder);
- return false;
- }
- bool overlap(const Obb& _obb, const Capsule& _capsule)
- {
- Srt srt = toSrt(_obb.mtx);
- Aabb aabb;
- toAabb(aabb, srt.scale);
- const Quaternion invRotation = invert(srt.rotation);
- Capsule capsule =
- {
- mul(sub(_capsule.pos, srt.translation), invRotation),
- mul(sub(_capsule.end, srt.translation), invRotation),
- _capsule.radius,
- };
- return overlap(aabb, capsule);
- }
- bool overlap(const Obb& _obb, const Cone& _cone)
- {
- BX_UNUSED(_obb, _cone);
- return false;
- }
- bool overlap(const Obb& _obb, const Disk& _disk)
- {
- BX_UNUSED(_obb, _disk);
- return false;
- }
- bool overlap(const Obb& _obbA, const Obb& _obbB)
- {
- BX_UNUSED(_obbA, _obbB);
- return false;
- }
- bool overlap(const Plane& _plane, const Vec3& _pos)
- {
- BX_UNUSED(_plane, _pos);
- return false;
- }
- bool overlap(const Plane& _plane, const Sphere& _sphere)
- {
- return overlap(_sphere, _plane);
- }
- bool overlap(const Plane& _plane, const Aabb& _aabb)
- {
- return overlap(_aabb, _plane);
- }
- bool overlap(const Plane& _planeA, const Plane& _planeB)
- {
- BX_UNUSED(_planeA, _planeB);
- return false;
- }
- bool overlap(const Plane& _plane, const Triangle& _triangle)
- {
- return overlap(_triangle, _plane);
- }
- bool overlap(const Plane& _plane, const Cylinder& _cylinder)
- {
- BX_UNUSED(_plane, _cylinder);
- return false;
- }
- bool overlap(const Plane& _plane, const Capsule& _capsule)
- {
- return overlap(_capsule, _plane);
- }
- bool overlap(const Plane& _plane, const Cone& _cone)
- {
- BX_UNUSED(_plane, _cone);
- return false;
- }
- bool overlap(const Plane& _plane, const Disk& _disk)
- {
- BX_UNUSED(_plane, _disk);
- return false;
- }
- bool overlap(const Plane& _plane, const Obb& _obb)
- {
- return overlap(_obb, _plane);
- }
- bool overlap(const Sphere& _sphere, const Vec3& _pos)
- {
- const Vec3 ba = sub(_sphere.center, _pos);
- const float rsq = square(_sphere.radius);
- return dot(ba, ba) <= rsq;
- }
- bool overlap(const Sphere& _sphereA, const Sphere& _sphereB)
- {
- const Vec3 ba = sub(_sphereA.center, _sphereB.center);
- const float rsq = square(_sphereA.radius + _sphereB.radius);
- return dot(ba, ba) <= rsq;
- }
- bool overlap(const Sphere& _sphere, const Aabb& _aabb)
- {
- const Vec3 pos = closestPoint(_aabb, _sphere.center);
- return overlap(_sphere, pos);
- }
- bool overlap(const Sphere& _sphere, const Plane& _plane)
- {
- return bx::abs(distance(_plane, _sphere.center) ) <= _sphere.radius;
- }
- bool overlap(const Sphere& _sphere, const Triangle& _triangle)
- {
- Plane plane;
- calcPlane(plane, _triangle);
- if (!overlap(_sphere, plane) )
- {
- return false;
- }
- const Vec3 pos = closestPoint(plane, _sphere.center);
- const Vec3 uvw = barycentric(_triangle, pos);
- const float nr = -_sphere.radius;
- return uvw.x >= nr
- && uvw.y >= nr
- && uvw.z >= nr
- ;
- }
- bool overlap(const Sphere& _sphere, const Cylinder& _cylinder)
- {
- BX_UNUSED(_sphere, _cylinder);
- return false;
- }
- bool overlap(const Sphere& _sphere, const Capsule& _capsule)
- {
- const Vec3 pos = closestPoint(LineSegment{_capsule.pos, _capsule.end}, _sphere.center);
- return overlap(_sphere, Sphere{pos, _capsule.radius});
- }
- bool overlap(const Sphere& _sphere, const Cone& _cone)
- {
- float tt;
- const Vec3 pos = closestPoint(LineSegment{_cone.pos, _cone.end}, _sphere.center, tt);
- return overlap(_sphere, Sphere{pos, lerp(_cone.radius, 0.0f, tt)});
- }
- bool overlap(const Sphere& _sphere, const Disk& _disk)
- {
- if (!overlap(_sphere, Sphere{_disk.center, _disk.radius}) )
- {
- return false;
- }
- Plane plane;
- calcPlane(plane, _disk.normal, _disk.center);
- return overlap(_sphere, plane);
- }
- bool overlap(const Sphere& _sphere, const Obb& _obb)
- {
- const Vec3 pos = closestPoint(_obb, _sphere.center);
- return overlap(_sphere, pos);
- }
- bool overlap(const Triangle& _triangle, const Vec3& _pos)
- {
- const Vec3 uvw = barycentric(_triangle, _pos);
- return uvw.x >= 0.0f
- && uvw.y >= 0.0f
- && uvw.z >= 0.0f
- ;
- }
- bool overlap(const Triangle& _triangle, const Sphere& _sphere)
- {
- return overlap(_sphere, _triangle);
- }
- bool overlap(const Triangle& _triangle, const Aabb& _aabb)
- {
- return overlap(_aabb, _triangle);
- }
- bool overlap(const Triangle& _triangle, const Plane& _plane)
- {
- const float dist0 = distance(_plane, _triangle.v0);
- const float dist1 = distance(_plane, _triangle.v1);
- const float dist2 = distance(_plane, _triangle.v2);
- const float minDist = min(dist0, dist1, dist2);
- const float maxDist = max(dist0, dist1, dist2);
- return 0.0f > minDist
- && 0.0f < maxDist
- ;
- }
- bool overlap(const Triangle& _triangleA, const Triangle& _triangleB)
- {
- BX_UNUSED(_triangleA, _triangleB);
- return false;
- }
- bool overlap(const Triangle& _triangle, const Cylinder& _cylinder)
- {
- BX_UNUSED(_triangle, _cylinder);
- return false;
- }
- bool intersect(const LineSegment& _line, const Plane& _plane, Hit* _hit)
- {
- const float dist = distance(_plane, _line.pos);
- const float flip = sign(dist);
- const Vec3 dir = normalize(sub(_line.end, _line.pos) );
- const float ndotd = dot(dir, _plane.normal);
- const float tt = -dist/ndotd;
- const float len = length(sub(_line.end, _line.pos) );
- if (tt < 0.0f || tt > len)
- {
- return false;
- }
- if (NULL != _hit)
- {
- _hit->pos = mad(dir, tt, _line.pos);
- _hit->plane.normal = mul(_plane.normal, flip);
- _hit->plane.dist = -dot(_hit->plane.normal, _hit->pos);
- }
- return true;
- }
- bool overlap(const Triangle& _triangle, const Capsule& _capsule)
- {
- Plane plane;
- calcPlane(plane, _triangle);
- plane.normal = neg(plane.normal);
- plane.dist = -plane.dist;
- const LineSegment line =
- {
- _capsule.pos,
- _capsule.end,
- };
- Hit hit;
- if (intersect(line, plane, &hit) )
- {
- return true;
- }
- const Vec3 pos = closestPoint(plane, hit.pos);
- const Vec3 uvw = barycentric(_triangle, pos);
- const float nr = -_capsule.radius;
- if (uvw.x >= nr
- && uvw.y >= nr
- && uvw.z >= nr)
- {
- return true;
- }
- const LineSegment ab = LineSegment{_triangle.v0, _triangle.v1};
- const LineSegment bc = LineSegment{_triangle.v1, _triangle.v2};
- const LineSegment ca = LineSegment{_triangle.v2, _triangle.v0};
- float ta0, tb0;
- const bool i0 = intersect(ta0, tb0, ab, line);
- float ta1, tb1;
- const bool i1 = intersect(ta1, tb1, bc, line);
- float ta2, tb2;
- const bool i2 = intersect(ta2, tb2, ca, line);
- if (!i0
- || !i1
- || !i2)
- {
- return false;
- }
- ta0 = clamp(ta0, 0.0f, 1.0f);
- ta1 = clamp(ta1, 0.0f, 1.0f);
- ta2 = clamp(ta2, 0.0f, 1.0f);
- tb0 = clamp(tb0, 0.0f, 1.0f);
- tb1 = clamp(tb1, 0.0f, 1.0f);
- tb2 = clamp(tb2, 0.0f, 1.0f);
- const Vec3 pa0 = getPointAt(ab, ta0);
- const Vec3 pa1 = getPointAt(bc, ta1);
- const Vec3 pa2 = getPointAt(ca, ta2);
- const Vec3 pb0 = getPointAt(line, tb0);
- const Vec3 pb1 = getPointAt(line, tb1);
- const Vec3 pb2 = getPointAt(line, tb2);
- const float d0 = distanceSq(pa0, pb0);
- const float d1 = distanceSq(pa1, pb1);
- const float d2 = distanceSq(pa2, pb2);
- if (d0 <= d1
- && d0 <= d2)
- {
- return overlap(_capsule, pa0);
- }
- else if (d1 <= d2)
- {
- return overlap(_capsule, pa1);
- }
- return overlap(_capsule, pa2);
- }
- bool overlap(const Triangle& _triangle, const Cone& _cone)
- {
- BX_UNUSED(_triangle, _cone);
- return false;
- }
- bool overlap(const Triangle& _triangle, const Disk& _disk)
- {
- if (!overlap(_triangle, Sphere{_disk.center, _disk.radius}) )
- {
- return false;
- }
- Plane plane;
- calcPlane(plane, _disk.normal, _disk.center);
- return overlap(_triangle, plane);
- }
- bool overlap(const Triangle& _triangle, const Obb& _obb)
- {
- Srt srt = toSrt(_obb.mtx);
- Aabb aabb;
- toAabb(aabb, srt.scale);
- const Quaternion invRotation = invert(srt.rotation);
- const Triangle triangle =
- {
- mul(sub(_triangle.v0, srt.translation), invRotation),
- mul(sub(_triangle.v1, srt.translation), invRotation),
- mul(sub(_triangle.v2, srt.translation), invRotation),
- };
- return overlap(triangle, aabb);
- }
|