LTBezier.bezierPoint C# (CSharp) Method

bezierPoint() private method

private bezierPoint ( float t ) : Vector3
t float
return Vector3
	private Vector3 bezierPoint(float t){
		return ((aa* t + (bb))* t + cc)* t + a;
	}