This commit is contained in:
iutbgdin 2025-10-10 10:24:23 +02:00
parent 6ad7555ad7
commit c00ccdaf9c

View file

@ -38,7 +38,7 @@ Plane::Plane(std::string& txt) {
txt.erase(0, pos + 1); txt.erase(0, pos + 1);
it++; it++;
} }
tmp = txt.substr(0, txt.length - 1); tmp = txt.substr(0, txt.length() - 1);
this->pts.push_back(new Point(tmp)); this->pts.push_back(new Point(tmp));
} }