blob: 90cc292e757236efc0116e6e28f670bcb31da269 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "Layer.h"
class SmoothZoomLayer : public Layer
{
public:
SmoothZoomLayer(int64_t seedMixup, shared_ptr<Layer>parent);
virtual intArray getArea(int xo, int yo, int w, int h);
static shared_ptr<Layer>zoom(int64_t seed, shared_ptr<Layer>sup, int count);
};
|