Exemple #1
0
        public static void MakeLines(this Curve3Div curve, VertexStore vxs)
        {
            ArrayList <Vector2> m_points = curve.GetInternalPoints();
            int j = m_points.Count;

            if (j > 0)
            {
                //others
                for (int i = 1; i < j; i++)
                {
                    var p = m_points[i];
                    vxs.AddLineTo(p.x, p.y);
                }
            }
        }
Exemple #2
0
 public static IEnumerable <VertexData> GetVertexIter(this Curve3Div curve)
 {
     throw new NotImplementedException();
 }