本文整理汇总了C++中MeshType::node方法的典型用法代码示例。如果您正苦于以下问题:C++ MeshType::node方法的具体用法?C++ MeshType::node怎么用?C++ MeshType::node使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MeshType
的用法示例。
在下文中一共展示了MeshType::node方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: operator
/** Returns a grid of the interval separated by the number of points.
* @param[in] x [low, high] domain of x
* @param[in] y [low, high] domain of y
* @param[in] n_x number of linearly spaced points in interval x
* @param[in] n_y number of linearly space points in interval y
* @return Mesh which connects all the points in the grid.
*
* Complexity: O(n_x*n_y).
*/
MeshType operator()(interval x, interval y, size_type n_x, size_type n_y) {
MeshType mesh;
value_type x_step = (x.second - x.first) / (n_x - 1);
value_type y_step = (y.second - y.first) / (n_y - 1);
for (size_type j = n_y; j > 0; --j) {
for (size_type i = 1; i <= n_x; ++i) {
mesh.add_node(Point((i-1)*x_step, (j-1)*y_step, 0));
MeshType::size_type idx = mesh.num_nodes() - 1;
if (j != n_y) {
if (i == 1) {
mesh.add_triangle(mesh.node(idx), mesh.node(idx - n_x), mesh.node(idx - n_x + 1));
} else if (i == n_x) {
mesh.add_triangle(mesh.node(idx), mesh.node(idx - 1), mesh.node(idx - n_x));
} else {
mesh.add_triangle(mesh.node(idx), mesh.node(idx - 1), mesh.node(idx - n_x));
mesh.add_triangle(mesh.node(idx), mesh.node(idx - n_x), mesh.node(idx - n_x + 1));
}
}
}
}
return mesh;
}