HPL3/Amnesia: Rebirth/Scripting/Scripting Api/Math
< HPL3 | Amnesia: Rebirth | Scripting | Scripting Api
Jump to navigation
Jump to search
This page has been automatically generated, but it needs descriptions added to the various fields/functions in order to be complete. |
Have some helpful descriptions to add to this class? Edit this page and add your insight to the Wiki!
Summary
Return Type | Function and Description |
---|---|
void | Math_CatmullRom(cVector3f &out avResult, const cVector3f &in avP0, const cVector3f &in avP1, const cVector3f &in avP2, const cVector3f &in avP3, float afFract) A function that gives you a point along a spline made up of four points |
Function Detail
Math_CatmullRom
void Math_CatmullRom(cVector3f &out avResult,
const cVector3f &in avP0,
const cVector3f &in avP1,
const cVector3f &in avP2,
const cVector3f &in avP3,
float afFract)
A function that gives you a point along a spline made up of four points. The spline is guaranteed to hit the second and third points.
Parameters
- avResult (cVector3f) —
- avP0 (cVector3f) —
- avP1 (cVector3f) —
- avP2 (cVector3f) —
- avP3 (cVector3f) —
- afFract (float) —
Returns:
- void