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.

25 lines
602 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Unplugged.Segy
{
public class SurveyLine : ISurveyLine
{
public double StartX { get; set; } = -1;
public double StartY { get; set; } = -1;
public double EndX { get; set; } = -1;
public double EndY { get; set; } = -1;
public int LineNo { get; set; } = -1;
public bool IsEmpty {
get
{
return !(StartX > 0 && StartY > 0 && EndX > 0 && EndY > 0);
}
}
}
}