simple-draw/src/utils.hpp

19 lines
346 B
C++

//
// Created by shaohuatong on 06.12.19.
//
#ifndef SIMPLE_DRAW_UTILS_HPP
#define SIMPLE_DRAW_UTILS_HPP
#include "vkvm.hpp"
#include <cmath>
class utils {
public:
static int squareOfDistance(vkvm::Coordinates x, vkvm::Coordinates y);
static int getDistance(vkvm::Coordinates x, vkvm::Coordinates y);
};
#endif //SIMPLE_DRAW_UTILS_H