摘要:
1 #ifndef CHANPROJECT_VECTOR2D_H 2 #define CHANPROJECT_VECTOR2D_H 3 #include "ChanGlobal.h" 4 5 namespace Common{ 6 template <typename T> 7 class Vect 阅读全文
摘要:
// Fl.H是必须包含的头文件 #include <FL/Fl.H> #include <FL/Fl_Window.H> #include <FL/Fl_Box.H> int main(int argc, char **argv) { // 创建一个窗口,接下来创建的widget都自动成为该窗口的 阅读全文
摘要:
工具: 1. perl(https://strawberryperl.com/) 2. nasm(https://nasm.us/) 3. openssl源码(https://www.openssl.org/) 步骤: 1. 安装perl 2. 安装nasm,将nasm配置到path环境变量。ope 阅读全文
摘要:
1. 网上下载的安装包解压后好多文件在linux下没有执行权限,会导致安装失败。可以一次性使用 chmod -R +x ./ 命令添加或者遇到一个添加一个。 2.isight的安装过程脚本使用到类ksh,需要提前安装一下 sudo apt install ksh 。 3.abaqus的安装脚本使用的 阅读全文
摘要:
wsl命令说明(wsl --help): 用法: wsl.exe [Argument] [Options...] [CommandLine] 运行 Linux 二进制文件的参数: 如果未提供命令行,wsl.exe 将启动默认 shell。 --exec, -e <CommandLine> 在不使用默 阅读全文
摘要:
什么是RPATH rpath全称是run-time search path。Linux下所有elf格式的文件都包含它,特别是可执行文件。它规定了可执行文件在寻找.so文件时的第一优先位置。另外,elf文件中还规定了runpath。它与rpath相同,只是优先级低一些。 搜索.so的优先级顺序 RPA 阅读全文
摘要:
C++源码: 1 #include <cstdlib> 2 #include <iostream> 3 #include <string> 4 5 std::string say_hello() 6 { 7 return std::string("Hello, CMake world!"); 8 } 阅读全文
摘要:
1 #include "vtkAutoInit.h" 2 VTK_MODULE_INIT(vtkRenderingOpenGL2); 3 VTK_MODULE_INIT(vtkInteractionStyle); 4 VTK_MODULE_INIT(vtkRenderingFreeType) 5 6 阅读全文
摘要:
从官方文件介绍看: vtkCellPicker will shoot a ray into a 3D scene and return information about the first object that the ray hits. vtkPointPicker returns the i 阅读全文
摘要:
1 /** 2 * @file main.cpp 3 * @brief vtk世界坐标拾取器 4 * @author 禅元天道(chanyuantiandao@126.com) 5 * @version 1.0.0 6 * @date 2022-07-19 7 */ 8 #include <vtkA 阅读全文