码迷,mamicode.com
首页 >  
搜索关键字:rectangle area    ( 3610个结果
jquery json ajax三级联动
province_city_area.jsp 1 2 3 4 5 6 7 8 14 15 18 19 22 61 62 ProvineCityAreaJsonServlet.java 1...
分类:Web程序   时间:2014-06-27 11:33:06    阅读次数:259
Leetcode Maximal Rectangle
Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing all ones and return its area.时间复杂度O(n^3),最大全1子矩阵,利用直方图求解,可以参考对...
分类:其他好文   时间:2014-06-26 15:08:46    阅读次数:164
无限级分类
$area = array(array('id'=>1,'name'=>'安徽','parent'=>0),array('id'=>2,'name'=>'海淀','parent'=>7),array('id'=>3,'name'=>'濉溪县','parent'=>5),array('id'=>4,'...
分类:其他好文   时间:2014-06-25 11:05:07    阅读次数:273
Unity光照
广义地说,Unity有2种光源。1.动态光源 2.Backed Lighting1.动态光源就是实时计算的。只要摆光源就可以了2.Backed Lighting提前处理好光照贴图。贴在物体上。Point: 角度无关紧要Directional: 位置无关紧要Spot: 角度和位置都有影响Area (B...
分类:其他好文   时间:2014-06-23 00:54:24    阅读次数:258
C# 绘制窗体客户非客户区要用WM_PAINT和WM_NCPAINT
窗体分为两部分:客户区(Client area)和非客户区(Non-Client area)WM_PAINT消息、OnPaint()方法、GetDC()API函数都是处理窗体客户区绘制的而标题栏处于非客户区中,所以WM_PAINT消息、OnPaint()方法、GetDC()API函数都用不上GetW...
分类:Windows程序   时间:2014-06-23 00:26:08    阅读次数:635
[工作记录] Android OpenGL ES 2.0: square texture not supported on some device
npot texture: non-power-of-two texture.rectangle texture: non-square (height != wdith)在测试Samsumg Galaxy S4的时候, 发现rectangle texture支持不好, 虽然创建成功, 但是绘制有问...
分类:移动开发   时间:2014-06-22 23:17:17    阅读次数:240
共享内存
from:unix高级环境编程 unix/linux中共享内存是最高效的ipc方式。 有几种使用方式: 1)mmap /dev/zero设备: fd = open("/dev/zero", O_RDWR); area = mmap(0, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); close(fd); 加入MAP_SHARE...
分类:其他好文   时间:2014-06-22 06:21:16    阅读次数:215
CCNA 6.5
no sh (no shutdown : start the interface)router rspf 1network x.x.x.x x.x.x.x area 0int (interface)show ip route (to see routing table entries)RIPRtr(...
分类:其他好文   时间:2014-06-21 00:03:48    阅读次数:319
在文件中读取、存储Json格式的字符串
public class Weather { static readonly string FilePath = System.Environment.CurrentDirectory + @"\Area.txt"; public static Models.Are...
分类:Web程序   时间:2014-06-18 19:31:48    阅读次数:140
ARM体系结构与编程-5
GET通常用于包含定义常量的源文件。 例如:GET 2440addr.inc 用AREA定义一个段,ENTRY用于指定程序的入口点,END用于告诉汇编器源文件已经结束。 例如: AREA init, CODE, READONLY ENTRY ...... END EQU用于定义常量,提醒:在每条ARM指令前必须有空格,但是用EQU定义常量时,必须顶格写,否则编译器报错。 LT...
分类:其他好文   时间:2014-06-18 06:12:59    阅读次数:244
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!