a9de99f651
git-svn-id: https://triangle.svn.codeplex.com/svn@75023 0e2699bc-83d4-4a8f-98e7-55e24ab8c7a5
24 lines
809 B
C#
24 lines
809 B
C#
// -----------------------------------------------------------------------
|
|
// <copyright file="IGenerator.cs" company="">
|
|
// Christian Woltering, Triangle.NET, http://triangle.codeplex.com/
|
|
// </copyright>
|
|
// -----------------------------------------------------------------------
|
|
|
|
namespace MeshExplorer.Generators
|
|
{
|
|
using TriangleNet.Geometry;
|
|
|
|
/// <summary>
|
|
/// Interface for generating input geometries.
|
|
/// </summary>
|
|
public interface IGenerator
|
|
{
|
|
string Name { get; }
|
|
string Description { get; }
|
|
int ParameterCount { get; }
|
|
string ParameterDescription(int paramIndex);
|
|
string ParameterDescription(int paramIndex, double paramValue);
|
|
IPolygon Generate(double param1, double param2, double param3);
|
|
}
|
|
}
|