예제 #1
0
 public InternalKeyPoint(DataType.KeypointType type, XYZ cord) : base(type, cord)
 {
 }
예제 #2
0
 public ExternalKeyPoint(DataType.KeypointType type, XYZ cord, double size, DataType.ConnectionType endtype = ConnectionType.NONE) : base(type, cord)
 {
     this.Size           = size;
     this.CoonectionType = endtype;
 }
예제 #3
0
 public BranchPoint(int number, DataType.KeypointType type, XYZ cord, double size, DataType.ConnectionType endtype = ConnectionType.NONE) : base(type, cord, size, endtype)
 {
     this.Number = number;
 }
예제 #4
0
 public KeyPoint(DataType.KeypointType type, XYZ cord)
 {
     this.Type       = type;
     this.Coordinate = new Coordinate(cord);
 }