54f5c94eba
git-svn-id: https://triangle.svn.codeplex.com/svn@67986 0e2699bc-83d4-4a8f-98e7-55e24ab8c7a5
34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
// -----------------------------------------------------------------------
|
|
// <copyright file="IMeshFormat.cs" company="">
|
|
// TODO: Update copyright text.
|
|
// </copyright>
|
|
// -----------------------------------------------------------------------
|
|
|
|
namespace MeshExplorer.IO
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using TriangleNet;
|
|
using TriangleNet.IO;
|
|
|
|
/// <summary>
|
|
/// Defines an interface for mesh file formats.
|
|
/// </summary>
|
|
public interface IMeshFile : IGeometryFormat, IMeshFormat
|
|
{
|
|
/// <summary>
|
|
/// The supported file extensions.
|
|
/// </summary>
|
|
string[] Extensions { get; }
|
|
|
|
/// <summary>
|
|
/// Return true, if a (previously saved) mesh is associated with the given file.
|
|
/// </summary>
|
|
/// <param name="filename">The file name.</param>
|
|
/// <returns>True, if a mesh is associated with the given file.</returns>
|
|
bool ContainsMeshData(string filename);
|
|
}
|
|
}
|