PV3D* ParametricCurve::T(float t){
	PV3D* ret;
	ret = Cdiff(t);
	ret->normalize();
	return ret;
}