コード例 #1
0
        public void Create()
        {
            var attributeSet = new LASPointAttributeSet();

            attributeSet.Add(new LASPointAttribute <LASPointFormat_XYZ>());
            attributeSet.Add(new LASPointAttribute <ushort>());
            attributeSet.Add(new LASPointAttribute <LASPointFormat_Options>());
            attributeSet.Add(new LASPointAttribute <LASPointFormat_Classification>());
            attributeSet.Add(new LASPointAttribute <sbyte>());
            attributeSet.Add(new LASPointAttribute <byte>());
            attributeSet.Add(new LASPointAttribute <ushort>());
        }
コード例 #2
0
ファイル: LASPointFormat0.cs プロジェクト: jdauie/cloudae
 public void Create()
 {
     var attributeSet = new LASPointAttributeSet();
     attributeSet.Add(new LASPointAttribute<LASPointFormat_XYZ>());
     attributeSet.Add(new LASPointAttribute<ushort>());
     attributeSet.Add(new LASPointAttribute<LASPointFormat_Options>());
     attributeSet.Add(new LASPointAttribute<LASPointFormat_Classification>());
     attributeSet.Add(new LASPointAttribute<sbyte>());
     attributeSet.Add(new LASPointAttribute<byte>());
     attributeSet.Add(new LASPointAttribute<ushort>());
 }