Changeset 926
- Timestamp:
- 10/09/08 23:28:35 (3 months ago)
- Location:
- trunk/csharp/dotnetLibLAS
- Files:
-
- 4 modified
-
LASGuid.cs (modified) (1 diff)
-
LASHeader.cs (modified) (3 diffs)
-
LASPoint.cs (modified) (1 diff)
-
LASReader.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/csharp/dotnetLibLAS/LASGuid.cs
r918 r926 111 111 /// </summary> 112 112 /// <returns>the GUID opaque pointer</returns> 113 publicLASGuidH GetPointer()113 internal LASGuidH GetPointer() 114 114 { 115 115 return hguid; -
trunk/csharp/dotnetLibLAS/LASHeader.cs
r918 r926 84 84 85 85 /// Versions of point record format. 86 enum PointFormat86 public enum PointFormat 87 87 { 88 88 ///Point Data Format \e 0 … … 93 93 94 94 /// Number of bytes of point record storage in particular format. 95 enum PointSize95 public enum PointSize 96 96 { 97 97 ///Size of point record in data format \e 0 … … 116 116 /// </summary> 117 117 /// <returns>opaque pointer to the LASHeaderH instance.</returns> 118 publicLASHeaderH GetPointer()118 internal LASHeaderH GetPointer() 119 119 { 120 120 return hHeader; -
trunk/csharp/dotnetLibLAS/LASPoint.cs
r918 r926 183 183 /// </summary> 184 184 /// <returns>the opaque pointer to the LASPointH instance</returns> 185 publicLASPointH GetPointer()185 internal LASPointH GetPointer() 186 186 { 187 187 return hPoint; -
trunk/csharp/dotnetLibLAS/LASReader.cs
r918 r926 91 91 92 92 /// <summary> 93 /// 94 /// </summary> 95 /// <returns></returns> 96 public string GetVersion() 97 { 98 return CAPI.LAS_GetVersion(); 99 } 100 101 /// <summary> 93 102 /// get the current LASPoint. 94 103 /// </summary>
