Lines Matching refs:SPHERE
37 struct SPHERE;
169 struct SPHERE struct
172 typedef SPHERE self_type; argument
174 SPHERE() {} in SPHERE() argument
175 SPHERE(const f32* p) : C(p), r(*(p + 3)) {} in SPHERE() argument
176 SPHERE(const VEC3& center, f32 radius) : C(center), r(radius) {} in SPHERE() argument
438 bool IntersectSphere(const SPHERE* S) const;
457 f32 DistSqSphereToPlane(const SPHERE* S, const PLANE* J);
481 IntersectionResult IntersectionLine3Sphere(const LINE3* L, const SPHERE* sphere, f32* t0, f32* t1);
482 IntersectionResult IntersectionRay3Sphere(const RAY3* R, const SPHERE* sphere, f32* t0, f32* t1);
483 bool IntersectionRay3Sphere(const RAY3* R, const SPHERE* sphere);
484 IntersectionResult IntersectionSegment3Sphere(const SEGMENT3* S, const SPHERE* sphere, f32* t0, f32…
488 bool IntersectionSphereAABB(const SPHERE* sphere, const AABB* aabb);
489 bool IntersectionSphere(const SPHERE* s0, const SPHERE* s1);
498 IntersectionSphereFrustum(const SPHERE* S, const FRUSTUM* F) in IntersectionSphereFrustum()
519 SPHERE* MergeSphere(SPHERE* s2, const SPHERE* s0, const SPHERE* s1);