njKochanekSpline Japanese
|INDEX|
Kochanek spline correction function

Syntax

#include <Ninja.h>
void  njKochanekSpline(float *idata, float *odata, NJS_SPLINE *attr, float frame);
float       *idata
float       *odata
NJS_SPLINE  *attr
float       frame

Arguments

idata
Input data (but idata[3*4])
odata
Output data (but odata[3])
attr
Spline attribute
frame
Frame

Return Value

None

Error

None

Description

Spline curve correction value is stored in the specified argument.
Please set the frame number to a value between 0 and 1.
For the attributes, please specify tension, bias, and continuity
at the fparam members (attr->fparam[0], attr->fparam[1],attr->fparam[2])
of the spline attribute structure (each ranging from -1.f to 1.f).

Usage Example

#include <NINJA.H> 
#define X1    1.f
#define Y1    0.f
#define Z1    0.f
#define X2    5.f
#define  TENSION  0.2f
#define  BIAS  0.1f
#define  CONT  -0.1f
...........

float idata[3][4] = 
{
  {X1, Y1, Z1},
  {X2, Y2, Z2},
  {X3, Y3, Z3},
  {X4, Y4, Z4},
};
float odata[3];
NJS_SPLINE  attr;

...........
attr.fparam[0] = TENSION;
attr.fparam[1] = BIAS;
attr.fparam[2] = CONT;
njKochanekSpline((float*)idata, odata, &attr, 0.5f); 
...........

Remark

None

Related Items

njOverhauserSpline
njCardinalSpline

njKochanekSpline
|INDEX|

Copyright SEGA ENTERPRISES, LTD., 1997