File indexing completed on 2026-09-26 09:04:26
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _Plate_LinearXYZConstraint_HeaderFile
0018 #define _Plate_LinearXYZConstraint_HeaderFile
0019
0020 #include <Standard.hxx>
0021 #include <Standard_DefineAlloc.hxx>
0022 #include <Standard_Handle.hxx>
0023
0024 #include <Plate_PinpointConstraint.hxx>
0025 #include <NCollection_Array1.hxx>
0026 #include <NCollection_HArray1.hxx>
0027 #include <NCollection_Array2.hxx>
0028 #include <NCollection_HArray2.hxx>
0029 #include <Standard_Integer.hxx>
0030 #include <Standard_Real.hxx>
0031 class Plate_PinpointConstraint;
0032
0033
0034
0035
0036 class Plate_LinearXYZConstraint
0037 {
0038 public:
0039 DEFINE_STANDARD_ALLOC
0040
0041 Standard_EXPORT Plate_LinearXYZConstraint();
0042
0043 Standard_EXPORT Plate_LinearXYZConstraint(
0044 const NCollection_Array1<Plate_PinpointConstraint>& thePPC,
0045 const NCollection_Array1<double>& theCoeff);
0046
0047 Standard_EXPORT Plate_LinearXYZConstraint(
0048 const NCollection_Array1<Plate_PinpointConstraint>& thePPC,
0049 const NCollection_Array2<double>& theCoeff);
0050
0051 Standard_EXPORT Plate_LinearXYZConstraint(const int ColLen, const int RowLen);
0052
0053 const NCollection_Array1<Plate_PinpointConstraint>& GetPPC() const;
0054
0055 const NCollection_Array2<double>& Coeff() const;
0056
0057
0058
0059
0060 Standard_EXPORT void SetPPC(const int Index, const Plate_PinpointConstraint& Value);
0061
0062
0063
0064
0065 Standard_EXPORT void SetCoeff(const int Row, const int Col, const double Value);
0066
0067 private:
0068 occ::handle<NCollection_HArray1<Plate_PinpointConstraint>> myPPC;
0069 occ::handle<NCollection_HArray2<double>> myCoef;
0070 };
0071
0072 #include <Plate_LinearXYZConstraint.lxx>
0073
0074 #endif