30 lines
687 B
C#
30 lines
687 B
C#
using System.Windows;
|
|
|
|
namespace SM_WPF_TEST
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for Window1.xaml
|
|
/// </summary>
|
|
public partial class Window1 : Window
|
|
{
|
|
public Window1()
|
|
{
|
|
InitializeComponent();
|
|
|
|
/*GLWPFWindow2D gl;
|
|
Scene scene;
|
|
Content = gl = new GLWPFWindow2D();
|
|
gl.Start();
|
|
|
|
gl.SetScene(scene = new Scene());
|
|
gl.SetRenderPipeline(Basic2DPipeline.Pipeline);
|
|
|
|
DrawObject2D obj = new DrawObject2D()
|
|
{
|
|
Color = Color4.Red
|
|
};
|
|
obj.ApplyCircle();
|
|
scene.Objects.Add(obj);*/
|
|
}
|
|
}
|
|
}
|