Former-commit-id:133dc97f67
[formerlya02aeb236c
] [formerly9f19e3f712
] [formerly06a8b51d6d
[formerly9f19e3f712
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]]] Former-commit-id:06a8b51d6d
Former-commit-id:377dcd10b9
[formerly3360eb6c5f
] Former-commit-id:8e80217e59
27 lines
525 B
C
27 lines
525 B
C
#ifndef HRAP_BIN_ASSIGN_H
|
|
#define HRAP_BIN_ASSIGN_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <math.h>
|
|
|
|
#include "LineSegment.h"
|
|
|
|
#include "linesegs_defs.h"
|
|
|
|
#include "geoutil.h" /* utilities */
|
|
#include "convert_hrap.h"
|
|
|
|
|
|
/* prototypes */
|
|
|
|
void getHrapBinListFromSegments(const LineSegment segments[],
|
|
long numSegments,
|
|
HrapBinList *binList);
|
|
|
|
double getHrapBinArea(double row, double col);
|
|
|
|
void printHrapBinList(const HrapBinList *binList);
|
|
|
|
#endif
|