2012-01-19 03:30:22 -07:00
|
|
|
unsigned size() const { return x.size(); }
|
|
|
|
|
|
|
|
coord operator[] (unsigned idx) const {
|
2012-01-21 06:18:53 -07:00
|
|
|
if (idx >= x.size())
|
2012-01-19 03:30:22 -07:00
|
|
|
return coord();
|
|
|
|
else
|
|
|
|
return coord(x[idx], y[idx], z[idx]);
|
|
|
|
}
|
2012-01-21 06:18:53 -07:00
|
|
|
|
|
|
|
void erase(unsigned idx) {
|
|
|
|
if (idx < x.size()) {
|
|
|
|
x.erase(x.begin()+idx);
|
|
|
|
y.erase(y.begin()+idx);
|
|
|
|
z.erase(z.begin()+idx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void push_back(const coord &crd) {
|
|
|
|
x.push_back(crd.x);
|
|
|
|
y.push_back(crd.y);
|
|
|
|
z.push_back(crd.z);
|
|
|
|
}
|