Lines Matching refs:C
175 SPHERE(const f32* p) : C(p), r(*(p + 3)) {} in SPHERE()
176 SPHERE(const VEC3& center, f32 radius) : C(center), r(radius) {} in SPHERE()
178 operator f32*() { return &C.x; }
179 operator const f32*() const { return &C.x; }
180 bool operator==(const self_type& rhs) const { return C == rhs.C && r == rhs.r; }
181 bool operator!=(const self_type& rhs) const { return C != rhs.C || r != rhs.r; }
186 VEC3 C;
208 PLANE(f32 A, f32 B, f32 C, f32 D, bool isNormalized = false)
209 : N(A, B, C), d(D) in N()
493 bool IntersectionRay3Capsule(const RAY3* R, const CAPSULE* C);
494 bool IntersectionLine3Capsule(const LINE3* L, const CAPSULE* C);
495 bool IntersectionPlaneCapsule(const PLANE* J, const CAPSULE* C);