QBezier.QBezier C# (CSharp) Method

QBezier() public method

public QBezier ( float x0, float y0, float z0, float cx, float cy, float cz, float x1, float y1, float z1, Quaternion rot0, Quaternion rot1 ) : System.Collections
x0 float
y0 float
z0 float
cx float
cy float
cz float
x1 float
y1 float
z1 float
rot0 Quaternion
rot1 Quaternion
return System.Collections
    public QBezier(float x0, float y0, float z0, 
					float cx, float cy, float cz, 
					float x1, float y1, float z1,
					Quaternion rot0, Quaternion rot1
	               )
    {
        _x0 = x0;
        _y0 = y0;
        _z0 = z0;

        _cx = cx;
        _cy = cy;
        _cz = cz;

        _x1 = x1;
        _y1 = y1;
        _z1 = z1;
        _length = -1;

        _rot0 = rot0;
        _rot1 = rot1;
    }