摘要:
1、线(1-D) 2、三角形(2-D) 3、四边形(2-D) 4、四面体(3-D) 5、锥体(3-D) 6、五面体(3-D) 7、六面体(3-D) 阅读全文
摘要:
1 #include <GL/glew.h> 2 #include <GLFW/glfw3.h> 3 #include <iostream> 4 5 using namespace std; 6 7 const int numVAOs = 1; 8 GLuint renderingProgram; 阅读全文
摘要:
1 #include <iostream> 2 #include<iomanip> 3 #include "cgns_io.h" 4 5 using namespace std; 6 7 8 void readChildrenByIdentifier(int index_file, double i 阅读全文
摘要:
.h头文件是编译时必须的,lib是链接时需要的,dll是运行时需要的。附加依赖项的是.lib不是.dll,若生成了DLL,则肯定也生成 LIB文件。如果要完成源代码的编译和链接,有头文件和lib就够了。如果也使动态连接的程序运行起来,有dll就够了(放在Debug文件夹里)。在开发和调试阶段,当然最 阅读全文
摘要:
1 #include <iostream> 2 #include <QFile> 3 4 5 using namespace std; 6 7 #include "cgnslib.h" 8 9 10 int main() { 11 int result; 12 13 int index_file; 阅读全文
摘要:
1 #include <iostream> 2 #include <QFile> 3 4 using namespace std; 5 #include "cgnslib.h" 6 7 int main() 8 { 9 10 int result; 11 12 int index_file; 13 阅读全文
摘要:
为了研究vtk文件的格式需要代码生成vtk文件,生成文件的c++代码如下: 1 int writeVtkFile() { 2 vtkSmartPointer<vtkPoints> points = vtkSmartPointer<vtkPoints>::New(); 3 points->Insert 阅读全文
摘要:
Windows 进入cmd命令终端,键入如下的命令 # 查看文件的md5校验码 certutil -hashfile filename MD5 # 查看文件的sha1校验码 certutil -hashfile filename SHA1 # 查看文件的sha256校验码 certutil -has 阅读全文
摘要:
1、FastCAE.exe启动的时候进入主函数(位于main/main.cpp); 2、main函数第一句代码CommandPara para(argc, argv)构造命令行参数对象,初始化成员变量: 1 /** 2 * @brief 是否显示GUI界面 3 */ 4 bool _showGUI{ 阅读全文
摘要:
#Doxygen注释块 Doxygen注释块其实就是在C、C++注释块的基础添加一些额外标识,使Doxygen把它识别出来,并将它组织到生成的文档中。 在每个代码中都可以有两类描述:一类是brief描述,另一类就是detailed。两种都是可选的,但不能同时没有。简述(brief)就是在一行内简要的 阅读全文