好久没写shader了,有些生疏,刚弄了个植物shader,分享一下。
先上图片:
重点需要注意的是fragment shader的透明部分
需要如此声明
Tags{ "LightMode" = "ForwardBase" "Queue" = "AlphaTest" "IgnoreProjector" = "True" "RenderType" = "Tra...
分类:
编程语言 时间:
2015-04-30 14:16:16
阅读次数:
323
problem:
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.
Hide Tags
...
分类:
其他好文 时间:
2015-04-30 10:45:06
阅读次数:
113
Subversion有一个很标准的目录结构,是这样的。比如项目是proj,svn地址为svn://proj/,那么标准的svn布局是svn://proj/|+-trunk+-branches+-tags这是一个标准的布局,trunk为主开发目录,branches为分支开发目录,tags为tag存档目...
分类:
其他好文 时间:
2015-04-28 15:51:08
阅读次数:
176
经常扒别人网站文章的坑们;我是指那种批量式采集的压根不看内容的,少不了都会用到删除html标签的函数;这里介绍3种不同用途上的方法;$str='这里是p标签这里是a标签';1:删除全部或者保留指定html标签php自带的函数strip_tags即可满足要求,使用方法:strip_tags(strin...
分类:
Web程序 时间:
2015-04-28 01:34:51
阅读次数:
162
Date Fri
24 April 2015 Tags iOS / architect / thoughts
iOS应用架构谈 开篇
iOS应用架构谈 view层的组织和调用方案
iOS应用架构谈 网络层设计方案
iOS应用架构谈 动态部署方案
iOS应用架构谈 本地持久化方案
前言
《iOS应用架构谈...
分类:
移动开发 时间:
2015-04-27 15:19:47
阅读次数:
312
1 /** 2 * Created by Administrator on 2014/6/5 0005. Base-drag 基于Base库的拖拽插件 tags为你要拖拽的元素参数, 数组形式传入 3 */ 4 5 $().extend('drag', function () { 6 ...
分类:
其他好文 时间:
2015-04-25 19:36:39
阅读次数:
121
PHP标记 起始结束标记: 短标记:,需要通过激活php.ini中的short open tag配置指令或者在编译PHP时使用了配置选项-enable-short-tags时才能使用。 全文标记:如果文件内容是纯PHP代码,最好删除文件末尾的PHP结束标记,可以避免PHP输出不必要的内容。 脚本标记...
分类:
Web程序 时间:
2015-04-23 23:00:46
阅读次数:
136
problem:
Given an array where elements are sorted in ascending order, convert it to a height balanced BST.
Hide Tags
Tree Depth-first
Search
题意:将一个递增的序列 转换成一棵 平衡查找二叉树
...
分类:
其他好文 时间:
2015-04-23 10:59:34
阅读次数:
201
problem:
Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.
Hide Tags
Depth-first Search Linked
List
题意:给定一个递增的单链表,将其转...
分类:
其他好文 时间:
2015-04-23 10:58:24
阅读次数:
165
problem:
Given inorder and postorder traversal of a tree, construct the binary tree.
Note:
You may assume that duplicates do not exist in the tree.
Hide Tags
Tree Array Depth-first...
分类:
其他好文 时间:
2015-04-23 09:35:14
阅读次数:
157