The IfcProduct is an abstract representation of any object that relates to a geometric or spatial context. An IfcProduct occurs at a specific location ...
分类:
其他好文 时间:
2020-02-20 00:14:44
阅读次数:
104
Nginx rewrtie 的四种 flag 利用nginx的rewrite的指令,可以实现 url 的转向,对于 rewrtie 有四种不同的 flag,分别是 redirect、permanent、break和last。其中前两种是跳转型的flag,后两种是代理型。跳转型是指有客户端浏览器重新对 ...
分类:
其他好文 时间:
2020-02-19 23:41:23
阅读次数:
85
3D max渲染AO 一.制作模型,拆分UV(uv勿重叠) 或者从maya中导出模型(格式为obj),导进max中检查模型光滑组是否出错。 二.加一盏天光勾选投射阴影 三.选择数字键0打开渲染选项。在选中模型的情况下。 修改文件路径,确认名称, 启用设置,确认贴图坐标使用现有通道。 (操作3和4(绿 ...
分类:
其他好文 时间:
2020-02-19 22:27:24
阅读次数:
192
在进行 Git 仓库的创建之前我们首先需要进行的就是项目目录的创建, 创建项目目录 在我的F盘下创建一个叫做 se2020-git-course 的目录,在该目录中再创建另一个叫做 new-git-project 的目录并使用 cd 命令移到 new-git-project 目录下。代码如下图: 创 ...
分类:
其他好文 时间:
2020-02-19 16:57:26
阅读次数:
70
代码 wget --mirror --convert-links --adjust-extension --page-requisites --retry-connrefused --exclude-directories=comments -U "Mozilla/5.0 (Macintosh; I ...
分类:
Web程序 时间:
2020-02-18 20:55:45
阅读次数:
92
Build-In Step Types的最后一篇,前面两篇的连接如下: TestStand 基础知识[7] Build-In StepTypes(2) TestStand 基础知识[6] Build-In StepTypes(1) 按照惯例先贴下Build-In Step Types图 本文主要介绍 ...
分类:
其他好文 时间:
2020-02-18 18:47:14
阅读次数:
119
自定义一个结构体 type Rect struct { x, y float64 width, height float64 } 初始化方法: rect1 := new(Rect) rect2 := &Rect{} rect3 := &Rect{0, 0, 100, 200} rect4 := &R ...
分类:
其他好文 时间:
2020-02-18 18:06:49
阅读次数:
70
SpringBoot:快速入门 什么是Spring Spring是一个开源框架,2003 年兴起的一个轻量级的Java 开发框架,作者:Rod Johnson 。 Spring是为了解决企业级应用开发的复杂性而创建的,简化开发。 Spring是如何简化Java开发的 为了降低Java开发的复杂性,S ...
分类:
编程语言 时间:
2020-02-18 17:58:17
阅读次数:
150
 ```c++ #include #include using namespace cv; using namesp... ...
分类:
其他好文 时间:
2020-02-17 23:52:27
阅读次数:
104
ArrayList 概述 1. ArrayList 是基于数组实现的,是一个动态数组 2. ArrayList 不是线程安全的,只能在单线程环境下;多线程使用ArrayList,应该考虑Collections.synchronizedList(List l)和concurrent并发包下的CopyO ...
分类:
其他好文 时间:
2020-02-17 15:50:08
阅读次数:
76