2022-05-15 13:58:31 +00:00
|
|
|
#include "Image.h"
|
|
|
|
#include "PngWriter.h"
|
2022-05-15 15:14:04 +00:00
|
|
|
#include "DrawingSurface.h"
|
|
|
|
#include "DrawingContext.h"
|
|
|
|
#include "Grid.h"
|
2022-11-14 11:19:51 +00:00
|
|
|
#include "Scene.h"
|
|
|
|
#include "RasterPainter.h"
|
2022-08-03 20:05:01 +00:00
|
|
|
#include "LineSegment.h"
|
|
|
|
#include "Point.h"
|
2022-11-13 17:02:09 +00:00
|
|
|
#include "TriMesh.h"
|
2022-05-15 13:58:31 +00:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2022-11-15 09:32:28 +00:00
|
|
|
/*
|
2022-05-15 13:58:31 +00:00
|
|
|
DrawingManager manager;
|
2022-08-03 20:05:01 +00:00
|
|
|
manager.InitalizeSurface(200, 200);
|
|
|
|
manager.InitializeContext();
|
|
|
|
|
2022-11-14 11:19:51 +00:00
|
|
|
auto line = LineSegment::Create(Point(10.0, 10.0), Point(190.0, 190.0));
|
2022-11-15 09:32:28 +00:00
|
|
|
*/
|
2022-08-03 20:05:01 +00:00
|
|
|
|
2022-05-15 13:58:31 +00:00
|
|
|
return 0;
|
|
|
|
}
|