cf_intersect_halfspace2¶
Category: math
GitHub: cute_math.h
Returns the intersection point of two points to a plane.
CF_V2 cf_intersect_halfspace2(CF_Halfspace h, CF_V2 a, CF_V2 b) { return cf_intersect_halfspace(a, b, cf_distance_hs(h, a), cf_distance_hs(h, b)); }
Related Pages¶
CF_Halfspace
cf_plane
cf_origin
cf_distance_hs
cf_project
cf_mul_tf_hs
cf_mul_T_tf_hs
cf_intersect_halfspace
cf_intersect_halfspace3