nx_metadata_sdk  1.0
Metadata SDK
point.h
1 // Copyright 2018-present Network Optix, Inc. Licensed under MPL 2.0: www.mozilla.org/MPL/2.0/
2 
3 #pragma once
4 
5 namespace nx {
6 namespace sdk {
7 namespace analytics {
8 
9 struct Point
10 {
11  Point() = default;
12 
13  Point(float x, float y): x(x), y(y) {}
14 
18  float x = -1;
19 
23  float y = -1;
24 };
25 
26 } // namespace analytics
27 } // namespace sdk
28 } // namespace nx
float y
Definition: point.h:23
Definition: apple_utils.h:6
Definition: point.h:9
float x
Definition: point.h:18