| 31 | } |
| 32 | |
| 33 | FloatGrid FloatGrid::deepCopy( const FloatGrid& other ) noexcept |
| 34 | { |
| 35 | if ( other ) |
| 36 | return MakeFloatGrid( other->deepCopy() ); |
| 37 | return other; |
| 38 | } |
| 39 | |
| 40 | OpenVdbFloatGrid* FloatGrid::get() const noexcept |
| 41 | { |
no test coverage detected