-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathLASwriteItemRaw_RGBNIR14.cs
54 lines (50 loc) · 1.48 KB
/
LASwriteItemRaw_RGBNIR14.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//===============================================================================
//
// FILE: laswriteitemraw_rgbnir14.cs
//
// CONTENTS:
//
// Implementation of LASwriteItemRaw for RGBNIR14 items.
//
// PROGRAMMERS:
//
// [email protected] - http://rapidlasso.com
//
// COPYRIGHT:
//
// (c) 2005-2012, martin isenburg, rapidlasso - tools to catch reality
// (c) of the C# port 2014 by Shinta <[email protected]>
//
// This is free software; you can redistribute and/or modify it under the
// terms of the GNU Lesser General Licence as published by the Free Software
// Foundation. See the COPYING file for more information.
//
// This software is distributed WITHOUT ANY WARRANTY and without even the
// implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
// CHANGE HISTORY: omitted for easier Copy&Paste (pls see the original)
//
//===============================================================================
using System;
namespace laszip.net
{
class LASwriteItemRaw_RGBNIR14 : LASwriteItemRaw
{
public LASwriteItemRaw_RGBNIR14() { }
public override bool write(laszip_point item)
{
try
{
outstream.Write(BitConverter.GetBytes(item.rgb[0]), 0, 2);
outstream.Write(BitConverter.GetBytes(item.rgb[1]), 0, 2);
outstream.Write(BitConverter.GetBytes(item.rgb[2]), 0, 2);
outstream.Write(BitConverter.GetBytes(item.rgb[3]), 0, 2);
}
catch
{
return false;
}
return true;
}
}
}