34 #ifndef vtkQuadratureSchemeDefinition_h
35 #define vtkQuadratureSchemeDefinition_h
74 void Initialize(
int cellType,
76 int numberOfQuadraturePoints,
77 double *shapeFunctionWeights);
80 void Initialize(
int cellType,
82 int numberOfQuadraturePoints,
83 double *shapeFunctionWeights,
84 double *quadratureWeights);
109 int idx=quadraturePointId*this->NumberOfNodes;
110 return this->ShapeFunctionWeights+idx;
124 void ReleaseResources();
128 int SecureResources();
132 void SetShapeFunctionWeights(
const double *W);
136 void SetQuadratureWeights(
const double *W);
148 int NumberOfQuadraturePoints;
149 double *ShapeFunctionWeights;
150 double *QuadratureWeights;