70b25002dc
git-svn-id: https://triangle.svn.codeplex.com/svn@75033 0e2699bc-83d4-4a8f-98e7-55e24ab8c7a5
29 lines
804 B
C#
29 lines
804 B
C#
// -----------------------------------------------------------------------
|
|
// <copyright file="IMeshRenderer.cs" company="">
|
|
// TODO: Update copyright text.
|
|
// </copyright>
|
|
// -----------------------------------------------------------------------
|
|
|
|
namespace TriangleNet.Rendering
|
|
{
|
|
using System;
|
|
using System.Windows.Forms;
|
|
using System.Drawing;
|
|
|
|
/// <summary>
|
|
/// TODO: Update summary.
|
|
/// </summary>
|
|
public interface IRenderControl
|
|
{
|
|
IRenderer Renderer { get; set; }
|
|
Rectangle ClientRectangle { get; }
|
|
|
|
void Initialize();
|
|
void Refresh();
|
|
|
|
void HandleMouseClick(float x, float y, MouseButtons button);
|
|
void HandleMouseWheel(float x, float y, int delta);
|
|
void HandleResize();
|
|
}
|
|
}
|