2011|08|
2013|10|11|12|
2014|01|02|03|04|05|06|07|08|09|10|11|12|
2015|01|02|03|05|06|07|08|09|10|11|12|
2016|01|03|04|05|06|07|08|09|10|11|12|
2017|01|02|03|04|05|06|07|08|09|10|11|12|
2018|01|02|03|04|05|06|07|08|09|10|11|12|
2019|01|02|03|04|05|06|07|08|09|10|11|12|
2020|01|02|03|04|

2018-10-29 線の端っこを越えたことを判別する方法 [長年日記]

上の図 ↑ をクリックのこと
 
#include 
double rad0 = atan2(y1 -y0, x1-x0);
double rad1 = atan2(y1 -y', x1-x');
 
if (fabs(rad0 -rad1) >= pi * 0.5){
  # 点線を越えた
}