예제 #1
0
        public FTVector Rotate(Fixed16Dot16 angle)
        {
            FTVector copy = this;

            FT.FT_Vector_Rotate(ref copy, (IntPtr)angle.Value);
            return(copy);
        }
예제 #2
0
 public FTVector(Fixed16Dot16 x, Fixed16Dot16 y)
 {
     _x = (IntPtr)x.Value;
     _y = (IntPtr)y.Value;
 }