react-native-vision-camera/src/Point.ts
Marc Rousavy c04a4b72be Bootstrap
2021-02-19 16:07:53 +01:00

14 lines
237 B
TypeScript

/**
* Represents a Point in a 2 dimensional coordinate system.
*/
export interface Point {
/**
* The X coordinate of this Point. (double)
*/
x: number;
/**
* The Y coordinate of this Point. (double)
*/
y: number;
}