tahoma2d/toonz/sources/toonzlib/sandor_fxs/CallParam.h

26 lines
669 B
C
Raw Normal View History

2016-05-17 03:04:11 +12:00
#pragma once
2016-03-19 06:57:51 +13:00
// CallParam.h: interface for the CCallParam class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_CALLPARAM_H__2B094D95_25D9_11D6_B9C6_0040F674BE6A__INCLUDED_)
#define AFX_CALLPARAM_H__2B094D95_25D9_11D6_B9C6_0040F674BE6A__INCLUDED_
#include "CIL.h"
2016-06-15 18:43:10 +12:00
class CCallParam {
2016-03-19 06:57:51 +13:00
public:
2016-06-15 18:43:10 +12:00
double m_thickness;
double m_rH, m_rLR, m_rV, m_rRL;
double m_accuracy, m_randomness;
CCIL m_ink, m_paint;
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
CCallParam();
CCallParam(const int argc, const char *argv[], const int shrink);
virtual ~CCallParam();
bool isOK();
2016-03-19 06:57:51 +13:00
};
2016-06-15 18:43:10 +12:00
#endif // !defined(AFX_CALLPARAM_H__2B094D95_25D9_11D6_B9C6_0040F674BE6A__INCLUDED_)