894c3e6eba
git-svn-id: https://triangle.svn.codeplex.com/svn@69965 0e2699bc-83d4-4a8f-98e7-55e24ab8c7a5
28 lines
741 B
C#
28 lines
741 B
C#
// -----------------------------------------------------------------------
|
|
// <copyright file="IMeshRenderer.cs" company="">
|
|
// TODO: Update copyright text.
|
|
// </copyright>
|
|
// -----------------------------------------------------------------------
|
|
|
|
namespace MeshRenderer.Core
|
|
{
|
|
using System;
|
|
|
|
/// <summary>
|
|
/// TODO: Update summary.
|
|
/// </summary>
|
|
public interface IMeshRenderer
|
|
{
|
|
void Zoom(float x, float y, int delta);
|
|
void HandleResize();
|
|
|
|
void Initialize();
|
|
|
|
void SetData(RenderData data);
|
|
|
|
//void SetPoints(float[] points, int inputPoints);
|
|
//void SetTriangles(uint[] triangles);
|
|
//void SetSegments(uint[] segments);
|
|
}
|
|
}
|