~ubuntu-branches/ubuntu/trusty/liblas/trusty-proposed

« back to all changes in this revision

Viewing changes to apps/lascommon.h

  • Committer: Package Import Robot
  • Author(s): Francesco Paolo Lovergine
  • Date: 2014-01-05 17:00:29 UTC
  • mfrom: (7.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140105170029-ddtp0j63x5jvck2u
Tags: 1.7.0+dfsg-2
Fixed missing linking of system boost component.
(closes: #733282)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
 
 
3
#ifndef LASCOMMON_H_INCLUDED
 
4
#define LASCOMMON_H_INCLUDED
 
5
 
 
6
 
 
7
/**
 
8
 * \todo to be documented
 
9
 */
 
10
typedef struct  {
 
11
 
 
12
    double t;
 
13
    double x, y, z;
 
14
    unsigned short intensity;
 
15
    unsigned char cls;
 
16
    char scan_angle;
 
17
    unsigned char user_data;
 
18
    unsigned short retnum;
 
19
    unsigned short numret;
 
20
    unsigned short scandir;
 
21
    unsigned short fedge;
 
22
    unsigned short red;
 
23
    unsigned short green;
 
24
    unsigned short blue;
 
25
    long rgpsum;    
 
26
    int number_of_point_records;
 
27
    int number_of_points_by_return[8];
 
28
    int number_of_returns_of_given_pulse[8];
 
29
    int classification[32];
 
30
    int classification_synthetic;
 
31
    int classification_keypoint;
 
32
    int classification_withheld;
 
33
    LASPointH pmax;
 
34
    LASPointH pmin;
 
35
} LASPointSummary;
 
36
 
 
37
#endif