Scanbot SDK
Loading...
Searching...
No Matches
ScanbotSDKTypes.h
Go to the documentation of this file.
1
5
6#pragma once
7#ifndef SCANBOTSDK_TYPES_H
8#define SCANBOTSDK_TYPES_H
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
28
33typedef struct scanbotsdk_pointf_t {
37 float x;
41 float y;
43
48typedef struct scanbotsdk_rect_t {
52 int x;
56 int y;
60 int width;
64 int height;
66
71typedef struct scanbotsdk_rectf_t {
75 float x;
79 float y;
83 float width;
87 float height;
89
90#ifdef __cplusplus
91} /* extern "C" */
92#endif
93#endif /* SCANBOTSDK_TYPES_H */
int y
The y-coordinate of the point.
Definition ScanbotSDKTypes.h:26
int width
The width of the rectangle.
Definition ScanbotSDKTypes.h:60
float height
The height of the rectangle.
Definition ScanbotSDKTypes.h:87
int x
The x-coordinate of the point.
Definition ScanbotSDKTypes.h:22
float y
The y-coordinate of the point.
Definition ScanbotSDKTypes.h:41
float x
The x-coordinate of the point.
Definition ScanbotSDKTypes.h:37
int height
The height of the rectangle.
Definition ScanbotSDKTypes.h:64
float width
The width of the rectangle.
Definition ScanbotSDKTypes.h:83
Represents a point with integer coordinates.
Definition ScanbotSDKTypes.h:18
Represents a point with floating point coordinates.
Definition ScanbotSDKTypes.h:33
Represents a rectangle with integer coordinates.
Definition ScanbotSDKTypes.h:48
Represents a rectangle with floating point coordinates.
Definition ScanbotSDKTypes.h:71