예제 #1
0
        public void Prepare(ref FTOutlineFuncs func)
        {
            func.move_to  = this.move_to;
            func.line_to  = this.line_to;
            func.conic_to = this.conic_to;
            func.cubic_to = this.cubic_to;
            func.shift    = 0;
            func.delta    = 0;

            this.funcs = func;
        }
예제 #2
0
 public void Prepare()
 {
     this.funcs = new FTOutlineFuncs()
     {
         move_to  = this.move_to,
         line_to  = this.line_to,
         conic_to = this.conic_to,
         cubic_to = this.cubic_to,
         shift    = 0,
         delta    = 0
     };
 }
예제 #3
0
 public static extern int FT_Outline_Decompose(ref FTOutline outline, ref FTOutlineFuncs funcs, IntPtr user);