a9de99f651
git-svn-id: https://triangle.svn.codeplex.com/svn@75023 0e2699bc-83d4-4a8f-98e7-55e24ab8c7a5
54 lines
1.1 KiB
C#
54 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using TriangleNet;
|
|
using System.Diagnostics;
|
|
using TriangleNet.Geometry;
|
|
|
|
namespace MeshExplorer.Views
|
|
{
|
|
public partial class AboutView : UserControl, IView
|
|
{
|
|
public AboutView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void lbCodeplex_Clicked(object sender, EventArgs e)
|
|
{
|
|
try
|
|
{
|
|
ProcessStartInfo info = new ProcessStartInfo("http://triangle.codeplex.com/");
|
|
Process.Start(info);
|
|
}
|
|
catch (Exception)
|
|
{ }
|
|
}
|
|
|
|
#region IView
|
|
|
|
public void HandleNewInput(IPolygon geometry)
|
|
{
|
|
}
|
|
|
|
public void HandleMeshImport(IPolygon geometry, Mesh mesh)
|
|
{
|
|
}
|
|
|
|
public void HandleMeshUpdate(Mesh mesh)
|
|
{
|
|
}
|
|
|
|
public void HandleMeshChange(Mesh mesh)
|
|
{
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|