blob: b2ac4e78502ced7df7cffb83704d18c789509de3 (
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 seedMixup, shared_ptr<Layer>parent);
virtual intArray getArea(int xo, int yo, int w, int h);
static shared_ptr<Layer>zoom(__int64 seed, shared_ptr<Layer>sup, int count);
};
|