root/test/LineStyle/test02-cxx.C

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. main

#include <mingpp.h>
#include <cstdlib>


int main()
{
        try {
                SWFMovie *m = new SWFMovie(8);
                SWFShape *shape = new SWFShape();
        
                shape->setLine2(40, 25, 0, 0, 128, SWF_LINESTYLE_FLAG_HINTING | SWF_LINESTYLE_JOIN_BEVEL | SWF_LINESTYLE_FLAG_ENDCAP_SQUARE, 0);
                shape->movePenTo(5, 5);
                shape->drawLineTo(50, 100);
                shape->drawLineTo(100, 100);

                m->add(shape);
                m->save("test02.swf");
        }
        catch(SWFException &e)
        {
                std::cerr << "SWFException: " << e.what() << std::endl << std::endl;
                return EXIT_FAILURE;
        }
        return 0;
}

/* [<][>][^][v][top][bottom][index][help] */