2022年9月6日

使用 WSL 自定义安装 Ubuntu-22.04 LTS

摘要: 一、安装WSL在 Windws 终端窗口中安装 WSL: wsl --install 设置新分发的默认安装版本wsl --set-default-version 2 二、安装 Ubuntu-22.04 LTS 2.1 下载 Ubuntu-22.04 LTS 镜像文件 https://cloud-im 阅读全文

posted @ 2022-09-06 22:31 shenyczz 阅读(5994) 评论(0) 推荐(1) 编辑

2022年8月10日

旋转、放大和平移矩阵(行主序)

摘要: 这里的矩阵按行主序 Matrix Rotation = [ cosA -sinA 0 0 sinA cosA 0 0 0 0 1 0 0 0 0 1] Matrix Scale = [ Sx 0 0 0 0 Sy 0 0 0 0 Sz 0 0 0 0 1] Matrix Translate = [ 阅读全文

posted @ 2022-08-10 23:23 shenyczz 阅读(100) 评论(0) 推荐(0) 编辑

2022年7月5日

CMake + Visual Studio + VTK-8.2.0 配置

摘要: 1、从 VTK官方网站 下载 VTK-8.2.0 源代码包和数据包都有两种压缩格式,选择其中之一即可。 2、将VTK_8.2.0.zip、VTKData_8.2.0.zip、VTKLargeData_8.2.0.zip解压到一个新创建的文件夹中(例D:/sfxCode/c/VTK/VTK-8.2.0 阅读全文

posted @ 2022-07-05 23:28 shenyczz 阅读(418) 评论(0) 推荐(0) 编辑

2021年8月9日

TypeScript 高级类型

摘要: 1 /** 2 * @name sfxATypes 3 * @author shenyc 4 * @date 2021-08-09 5 * @copyright Copy right (c) shenyc (shenyczz@163.com). 6 * All rights reserved. 7 阅读全文

posted @ 2021-08-09 21:47 shenyczz 阅读(94) 评论(0) 推荐(0) 编辑

2021年8月5日

ts 开发 cannot find module 'xxxx'

摘要: 打开 tsconfig.json, 添加 "moduleResolution": "node", ok 参考: https://www.typescriptlang.org/docs/handbook/module-resolution.html 阅读全文

posted @ 2021-08-05 13:53 shenyczz 阅读(729) 评论(0) 推荐(0) 编辑

2021年7月28日

GRIB API 库模块

摘要: 句柄处理模块:负责grib_handle的创建、复制、释放。grib_handle通过键传递GRIB数值结构,计算GRIB文件包含的信息数量 编码信息控制模块:获取grib_handle相应的信息 经度-纬度-数值迭代模块:从grib_handle创建新的迭代器 iterator, 从 iterat 阅读全文

posted @ 2021-07-28 13:34 shenyczz 阅读(324) 评论(0) 推荐(0) 编辑

2021年7月26日

cmake 禁止 4819 警告

摘要: CMake c/c++ 开发 阅读全文

posted @ 2021-07-26 19:34 shenyczz 阅读(1064) 评论(0) 推荐(0) 编辑

2021年6月30日

ol.source.Vector.getFeatures() 填坑

摘要: 创建矢量图层 1 var vectorChina = new ol.layer.Vector({ 2 source: new ol.source.Vector({ 3 projection : 'EPSG:4326', 4 url: 'geojson/china.json', 5 format: n 阅读全文

posted @ 2021-06-30 23:34 shenyczz 阅读(587) 评论(0) 推荐(0) 编辑

导航