mirror of
https://github.com/godotengine/godot.git
synced 2024-11-29 15:42:29 +00:00
remove useless code
This commit is contained in:
parent
5823f90c53
commit
341ea429db
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user