| 125 | } |
| 126 | |
| 127 | void PointView::calculateBounds(BOX2D& output) const |
| 128 | { |
| 129 | for (PointId idx = 0; idx < size(); idx++) |
| 130 | { |
| 131 | double x = getFieldAs<double>(Dimension::Id::X, idx); |
| 132 | double y = getFieldAs<double>(Dimension::Id::Y, idx); |
| 133 | |
| 134 | output.grow(x, y); |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | |
| 139 | void PointView::calculateBounds(BOX3D& output) const |