Constructor
| 46 | |
| 47 | // Constructor |
| 48 | Patch::Patch(PatchNode& node) : |
| 49 | _node(node), |
| 50 | _undoStateSaver(nullptr), |
| 51 | _transformChanged(false), |
| 52 | _tesselationChanged(true), |
| 53 | _shader(texdef_name_default()) |
| 54 | { |
| 55 | construct(); |
| 56 | } |
| 57 | |
| 58 | // Copy constructor (create this patch from another patch) |
| 59 | Patch::Patch(const Patch& other, PatchNode& node) : |
nothing calls this directly
no test coverage detected