mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-26 01:57:30 +08:00
34 lines
693 B
Plaintext
Executable File
34 lines
693 B
Plaintext
Executable File
-- File: math_ComputeGaussPointsAndWeights.cdl
|
|
-- Created: Mon Dec 19 12:41:51 2005
|
|
-- Author: Julia GERASIMOVA
|
|
-- <jgv@clubox>
|
|
---Copyright: Matra Datavision 2005
|
|
|
|
class ComputeGaussPointsAndWeights from math
|
|
|
|
uses
|
|
|
|
Vector from math,
|
|
HArray1OfReal from TColStd
|
|
|
|
is
|
|
Create(Number : Integer from Standard)
|
|
returns ComputeGaussPointsAndWeights;
|
|
|
|
IsDone(me)
|
|
returns Boolean from Standard;
|
|
|
|
Points(me)
|
|
returns Vector from math;
|
|
|
|
Weights(me)
|
|
returns Vector from math;
|
|
|
|
fields
|
|
|
|
myPoints : HArray1OfReal from TColStd;
|
|
myWeights : HArray1OfReal from TColStd;
|
|
myIsDone : Boolean from Standard;
|
|
|
|
end ComputeGaussPointsAndWeights;
|