码迷,mamicode.com
首页 >  
搜索关键字:floating point    ( 7266个结果
POJ 3348
水题。不过,题意。。呵呵了。。围一个凸包,求出面积,然后除以50就可以了。#include #include #include #include using namespace std;const int MAXN=10500;struct point { int x,y;}p[MAXN];int ...
分类:其他好文   时间:2014-07-31 23:47:30    阅读次数:328
Level Of Detail
【Level Of Detail】 Here's one of the ways to set up an object with differentLODs. At this point the empty object should contain both versions of th...
分类:其他好文   时间:2014-07-31 16:03:16    阅读次数:253
角色头上冒数字
/// /// Floating text./// the GUI Text Floating system/// using UnityEngine;using System.Collections;public class FloatingText : MonoBehaviour { pu...
分类:其他好文   时间:2014-07-31 12:21:46    阅读次数:210
【足迹C++primer】60、重载和模板
重载和模板 /** * 功能:重载和模板 * 时间:2014年7月27日16:23:32 * 作者:cutter_point */ #include #include #include using namespace std; /** 重载模板书写 */ template string debug_rep(const T &t) { ostringstream ret;...
分类:编程语言   时间:2014-07-31 09:55:37    阅读次数:288
【足迹C++primer】59、模板左值右值的转换
模板左值右值的转换 /** * 功能:模板左值右值的转换 * 时间:2014年7月27日08:18:06 * 作者:cutter_point */ #include #include #include using namespace std; template auto fcn(It beg, It end) -> typename remove_reference::ty...
分类:编程语言   时间:2014-07-31 09:55:27    阅读次数:312
[LeetCode] Container With Most Water
Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpo...
分类:其他好文   时间:2014-07-30 12:05:03    阅读次数:248
复杂链表的复制
问题描述: A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null. Return a deep copy of the list. 解题思路: 将1->2->3->4->NUL...
分类:其他好文   时间:2014-07-30 10:07:54    阅读次数:259
POJ 1106
先判断是否在圆内,然后用叉积判断是否在180度内。枚举判断就可以了。。。感觉是数据弱了。。#include #include #include #include #include using namespace std;const double eps=0.00000001;struct point...
分类:其他好文   时间:2014-07-30 00:25:52    阅读次数:292
凸包 及 多边形面积
首先求多边形面积,这个比较简单,用的就是把一个多边形划分为多个三角形,然后求三角形面积。 代码:double Cross(Vector A,Vector B) { return (A.x*B.y-A.y*B.x); } double ConvexPolygonArea(Point* p,int n)//多边形面积,,点按顺序 { double area=0; for(int i=...
分类:其他好文   时间:2014-07-29 17:50:32    阅读次数:220
POJ 3626 Mud Puddles
Description Farmer John is leaving his house promptly at 6 AM for his daily milking of Bessie. However, the previous evening saw a heavy rain, and the fields are quite muddy. FJ starts at the point...
分类:其他好文   时间:2014-07-29 17:47:12    阅读次数:247
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!