<Functionname="CheckCollisionCircleLine"retType="bool"paramCount="4"desc="Check if circle collides with a line created betweeen two points [p1] and [p2]">
<Paramtype="Vector2"name="center"desc=""/>
<Paramtype="float"name="radius"desc=""/>
<Paramtype="Vector2"name="p1"desc=""/>
<Paramtype="Vector2"name="p2"desc=""/>
</Function>
<Functionname="CheckCollisionPointRec"retType="bool"paramCount="2"desc="Check if point is inside rectangle">
<Paramtype="Vector2"name="point"desc=""/>
<Paramtype="Rectangle"name="rec"desc=""/>
@ -1674,6 +1680,12 @@
<Paramtype="Vector2"name="p2"desc=""/>
<Paramtype="Vector2"name="p3"desc=""/>
</Function>
<Functionname="CheckCollisionPointLine"retType="bool"paramCount="4"desc="Check if point belongs to line created between two points [p1] and [p2] with defined margin in pixels [threshold]">
<Paramtype="Vector2"name="point"desc=""/>
<Paramtype="Vector2"name="p1"desc=""/>
<Paramtype="Vector2"name="p2"desc=""/>
<Paramtype="int"name="threshold"desc=""/>
</Function>
<Functionname="CheckCollisionPointPoly"retType="bool"paramCount="3"desc="Check if point is within a polygon described by array of vertices">
<Functionname="CheckCollisionPointLine"retType="bool"paramCount="4"desc="Check if point belongs to line created between two points [p1] and [p2] with defined margin in pixels [threshold]">
<Paramtype="Vector2"name="point"desc=""/>
<Paramtype="Vector2"name="p1"desc=""/>
<Paramtype="Vector2"name="p2"desc=""/>
<Paramtype="int"name="threshold"desc=""/>
</Function>
<Functionname="CheckCollisionCircleLine"retType="bool"paramCount="4"desc="Check if circle collides with a line created betweeen two points [p1] and [p2]">
<Paramtype="Vector2"name="center"desc=""/>
<Paramtype="float"name="radius"desc=""/>
<Paramtype="Vector2"name="p1"desc=""/>
<Paramtype="Vector2"name="p2"desc=""/>
</Function>
<Functionname="GetCollisionRec"retType="Rectangle"paramCount="2"desc="Get collision rectangle for two rectangles collision">