码迷,mamicode.com
首页 >  
搜索关键字:surface book    ( 5453个结果
mysql的数据备份(转)
假设现在有表books:1.复制表结构1.1 含有主键等信息的完整表结构CREATE table 新表名 LIKE book;1.2 只有表结构,没有主键等信息create table 新表名 select * from books;或create table 新表名 as (select * fr...
分类:数据库   时间:2014-09-22 19:02:13    阅读次数:232
Yii model的待条件和排序查询
$criteria=newCDbCriteria; $criteria->addCondition("id=:id","and"); $criteria->params[‘:id‘]=$_POST[‘book_id‘]; $criteria->order="remove_timedesc"; $comments=BooksComments::model()->findAllByAttributes( array(‘book_id‘=>$_REQ..
分类:其他好文   时间:2014-09-21 20:18:21    阅读次数:196
【Web && 网络】从点击到呈现 — 详解一次HTTP请求
于是我想要按照自己的理解把这个过程尽可能详细的剖析出来,在行文上我打算按照时间线的方式,这样又好写,也好读,好理解。这应该会写成一个系列,刚好最近开始在看很多人都在推荐的热门书,http 权威指南,这本,http://book.douban.com/subject/10746113/,跟我想要说的差不多的,于是就一边当作是读书笔记吧 那我们就开始了,故事其实并不是从在浏览器的地址栏输入一个网址,或者我们抓着鼠标点击一个链接开始,事情的开端要追溯到服务器启动监听服务的时候,在某个未知的时刻,一台机房里普普...
分类:Web程序   时间:2014-09-21 19:47:31    阅读次数:257
python 类的基础知识
1、创建类 1 class Book(object):2 def __init__(self,b): #定义构造器3 self.name=b4 print self.name5 def updatename(self,a):6 s...
分类:编程语言   时间:2014-09-19 20:59:15    阅读次数:255
OpenCASCADE Rational Bezier Curves
Abstract. Although polynomials offer many advantages, there exist a number of important curve and surface types which cannot be represented precisely ...
分类:其他好文   时间:2014-09-19 20:52:26    阅读次数:405
ngx_http_hello
tengine.taobao.org/book/chapter_03.html程序解析:1,核心是定义三个结构体,分别是a,ngx_command_t(模块的配置结构):由于定义了自己的配置结构体typedef struct{ngx_str_t hello_string;ngx_int_t hell...
分类:其他好文   时间:2014-09-19 11:39:55    阅读次数:304
从头开始构建LINUX [LFS]
“LINUX就是这个范”有一章专门介绍了Linux的构建,过程详细,很有意思。结合这方面的资料简要汇集一下LFS这个站点提供了从源代码构建一个Linux的详细步骤书http://archive.linuxfromscratch.org/lfs-museum/stable/LFS-BOOK-7.5.p...
分类:系统相关   时间:2014-09-18 16:22:14    阅读次数:246
使用RampTexture来控制diffuse shading
【RampTexture】 RampTexture(渐变纹理),可以是1D/2D纹理. This allows you to accentuate the surface's colors to fake the effects of more bounce light or a more ad.....
分类:其他好文   时间:2014-09-18 13:04:43    阅读次数:250
Half Lambert
【Half Lambert】 Half Lambert was a technique created by Valve as a way of getting the lighting to show the surface of an object in low-light areas. It....
分类:其他好文   时间:2014-09-18 13:03:03    阅读次数:200
SurfaceShader自定义光照
【SurfaceShader自定义光照】1、在pragma中添加自定义光照函数名: #pragma surface surf BasicDiffuse2、实现自定义光照函数。下面就是Lambert光照模型。 _LightColor0是Unity提供的变量。3、有3种类型的光照函数可以选择: ...
分类:其他好文   时间:2014-09-17 20:13:42    阅读次数:271
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!