1、半兰伯特模型:入射光线与法线与入射光下夹角余玄值缩放a后加上一个b的偏移(a、b通常取值0.5,将[-1.0, 1.0]映射到[0.0, 1.0]),用于解决背光面明暗相同的缺点。 2、比较直观的各种计算可以分为逐顶点与逐像素两种,前者为每个顶点计算信息后在片元间进行插值得到信息,一般情况下计算 ...
分类:
编程语言 时间:
2020-03-24 12:55:01
阅读次数:
68
一、安装percona-toolkit 1、下载 wget -P /usr/software https://www.percona.com/downloads/percona-toolkit/3.0.3/binary/redhat/6/x86_64/percona-toolkit-3.0.3-1. ...
分类:
其他好文 时间:
2020-03-23 11:27:25
阅读次数:
113
Build Your Own Shell using Rust 译文 原文地址:https://www.joshmcguigan.com/blog/build your own shell rust/ 原文作者: "Josh Mcguigan" 译文出自:https://github.com/suh ...
分类:
系统相关 时间:
2020-03-23 10:00:50
阅读次数:
86
1、安卓浏览器看背景图片,有些设备会模糊。 用同等比例的图片在PC机上很清楚,但是手机上很模糊,原因是什么呢? 经过研究,是devicePixelRatio作怪,因为手机分辨率太小,如果按照分辨率来显示网页,这样字会非常小,所以苹果当初就把iPhone 4的960640分辨率,在网页里只显示了480 ...
分类:
移动开发 时间:
2020-03-21 21:43:05
阅读次数:
96
.reflect { -webkit-box-reflect:below 0 linear-gradient(transparent, rgba(255,255,255,0.1)); } 语法 box-reflect:none | <direction> <offset> <mask-box-ima ...
分类:
其他好文 时间:
2020-03-20 14:20:21
阅读次数:
65
设计原则 单一职责原则 单一职责原则(Single Responsibility Principle,SRP)又称单一功能原则,由罗伯特·C.马丁(Robert C. Martin)于《敏捷软件开发:原则、模式和实践》一书中提出的。这里的职责是指类变化的原因,单一职责原则规定一个类应该有且仅有一个引 ...
分类:
其他好文 时间:
2020-03-18 09:41:21
阅读次数:
112
Stack 这个是Flutter中布局用到的组件,跟Android中FrameLayout很像,都是可以叠加的现实View。 Stack({ Key key, this.alignment = AlignmentDirectional.topStart, this.textDirection, th ...
分类:
其他好文 时间:
2020-03-15 00:09:58
阅读次数:
82
demo地址 http://106.13.201.82/demo/pageChange.html pageChange.vue <template> <div class="flex" :class="direction" :style="{width:width,height:height}" r ...
分类:
其他好文 时间:
2020-03-14 14:34:54
阅读次数:
332
//先输入行列,在输入迷宫 以-1 -1 结束 #include<stdio.h> #include<stdlib.h> #define MAXSIZE 100 #define ERROR -1 #define OK 1 struct Direction { int incX; //增量 int i ...
分类:
其他好文 时间:
2020-03-14 13:05:04
阅读次数:
69
Given a binary tree root, a ZigZag path for a binary tree is defined as follow: Choose any node in the binary tree and a direction (right or left). If ...
分类:
其他好文 时间:
2020-03-12 09:26:04
阅读次数:
76