tahoma2d/toonz/sources/include/tregionoutline.h
2016-06-15 15:43:10 +09:00

24 lines
396 B
C++

#pragma once
#ifndef TREGIONOUTLINE_H
#define TREGIONOUTLINE_H
class TRegionOutline {
public:
typedef std::vector<T3DPointD> PointVector;
typedef std::vector<PointVector> Boundary;
Boundary m_exterior, m_interior;
bool m_doAntialiasing;
TRectD m_bbox;
TRegionOutline() : m_doAntialiasing(false) {}
void clear() {
m_exterior.clear();
m_interior.clear();
}
};
#endif