摘要:
/// /// 计算两点间的角度 /// /// 原点坐标 /// 参考点坐标 /// 离心率 /// 返回两点间的角度 private double PointToAngle(Point AOrigin, Point APoint, double AEccentricity) { if (APoint.X == AOrigin.X) if (APoint.Y > ... 阅读全文
摘要:
转自:http://blog.sina.com.cn/s/blog_589d32f5010008m9.html function FindBitmapPoint( //寻找子位图的位置 mBitmapMain: TBitmap; //主位图 mBitmapSub: TBitmap //子位图 ): TPoint; //返回子图像存在的坐标,如不存在则返回(-1,-1) //设计 ... 阅读全文