Renderer:渲染;Stats:监视器;Camera:相机;Scene:场景;Light:光源;Geometry:几何体;Tween:运动轨迹 基本的demo;学习地址http://www.hewebgl.com/article/articledir/1 var renderer;//渲染 va ...
分类:
Web程序 时间:
2019-12-06 16:26:06
阅读次数:
142
在下图测试代码第13行和第16行设断点. 以调试方式运行,首先断点在第13行处触发: 打开Chrome开发者工具,点击Profiles tab, 再点击按钮"Take Snapshot": 生成一个Snapshot, ID为3: 继续以调试mode执行代码到第16行,点击按钮"Take heap s ...
分类:
其他好文 时间:
2019-12-03 19:30:16
阅读次数:
109
Given an n-ary tree, return the level order traversal of its nodes' values. Nary-Tree input serialization is represented in their level order traversa ...
分类:
其他好文 时间:
2019-12-01 00:14:00
阅读次数:
112
Given an n-ary tree, return the postorder traversal of its nodes' values. Nary-Tree input serialization is represented in their level order traversal, ...
分类:
其他好文 时间:
2019-12-01 00:01:19
阅读次数:
122
1、SpringBoot配置类 2、SpringBoot整合redis及其注解式开发 @Configuration @Configuration底层是含有@Component ,所以@Configuration 具有和 @Component 的作用。 @Configuration可理解为用sprin ...
分类:
编程语言 时间:
2019-11-30 11:16:13
阅读次数:
54
SpringBoot配置类 注解标签 @Configuration @Configuration底层是含有@Component ,所以@Configuration 具有和 @Component 的作用。 @Configuration可理解为用spring的时候xml里面的<beans>标签。 注: ...
分类:
编程语言 时间:
2019-11-28 21:01:08
阅读次数:
66
1 创建下拉框组件//Selects.vue 1 //Selects.vue 2 <template> 3 <div class="selects"> 4 <div 5 :class="{selects0show: !isshow,selects0hade: isshow}" 6 class="se ...
分类:
其他好文 时间:
2019-11-25 13:08:06
阅读次数:
390
MySQL的DDL、DML、DQL语句和单表增、删、改、查 [toc] 实验准备: 1. 初始化设置过的centos虚拟机 2. 安装MySQL数据库 实验开始: DDL语句 1. 创建和删除数据库 2. 查询数据库字符集 MariaDB [(none)] show create database ...
分类:
数据库 时间:
2019-11-23 16:14:54
阅读次数:
67
orcale本质上和SQlserver或者mySQL类似,就是存储数据的地方,甚至在一些基础的语法方面完全一样,例如查询语句select * from tUser ,在数据库里能查询的内容是一致的,今天主要是记录一下查询语句的从简到易 简单查询: select * from tUser where ...
分类:
其他好文 时间:
2019-11-22 10:32:02
阅读次数:
79
运算符 比较运算符: 大于 = 大于等于 = and <= not between...and...(不包含边界值,表示不在指定范围内) 集合运算符 in(满足集合中任意一个值,即满足条件,就是多个or表达式)类似于 = or = not in(取值不在这个集合中) 外部大于内部,建议使用in 内部 ...
分类:
数据库 时间:
2019-11-22 00:58:18
阅读次数:
111