A paper about Bezier Splines can be found here:
http://processingjs.nihongoresources.com/bezierinfo/This special Spline, takes as Input a number between 0 and zero, and a vector with 3 Numbers [A, B, C]
The spline is controlled by 7 points along the Input line:
(0, 0) (1/6, 0) (1/3, a) (1/2, b) (2/3, c) (5/6, 1) (1, 1)
The two first points ensures that the Spline starts with a value of 0 and zero slope.
The two last points ensures that the Spline ends with a value of 1 and zero slope.
The values a,b,c is calculated so that the Spline passes through the points (1/3, A) (1/2, B) (2/3, C).
Shown here is an application for visually determine the numbers input vector [A, B, C]:
1. View the settings for "Constant vector 01"
2. Right click "Surface layer 01" and view in another window.
You will now see two instances of the curve (The line between red and black). The two instances are seperated by the vertical line.
If you place the cursor near this line you can see spline output as the y value.
In the picture is shown that the value near the top is 1.202
No you can change the numbers in "Constant vector 01" until you are satiesfied by the curve.