码迷,mamicode.com
首页 >  
搜索关键字:polygon    ( 338个结果
《zw版·Halcon-delphi系列原创教程》 Halcon分类函数012,polygon,多边形
《zw版·Halcon-delphi系列原创教程》 Halcon分类函数012,polygon,多边形为方便阅读,在不影响说明的前提下,笔者对函数进行了简化::: 用符号“**”,替换:“procedure”:: 用大写字母“X”,替换:“IHUntypedObjectX”:: 省略了字符:“con...
分类:Windows程序   时间:2015-10-14 12:02:41    阅读次数:321
【计算几何】多边形
2.多边形(polygon.pas/c/cpp)【问题描述】在平面直角坐标系中给出一个顶点横纵坐标均为整数的简单多边形[1],求在这个多边形内部有多少个横纵坐标均为整数的点。【输入】输入文件名为polygon.in,共 行,第一行包含一个正整数 。下面共 行,每行包含两个整数 ,依次表示多边形顶点的...
分类:其他好文   时间:2015-10-13 22:50:47    阅读次数:170
Convert Geometry data into a Geography data in MS SQL Server
DECLARE @geog GEOGRAPHY;DECLARE @geom GEOMETRY;SET @geom = GEOMETRY::STGeomFromText('POLYGON ((-99.213546752929688 19.448402404785156, -99.21579742431...
分类:数据库   时间:2015-09-14 12:07:31    阅读次数:292
c++ virturn function -- 虚函数
c++ virturn function -- 虚函数pure irtual function -- 纯虚函数先看例子#include using namespace std;class Polygon {protected:int width, height;public:void set_val...
分类:编程语言   时间:2015-09-04 07:28:09    阅读次数:266
poj 2002 Squares
题目连接http://poj.org/problem?id=2002SquaresDescriptionA square is a 4-sided polygon whose sides have equal length and adjacent sides form 90-degree angl...
分类:其他好文   时间:2015-09-01 19:53:23    阅读次数:166
hdu 1506 Largest Rectangle in a Histogram(单调栈)
Largest Rectangle in a HistogramA histogram is a polygon composed of a sequence of rectangles aligned at a common base line. The rectangles have equal...
分类:其他好文   时间:2015-08-28 14:58:38    阅读次数:169
数学:知道n边形各顶点坐标,求面积
方法一: float ? area_of_polygon(int ? vcount,float ? x[],float ? y[])? {? ? ? int ? i;? ? ? float ? s;? ? ? if ? (vcount <3) ? return ? 0;? ? ? s=y[0]*(x[vcount-1]-x[1]);? ?...
分类:其他好文   时间:2015-08-28 13:44:56    阅读次数:246
[CareerCup] 7.2 Ants on Polygon 多边形上的蚂蚁
7.2 There are three ants on different vertices of a triangle. What is the probability of collision (between any two or all of them) if they start walk...
分类:其他好文   时间:2015-08-28 12:39:05    阅读次数:138
poj2002 哈希
Squares Time Limit: 3500MS   Memory Limit: 65536K Total Submissions: 17666   Accepted: 6735 Description A square is a 4-sided polygon whose sides have equal length and adja...
分类:其他好文   时间:2015-08-21 23:24:31    阅读次数:219
uva 10335 - Ray Inside a Polygon(几何)
题目链接:uva 10335 - Ray Inside a Polygon 恶心题,注意精度和输出等问题,代码中有标识,后面有一些数据。 #include #include #include #include #include using namespace std; const double pi = 4 * atan(1); const double eps =...
分类:其他好文   时间:2015-08-17 21:46:04    阅读次数:100
338条   上一页 1 ... 19 20 21 22 23 ... 34 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!