Skip to content
Snippets Groups Projects
Commit a181fa70 authored by Alecu100's avatar Alecu100
Browse files

fixed a bug in the appendfloatcontrolpoints method of the splinedata

parent 4aec784a
No related branches found
No related tags found
No related merge requests found
......@@ -161,7 +161,7 @@ void NiBSplineData::AppendFloatControlPoints( vector<float> value )
{
this->numFloatControlPoints += value.size();
for(int i = 0; i < this->floatControlPoints.size(); i++) {
for(int i = 0; i < value.size(); i++) {
this->floatControlPoints.push_back(value[i]);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment