| 336 | }; |
| 337 | |
| 338 | class vtkRectd : public vtkRect<double> |
| 339 | { |
| 340 | public: |
| 341 | vtkRectd() = default; |
| 342 | vtkRectd(double x, double y, double width, double height) |
| 343 | : vtkRect<double>(x, y, width, height) |
| 344 | { |
| 345 | } |
| 346 | explicit vtkRectd(const double* init) |
| 347 | : vtkRect<double>(init) |
| 348 | { |
| 349 | } |
| 350 | }; |
| 351 | |
| 352 | VTK_ABI_NAMESPACE_END |
| 353 | #endif // vtkRect_h |
no outgoing calls