tahoma2d/toonz/sources/tnztools/autofill.h
Toshihiro Shimizu 890dddabbd first commit
2016-03-19 02:57:51 +09:00

22 lines
838 B
C++

#ifndef _AUTOFILL_H_
#define _AUTOFILL_H_
#include "ttoonzimage.h"
#include "tvectorimage.h"
class TTileSetCM32;
void rect_autofill_learn(const TToonzImageP &imgToLearn, int x1, int y1, int x2, int y2);
bool rect_autofill_apply(const TToonzImageP &imgToApply, int x1, int y1, int x2, int y2, bool selective, TTileSetCM32 *tileSet);
void autofill_learn(const TToonzImageP &imgToLearn);
bool autofill_apply(const TToonzImageP &imgToApply, bool selective, TTileSetCM32 *tileSet);
void rect_autofill_learn(const TVectorImageP &imgToLearn, const TRectD &rect);
bool rect_autofill_apply(const TVectorImageP &imgToApply, const TRectD &rect, bool selective);
void stroke_autofill_learn(const TVectorImageP &imgToLearn, TStroke *stroke);
bool stroke_autofill_apply(const TVectorImageP &imgToApply, TStroke *stroke, bool selective);
#endif