You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
450 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Unplugged.Segy
{
/// <summary>
/// 测线
/// </summary>
public interface ISurveyLine
{
double StartX { get; set; }
double StartY { get; set; }
double EndX { get; set; }
double EndY { get; set; }
int LineNo { get; set; }
bool IsEmpty { get; }
}
}