处理旋转有三种方式:矩阵、欧拉角、四元数。之间的优缺点,末尾讨论,先上实现的欧拉角源码, using System.Collections; using System.Collections.Generic; using UnityEngine; /// <summary> /// EulerAng ...
分类:
其他好文 时间:
2021-01-22 12:23:04
阅读次数:
0
systemctl start docker 启动 docker images #查看本地镜像 docker images -a #查看所有的镜像 docker images php #查看仓库名为php的镜像 docker rmi -f 镜像ID #强制删除镜像 docker rmi -f 镜像名 ...
分类:
其他好文 时间:
2021-01-22 12:18:14
阅读次数:
0
server端 unit ServerMainFormUnit; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.C ...
System.Windows.Forms.Application.Restart();方法系统实现自动重启。 if (FrmDialog.ShowDialog(this, "确定退出登录吗?", "提示", false, false, false, null, DialogType.YesNo) = ...
分类:
移动开发 时间:
2021-01-22 11:52:41
阅读次数:
0
使用ip addr 查看哪个网卡没有分配 IP ip addr 我这里是 eth0 没有分配 IP 地址,使用 vi 来修改 ifcfg-xxx 配置文件 xxx 是通过ip addr 查询到的名字 [root@localhost ~]# vi /etc/sysconfig/network-scri ...
分类:
其他好文 时间:
2021-01-22 11:51:41
阅读次数:
0
无意发现一个dateformat的问题 DateFormat dateFormat = new SimpleDateFormat("yyyyMMddHHmmss"); Date eventDate = dateFormat.parse("2021-01-22 12:34:22"); System.o ...
分类:
其他好文 时间:
2021-01-22 11:45:51
阅读次数:
0
Windows Server 2016 数据中心CB7KF-BWN84-R7R2Y-793K2-8XDDG Windows Server 2016 标准版WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY Windows Server 2016 嵌入式版JCKRF-N37P4-C2D82-9 ...
//建立文件夹 File f=new File("user"); System.out.println(f.createNewFile()); //建立文件 File wj = new File("user.txt"); File wj2=new File(".","user2.txt"); Sys ...
分类:
其他好文 时间:
2021-01-21 10:47:05
阅读次数:
0
package haoxiansheng;import java.util.Arrays; public class DemoArrayspractice { public static void main(String[] args) {//main方法 String str="afdfafasg ...
可变参数的定义方法: 数据类型...参数名称public static void add(int...nums) { //nums可以理解为一个数组,这个数组存储传递过来的参数 int sum = 0; for(int i = 0; i < nums.length; i++) { sum += nu ...
分类:
其他好文 时间:
2021-01-21 10:31:41
阅读次数:
0