Draw() public abstract method

public abstract Draw ( VertexStore vxs ) : void
vxs VertexStore
return void
Ejemplo n.º 1
0
        public static void Draw(this CanvasPainter p, VertexStoreSnap vxs, Color color)
        {
            Color prevColor = p.StrokeColor;

            p.StrokeColor = color;
            p.Draw(vxs);
            p.StrokeColor = prevColor;
        }