| 16 | namespace fl { |
| 17 | |
| 18 | Blend2d::Blend2d(const XYMap &xymap) : Fx2d(xymap) { |
| 19 | // Warning, the xyMap will be the final transrformation applied to the |
| 20 | // frame. If the delegate Fx2d layers have their own transformation then |
| 21 | // both will be applied. |
| 22 | mFrame = fl::make_shared<Frame>(mXyMap.getTotal()); |
| 23 | mFrameTransform = fl::make_shared<Frame>(mXyMap.getTotal()); |
| 24 | } |
| 25 | |
| 26 | string Blend2d::fxName() const { |
| 27 | fl::string out = "LayeredFx2d("; |