- 月収30万円
- 週3勤務
- 残りの週2日については副業、勉強、大学院、転職活動等に充ててよい
- 曜日はいい感じに調整、応相談
- 土日祝日は休み、休日はちゃんと休め
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
// Original code from https://gist.github.com/ialhashim/b29e5455333aa6ae0071#file-dbscan-hpp | |
// Code adapted from https://github.com/propanoid/DBSCAN | |
#include <vector> | |
#include <algorithm> | |
#include <omp.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# include <Siv3D.hpp> | |
# include <HamFramework.hpp> | |
class Ball | |
{ | |
public: | |
static const double SIZE; | |
static const Polygon POLYGONS[]; | |
static const Color COLORS[]; | |
const int mColor; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# include <Siv3D.hpp> | |
# include <HamFramework.hpp> | |
class Ball | |
{ | |
public: | |
static const double SIZE; | |
static const Polygon POLYGONS[]; | |
static const Color COLORS[]; | |
static Font FONT; |
OlderNewer