You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
437 B
26 lines
437 B
using GummingEntity;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace GummingEntity
|
|
{
|
|
public enum WayType
|
|
{
|
|
Default = 0,
|
|
SameDirector = 1, //同方向
|
|
BackWay = 2, //反向
|
|
GummingWay = 3, //反向
|
|
|
|
}
|
|
|
|
public class LineWay
|
|
{
|
|
public WayType WayTypeTag;
|
|
public bool Value;
|
|
public int Index;
|
|
public double Length;
|
|
}
|
|
}
|
|
|