blob: b6b64f92d987e8a0b324bc328ea50b4ad106b774 [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package io.flutter.plugins.camera.features;
/** Represents a point on an x/y axis. */
public class Point {
public final Double x;
public final Double y;
public Point(Double x, Double y) {
this.x = x;
this.y = y;
}
}