예제 #1
0
 public void RelToAbs(ref T x, ref T y)
 {
     if (m_vertices.TotalVertices() != 0)
     {
         T x2;
         T y2;
         if (Path.IsVertex(m_vertices.LastVertex(out x2, out y2)))
         {
             x.AddEquals(x2);
             y.AddEquals(y2);
         }
     }
 }