vue3使用Three.js加载外部模型文件
1.安装Three.js
yarn add three
npm install three2.新建一个renderModel.js 用于处理Three.js相关逻辑
import * as THREE from three //导入整个 three.js核心库
import { GLTFLoader } from three/examples/jsm/loaders/GLTFLoader
im…
关于time.h,有人总结了这么3句话:
(1)time_t:表示距离 UTC 时间 1970-01-01 00:00:00 的秒数。也叫做日历时,类型是 long (2)clock_t: 只用于程序计时,貌似其他的没它什…