📄 unitinterval.h
字号:
// Copyright (C) 2007 Kristian B. Oelgaard.// Licensed under the GNU LGPL Version 2.1.//// First added: 2007-11-23// Last changed: 2007-11-23#ifndef __UNIT_INTERVAL_H#define __UNIT_INTERVAL_H#include "Mesh.h"namespace dolfin{ /// Interval mesh of the 1D unit line (0,1). /// Given the number of cells (nx) in the axial direction, /// the total number of intervals will be nx and the /// total number of vertices will be (nx + 1). class UnitInterval : public Mesh { public: UnitInterval(uint nx); }; }#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -