Update raylib_api.* by CI
This commit is contained in:
parent
7a4a725d85
commit
67e3ef0b05
|
|
@ -6749,6 +6749,60 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "GetSplineControlBezierQuad",
|
||||||
|
"description": "Get (evaluate) spline control point: Quadratic Bezier",
|
||||||
|
"returnType": "void",
|
||||||
|
"params": [
|
||||||
|
{
|
||||||
|
"type": "Vector2",
|
||||||
|
"name": "startPos"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Vector2",
|
||||||
|
"name": "midPos"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Vector2",
|
||||||
|
"name": "endPos"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Vector2 *",
|
||||||
|
"name": "controlPos"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "GetSplineControlBezierCubic",
|
||||||
|
"description": "Get (evaluate) spline control points: Cubic Bezier",
|
||||||
|
"returnType": "void",
|
||||||
|
"params": [
|
||||||
|
{
|
||||||
|
"type": "Vector2",
|
||||||
|
"name": "startPos"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Vector2",
|
||||||
|
"name": "oneThirdsPos"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Vector2",
|
||||||
|
"name": "twoThirdsPos"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Vector2",
|
||||||
|
"name": "endPos"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Vector2 *",
|
||||||
|
"name": "startControlPos"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Vector2 *",
|
||||||
|
"name": "endControlPos"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "GetSplineVelocityLinear",
|
"name": "GetSplineVelocityLinear",
|
||||||
"description": "Get (evaluate) spline velocity: Linear",
|
"description": "Get (evaluate) spline velocity: Linear",
|
||||||
|
|
|
||||||
|
|
@ -5315,6 +5315,30 @@ return {
|
||||||
{type = "float", name = "t"}
|
{type = "float", name = "t"}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name = "GetSplineControlBezierQuad",
|
||||||
|
description = "Get (evaluate) spline control point: Quadratic Bezier",
|
||||||
|
returnType = "void",
|
||||||
|
params = {
|
||||||
|
{type = "Vector2", name = "startPos"},
|
||||||
|
{type = "Vector2", name = "midPos"},
|
||||||
|
{type = "Vector2", name = "endPos"},
|
||||||
|
{type = "Vector2 *", name = "controlPos"}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name = "GetSplineControlBezierCubic",
|
||||||
|
description = "Get (evaluate) spline control points: Cubic Bezier",
|
||||||
|
returnType = "void",
|
||||||
|
params = {
|
||||||
|
{type = "Vector2", name = "startPos"},
|
||||||
|
{type = "Vector2", name = "oneThirdsPos"},
|
||||||
|
{type = "Vector2", name = "twoThirdsPos"},
|
||||||
|
{type = "Vector2", name = "endPos"},
|
||||||
|
{type = "Vector2 *", name = "startControlPos"},
|
||||||
|
{type = "Vector2 *", name = "endControlPos"}
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name = "GetSplineVelocityLinear",
|
name = "GetSplineVelocityLinear",
|
||||||
description = "Get (evaluate) spline velocity: Linear",
|
description = "Get (evaluate) spline velocity: Linear",
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -679,7 +679,7 @@
|
||||||
<Param type="unsigned int" name="frames" desc="" />
|
<Param type="unsigned int" name="frames" desc="" />
|
||||||
</Callback>
|
</Callback>
|
||||||
</Callbacks>
|
</Callbacks>
|
||||||
<Functions count="597">
|
<Functions count="599">
|
||||||
<Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context">
|
<Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context">
|
||||||
<Param type="int" name="width" desc="" />
|
<Param type="int" name="width" desc="" />
|
||||||
<Param type="int" name="height" desc="" />
|
<Param type="int" name="height" desc="" />
|
||||||
|
|
@ -1681,6 +1681,20 @@
|
||||||
<Param type="Vector2" name="p4" desc="" />
|
<Param type="Vector2" name="p4" desc="" />
|
||||||
<Param type="float" name="t" desc="" />
|
<Param type="float" name="t" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
|
<Function name="GetSplineControlBezierQuad" retType="void" paramCount="4" desc="Get (evaluate) spline control point: Quadratic Bezier">
|
||||||
|
<Param type="Vector2" name="startPos" desc="" />
|
||||||
|
<Param type="Vector2" name="midPos" desc="" />
|
||||||
|
<Param type="Vector2" name="endPos" desc="" />
|
||||||
|
<Param type="Vector2 *" name="controlPos" desc="" />
|
||||||
|
</Function>
|
||||||
|
<Function name="GetSplineControlBezierCubic" retType="void" paramCount="6" desc="Get (evaluate) spline control points: Cubic Bezier">
|
||||||
|
<Param type="Vector2" name="startPos" desc="" />
|
||||||
|
<Param type="Vector2" name="oneThirdsPos" desc="" />
|
||||||
|
<Param type="Vector2" name="twoThirdsPos" desc="" />
|
||||||
|
<Param type="Vector2" name="endPos" desc="" />
|
||||||
|
<Param type="Vector2 *" name="startControlPos" desc="" />
|
||||||
|
<Param type="Vector2 *" name="endControlPos" desc="" />
|
||||||
|
</Function>
|
||||||
<Function name="GetSplineVelocityLinear" retType="Vector2" paramCount="2" desc="Get (evaluate) spline velocity: Linear">
|
<Function name="GetSplineVelocityLinear" retType="Vector2" paramCount="2" desc="Get (evaluate) spline velocity: Linear">
|
||||||
<Param type="Vector2" name="startPos" desc="" />
|
<Param type="Vector2" name="startPos" desc="" />
|
||||||
<Param type="Vector2" name="endPos" desc="" />
|
<Param type="Vector2" name="endPos" desc="" />
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user