Shader "Custom/UVanim" {Properties{_Color("Color", Color) = (1,1,1,1)_MainTex("Albedo (RGB)", 2D) = "white" {}_Glossiness("Smoothness", Range(0,1)) = ...
分类:
其他好文 时间:
2016-08-18 21:01:52
阅读次数:
141
http://poj.org/problem?id=3069 Saruman the White must lead his army along a straight path from Isengard to Helm’s Deep. To keep track of his forces, S ...
分类:
其他好文 时间:
2016-08-17 21:05:57
阅读次数:
194
How many roads must a man walk down Before they call him a man How many seas must a white dove sail Before she sleeps in the sand How many times must ...
1. word-break:break-all;只对英文起作用,以字母作为换行依据 2. word-wrap:break-word; 只对英文起作用,以单词作为换行依据 3. white-space:pre-wrap; 只对中文起作用,强制换行 4. white-space:nowrap; 强制不换 ...
分类:
Web程序 时间:
2016-08-17 13:35:19
阅读次数:
175
Given a string s and a dictionary of words dict, add spaces in s to construct a sentence where each word is a valid dictionary word. Return all such p ...
分类:
其他好文 时间:
2016-08-15 22:06:17
阅读次数:
109
text-overflow text-overflow用来设置是否使用一个省略标记(...)标示对象内文本的溢出。 语法: 但是text-overflow只是用来说明文字溢出时用什么方式显示,要实现溢出时产生省略号的效果,还须定义强制文本在一行内显示(white-space:nowrap)及溢出内容 ...
分类:
Web程序 时间:
2016-08-14 21:56:01
阅读次数:
148
所谓白平衡(White Balance):指在图像处理的过程中,对原本材质为白色的物体的图像进行色彩还原,去除外部光源色温的影响,使其在照片上也显示白色。也就是不管在任何光源下,都能将白色物体还原为白色。 白色是指反射到人眼中的光线由于蓝、绿、红三种色光比例相同且具有一定的亮度所形成的视觉反应。我们 ...
分类:
其他好文 时间:
2016-08-12 20:07:29
阅读次数:
179
background-color:#000; background-size:cover; background-position:50% 50%; text-align:center; color:white; (background-size是css3中新增的属性,background-size ...
分类:
其他好文 时间:
2016-08-12 11:23:10
阅读次数:
139
D. Vika and Segments Vika has an infinite sheet of squared paper. Initially all squares are white. She introduced a two-dimensional coordinate system ...
分类:
其他好文 时间:
2016-08-11 15:39:23
阅读次数:
196
结构体,公用体,枚举类型的sizeof 1)枚举类enum型空间计算 enum只是定义了一个常量集合,里面没有“元素”,而枚举类型是当做int来存储的,所以枚举类型的sizeof值都为4 1 enum color(red,pink,white,black)c; 2 void main() 3 { 4 ...
分类:
其他好文 时间:
2016-08-08 14:36:11
阅读次数:
139