码迷,mamicode.com
首页 >  
搜索关键字:floating point    ( 7266个结果
Cocos2d-x Render-NewCulling
.cpp layout->setBackGroundImageScale9Enabled(true); layout->setBackGroundImage("green_edit.png"); layout->setPosition(Point(0,0...
分类:其他好文   时间:2014-07-16 21:39:31    阅读次数:173
Windows Graphics Programming Win32 GDI and DirectDraw第六章疑问
《Windows Graphics Programming Win32 GDI and DirectDraw》6.1节中有这样的描述:The Windows NT/2000 graphics engine uses signed fixed-point numbers to represent co...
分类:Windows程序   时间:2014-07-16 20:12:18    阅读次数:321
Pascal小游戏 贪吃蛇
一段未完成的Pascal贪吃蛇说这段代码未完成其实是没有源代码格式化,FP中一行最多只有255字符宽。uses crt;const screenwidth=50;screenheight=24; wallchar='#'; snakechar='*'; ; type point=record x,y...
分类:其他好文   时间:2014-07-13 12:34:00    阅读次数:348
java中不常见的keyword:strictfp,transient
1.strictfp, 即 strict float point (精确浮点)。 strictfp keyword可应用于类、接口或方法。使用 strictfp keyword声明一个方法时,该方法中全部的float和double表达式都严格遵守FP-strict的限制,符合IEEE-754规范。....
分类:编程语言   时间:2014-07-13 11:59:07    阅读次数:245
环形矩阵
1.逆时针代码: 1 // huanxingjz.cpp : Defines the entry point for the console application. 2 // 3 4 #include "stdafx.h" 5 #include 6 #include 7 #include "...
分类:其他好文   时间:2014-07-13 09:53:40    阅读次数:246
【足迹C++primer】41、文本查询程序
/** * 功能:使用标准库:文本查询程序 * 时间:2014年7月10日09:10:15 * 作者:cutter_point */ #include #include #include #include #include #include #include #include using namespace std; using line_no=vector::size_type; /**...
分类:编程语言   时间:2014-07-11 00:16:17    阅读次数:305
九野的计算几何模版
#include #include #include #include #include using namespace std; #define point Point const double eps = 1e-8; const double PI = acos(-1.0); double ABS(double x){return x>0?x:-x;} int sgn(double x){...
分类:其他好文   时间:2014-07-10 23:54:16    阅读次数:253
Effective C++ Item 28 避免返回对象内部数据的引用或指针
经验:避免返回handles(包括 references、指针、迭代器)指向对象内部。遵守这个条款可增加封装性, 帮助 const 成员函数的行为像个 const,并将发生“虚吊号码牌”(dangling handles)的可能性降至最低。 示例: class Point{ public: Point(int x, int y); //... void setX(int newVal); void setY(int newVal); //... }; struct RectData{ Point...
分类:编程语言   时间:2014-07-10 22:56:05    阅读次数:230
Codeforces 32E Hide-and-Seek 求2点关于镜面反射 计算几何
题目链接:点击打开链接 需要注意的是镜子在与2个人共线时是不作为障碍物,但其他情况与墙一致 #include #include #include #include #include using namespace std; #define point Point const double eps = 1e-8; const double PI = acos(-1.0); double ABS(...
分类:其他好文   时间:2014-07-10 21:32:50    阅读次数:254
TYVJ计算几何
今天讲了计算几何,发几道水水的tyvj上的题解...计算几何好难啊!@Mrs.General....怎么办....这几道题都是在省选之前做的,所以前面的Point运算啊,dcmp啊,什么什么的,基本上没用,每次都把上次的main()函数删了接着继续写....原谅我曾经丑出翔的代码...虽然现在也很丑...
分类:其他好文   时间:2014-07-10 17:08:02    阅读次数:141
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!