itkfemelement2dc0linearquadrilateralmembrane.cxx
来自「InsightToolkit-1.4.0(有大量的优化算法程序)」· CXX 代码 · 共 70 行
CXX
70 行
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkFEMElement2DC0LinearQuadrilateralMembrane.cxx,v $
Language: C++
Date: $Date: 2003/09/10 14:29:39 $
Version: $Revision: 1.2 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
// disable debug warnings in MS compiler
#ifdef _MSC_VER
#pragma warning(disable: 4786)
#endif
#include "itkFEMElement2DC0LinearQuadrilateralMembrane.h"
namespace itk {
namespace fem {
Element2DC0LinearQuadrilateralMembrane
::Element2DC0LinearQuadrilateralMembrane() : Superclass()
{
}
Element2DC0LinearQuadrilateralMembrane
::Element2DC0LinearQuadrilateralMembrane(
NodeIDType n1_,
NodeIDType n2_,
NodeIDType n3_,
NodeIDType n4_,
Material::ConstPointer m_) : Superclass()
{
// Set the geometrical points
this->SetNode( 0, n1_ );
this->SetNode( 1, n2_ );
this->SetNode( 2, n3_ );
this->SetNode( 3, n4_ );
/*
* Initialize the pointer to material object and check that
* we were given the pointer to the right class.
* If the material class was incorrect an exception is thrown.
*/
if( (m_mat=dynamic_cast<const MaterialLinearElasticity*>(&*m_)) == 0 )
{
throw FEMExceptionWrongClass(__FILE__,__LINE__,"Element2DC0LinearQuadrilateralMembrane::Element2DC0LinearQuadrilateralMembrane()");
}
}
FEM_CLASS_REGISTER(Element2DC0LinearQuadrilateralMembrane)
}} // end namespace itk::fem
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?