示例#1
0
 public void Read(TTFReader r)
 {
     v.x = r.ReadFDot14();
     v.y = r.ReadFDot14();
     v.z = r.ReadFDot14();
     v.w = r.ReadFDot14();
 }
示例#2
0
        public void Read(TTFReader r, int ct)
        {
            if (this.coordinates == null)
            {
                this.coordinates = new List <float>();
            }

            for (int i = 0; i < ct; ++i)
            {
                coordinates.Add(r.ReadFDot14());
            }
        }
 public void Read(TTFReader r)
 {
     this.startCoord = r.ReadFDot14();
     this.peakCoord  = r.ReadFDot14();
     this.endCoord   = r.ReadFDot14();
 }