This file contains hidden or 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
| // MouseMove.cpp : 응용 프로그램에 대한 진입점을 정의합니다. | |
| // 출처 : 윈도우즈 32 API 프로그래밍 | |
| #include "stdafx.h" | |
| #include "MouseMove.h" | |
| #include <math.h> | |
| #define MAX_LOADSTRING 100 | |
| #define SIZE 40 |
This file contains hidden or 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
| """ | |
| #python 2.x | |
| """ | |
| import numpy as np | |
| import math | |
| import matplotlib.pyplot as plt | |
| class Point: |
OlderNewer