1.随机数2.确认框3.按钮动画4.鼠标移到指定位置显示不同字符圆形:shape="circle",coords="x,y,z"这里的 x 和 y 定义了圆心的位置("0,0" 是图像左上角的坐标),r 是以像素为单位的圆形半径。多边形:shape="polygon",coords="x1,y1,x...
分类:
Web程序 时间:
2015-05-14 20:20:14
阅读次数:
135
PolygonCollider2D
我们的地图是这样的不规则形状,最开始简单用Box Collider处理点击,但是点击地图边缘时命中率很差。今天查到Unity有多边形Collider可以支持不规则形状,PolygonCollider2D。给地图【变异的开端】加上PolygonCollider2D,然后根据地图形状编辑Collider多边形,编辑好之后下图这样子。
点击实现需要注意的是NGUI中...
分类:
其他好文 时间:
2015-05-14 14:20:35
阅读次数:
256
转载:http://bbs.itiankong.com/thread-89555-1-1.htmlPLY 是一种电脑档案格式,全名为 多边形档案(Polygon File Format) 或 史丹佛三角形档案(Stanford Triangle Format)。在档案内容的储存上 PLY 有两种版本...
分类:
其他好文 时间:
2015-05-13 18:58:58
阅读次数:
129
紫书上推出来的公式1-(k+1)/2^(k)
注意范围 都用的long long
#include
#include
#include
using namespace std;
typedef long long ll;
ll gcd(ll a,ll b){
return b==0?a:gcd(b,a%b);
}
int main()
{
int n,kase=1;
s...
分类:
其他好文 时间:
2015-05-08 16:35:08
阅读次数:
144
Problem Description
A histogram is a polygon composed of a sequence of rectangles aligned at a common base line. The rectangles have equal widths but may have different heights. For example, the figur...
分类:
其他好文 时间:
2015-05-07 22:16:16
阅读次数:
143
直接使用pip install shapely 安装 shapely后,当import时会发生错误 from?shapely.geometry?import?Point,?LineString,?Polygon OSError:?Could?not?find?library?geos_c?or?load?any?of?its?v...
分类:
系统相关 时间:
2015-05-06 13:29:49
阅读次数:
558
题意:把一个矩形划分成n部分,再给出一堆点,求每个部分内落入了多少点sol attempt1:暴力注意每个polygon中的点要按笔画的顺序排列好。还有就是有的点可能落在了upper or lower edge,稍微处理一下(ans==1 or 2都算)TLE了 -_-|| 1 #include.....
分类:
其他好文 时间:
2015-05-01 21:09:11
阅读次数:
114
题目链接:HDU - 1506A histogram is a polygon composed of a sequence of rectangles aligned at a common base line. The rectangles have equal widths but may h...
分类:
其他好文 时间:
2015-04-27 01:52:18
阅读次数:
123
1.在google earth中绘制边界 工具栏中选择“Add Polygon”。随意绘制一个多边形。 右击添加的图层名(左侧)保存位置为,选择保存为kmz或kml文件。 kml文件往往只是一条路线,而kmz可以用winrar打开,选择其中的kml文件,输出即可。 2.kml文件转为shp 选择Ar...
分类:
其他好文 时间:
2015-04-25 15:00:27
阅读次数:
780
用EPA得到图形的嵌入方向之后, 就可以裁出碰撞点(边)了.首先需要找到图形在嵌入方向上最远的一条边.多边形:method getFarthestEdgeInDirection*(self: Polygon, direction: Vector2D): Line2D = var ...
分类:
其他好文 时间:
2015-04-24 01:02:46
阅读次数:
168