remove useless code

This commit is contained in:
quabug 2015-01-16 14:39:11 +08:00
parent 5823f90c53
commit 341ea429db

View file

@ -541,19 +541,12 @@ void Curve2D::_bake() const {
Vector2 pos=points[0].pos;
int point=0;
float ofs=0;
List<Vector2> pointlist;
for(int i=0;i<points.size()-1;i++) {
float slen=points[i].pos.distance_to(points[i+1].pos);
float divs = slen / bake_interval;
if (divs>1)
divs=1;
float step = 0.1; // 10 substeps ought to be enough?
float step = 0.1; // at least 10 substeps ought to be enough?
float p = 0;
while(p<1.0) {
@ -1014,19 +1007,12 @@ void Curve3D::_bake() const {
Vector3 pos=points[0].pos;
int point=0;
float ofs=0;
List<Plane> pointlist;
pointlist.push_back(Plane(pos,points[0].tilt));
for(int i=0;i<points.size()-1;i++) {
float slen=points[i].pos.distance_to(points[i+1].pos);
float divs = slen / bake_interval;
if (divs>1)
divs=1;
float step = 0.1; // 10 substeps ought to be enough?
float step = 0.1; // at least 10 substeps ought to be enough?
float p = 0;
while(p<1.0) {