OSDN Git Service

Move common type definition(e.g. rect,mtarix) move to SwfBaseType module.
[happyabc/happyabc.git] / swflib / swfBaseType.ml
1 type rect = {
2   left   : int;
3   right  : int;
4   top    : int;
5   bottom : int;
6 }
7
8 type matrix = {
9   scale:     (float * float) option;
10   rotate:    (float * float) option;
11   translate: (int*int)
12 }
13