FloatingActionButton源码解析背景FloatingActionButton(下文以fab代替)是android support design组件库中提供的一个视图控件,是material design设计中fab的官方实现。此控件的官方介绍如下:
Floating action buttons are used for a promoted action. They are d...
分类:
其他好文 时间:
2016-05-03 10:52:44
阅读次数:
662
人们很早就在Quake3源代码中发现了类似如下的C代码,它可以快速的求1/sqrt(x),在3D图形向量计算方面应用很广
float invSqrt(float x)
{
float xhalf = 0.5 * x;
int i = *(int*)&x; // get bits for floating value
i = 0x5f3759df - (i >> 1); // gives ...
分类:
编程语言 时间:
2016-04-29 17:31:54
阅读次数:
385
https://msdn.microsoft.com/en-us/library/k9hz8w9t(v=vs.110).aspx Compares two single-precision floating point numbers for equality and, if they are eq ...
分类:
其他好文 时间:
2016-04-28 15:27:06
阅读次数:
143
人们很早就在Quake3源代码中发现了类似如下的C代码,它可以快速的求1/sqrt(x),在3D图形向量计算方面应用很广
float invSqrt(float x)
{
float xhalf = 0.5 * x;
int i = *(int*)&x; // get bits for floating value
i = 0x5f3759df - (i >> 1); // gives ...
分类:
编程语言 时间:
2016-04-26 19:43:29
阅读次数:
241
转载请注明 http://www.cnblogs.com/juandx/p/5418204.html openstack有3个库,nova,neutron,keystone,我现在需要做的是跨库联表查询虚机的信息 nova和neutron的连接关系在nova.instance_info_caches ...
分类:
数据库 时间:
2016-04-21 20:25:39
阅读次数:
278
1. gcc需要的一些lib GMP:A free library for arbitrary precision arithmetic, operating on signed integers, rational numbers, and floating-point numbers. MPFR ...
分类:
系统相关 时间:
2016-04-17 13:05:05
阅读次数:
169
PopupWindow的官方定义如下:A popup window that can be used to display an arbitrary view. The popup window is a floating container that appears on top of the current activity.也就是说它是一个浮动在当前界面上方并且可以显示在任意位置的View,...
分类:
移动开发 时间:
2016-04-08 12:05:42
阅读次数:
181
这两天用webbrower写东西,有时候打开SSL加密网站时会出现”Invalid floating point operation.”的错误,上网搜了下,把解决方法贴上。 导致原因 在Delphi2011中需要通过浮点单位控制指令设置浮点运算单位。浮点单位控制指令控制着浮点运算的精度、四舍五入的方 ...
十进制转二进制存储需要几位 m*2^e=a*10^b;log10(m)+e*log10(2)=log10(a)+b;m=1-2^(-i-1)e=2^j-1 ...
分类:
其他好文 时间:
2016-03-30 01:31:00
阅读次数:
280
头文件:#include <stdlib.h>函数 atof() 用于将字符串转换为双精度浮点数(double),其原型为:double atof (const char* str);atof() 的名字来源于 ascii to floating point numbers 的缩写,它会扫描参数st ...
分类:
编程语言 时间:
2016-03-26 18:31:57
阅读次数:
344