8 Star 15 Fork 6

Crazyfish/Finite Element Method

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test_point.cpp 386 Bytes
一键复制 编辑 原始数据 按行查看 历史
Crazyfish 提交于 2020-11-29 12:23 . modi str
#include "Point.h"
int main()
{
/*try
{
Point<2> p1({0.1,0.2,0.3,0.5});
}catch(PointDimensionException& e)
{
std::cout << e.what() << std::endl;
}*/
double temp[] = {0,0};
Point<2> p(temp);
std::cout << p << std::endl;
Point<2> p1({1,1});
std::cout << p1 << std::endl;
std::cout << distance(p,p1) << std::endl;
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/wang_heyu/finite-element-method.git
git@gitee.com:wang_heyu/finite-element-method.git
wang_heyu
finite-element-method
Finite Element Method
master

搜索帮助