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.
35 lines
1.1 KiB
35 lines
1.1 KiB
using System; |
|
using System.Collections.Generic; |
|
|
|
namespace Kingo.Framework.LayerStyleConvert.XSDClass |
|
{ |
|
// Token: 0x02000084 RID: 132 |
|
public class GeometryClass |
|
{ |
|
// Token: 0x170001AD RID: 429 |
|
// (get) Token: 0x060004D4 RID: 1236 RVA: 0x00019440 File Offset: 0x00017640 |
|
// (set) Token: 0x060004D5 RID: 1237 RVA: 0x00019457 File Offset: 0x00017657 |
|
public List<double[]> Paths { get; set; } |
|
|
|
// Token: 0x170001AE RID: 430 |
|
// (get) Token: 0x060004D6 RID: 1238 RVA: 0x00019460 File Offset: 0x00017660 |
|
// (set) Token: 0x060004D7 RID: 1239 RVA: 0x00019477 File Offset: 0x00017677 |
|
public SpatialReference spatialReference { get; set; } |
|
|
|
// Token: 0x060004D8 RID: 1240 RVA: 0x00019480 File Offset: 0x00017680 |
|
public GeometryClass() |
|
{ |
|
List<double[]> list = new List<double[]>(); |
|
List<double[]> list2 = list; |
|
double[] array = new double[2]; |
|
array[0] = 0.5; |
|
list2.Add(array); |
|
List<double[]> list3 = list; |
|
array = new double[2]; |
|
array[0] = -0.5; |
|
list3.Add(array); |
|
this.Paths = list; |
|
this.spatialReference = new SpatialReference(); |
|
} |
|
} |
|
}
|
|
|