HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/self/root/var/www/node-app/node_modules/canvas/src/
Upload File :
Current File : //proc/self/root/var/www/node-app/node_modules/canvas/src/Point.h
// Copyright (c) 2010 LearnBoost <tj@learnboost.com>
#pragma once

template <typename T>
class Point {
  public:
    T x, y;
    Point(T x=0, T y=0): x(x), y(y) {}
    Point(const Point&) = default;
    Point& operator=(const Point&) = default;
};