⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 boundarycomputation.h

📁 利用C
💻 H
字号:
// Copyright (C) 2006-2008 Anders Logg.// Licensed under the GNU LGPL Version 2.1.//// First added:  2006-06-21// Last changed: 2008-05-28#ifndef __BOUNDARY_COMPUTATION_H#define __BOUNDARY_COMPUTATION_H#include <dolfin/common/types.h>#include "MeshFunction.h"namespace dolfin{  class Mesh;  class Facet;  class BoundaryMesh;  /// This class implements provides a set of basic algorithms for  /// the computation of boundaries.  class BoundaryComputation  {  public:        /// Compute the boundary of a given mesh    static void computeBoundary(Mesh& mesh, BoundaryMesh& boundary);  private:    /// Reorder vertices so facet is right-oriented w.r.t. facet normal    static void reorder(Array<uint>& vertices, Facet& facet);  };}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -