| 565 | bool shape::standard() const { return impl->m_standard; } |
| 566 | |
| 567 | shape shape::normalize_standard() const |
| 568 | { |
| 569 | if(this->standard()) |
| 570 | return {this->type(), this->lens()}; |
| 571 | else |
| 572 | return *this; |
| 573 | } |
| 574 | |
| 575 | shape shape::as_standard() const |
| 576 | { |