File indexing completed on 2026-09-21 09:17:15
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _GProp_VelGProps_HeaderFile
0018 #define _GProp_VelGProps_HeaderFile
0019
0020 #include <Standard.hxx>
0021 #include <Standard_DefineAlloc.hxx>
0022
0023 #include <GProp_GProps.hxx>
0024 class gp_Cylinder;
0025 class gp_Pnt;
0026 class gp_Cone;
0027 class gp_Sphere;
0028 class gp_Torus;
0029
0030
0031
0032
0033 class GProp_VelGProps : public GProp_GProps
0034 {
0035 public:
0036 DEFINE_STANDARD_ALLOC
0037
0038 Standard_EXPORT GProp_VelGProps();
0039
0040 Standard_EXPORT GProp_VelGProps(const gp_Cylinder& S,
0041 const double Alpha1,
0042 const double Alpha2,
0043 const double Z1,
0044 const double Z2,
0045 const gp_Pnt& VLocation);
0046
0047 Standard_EXPORT GProp_VelGProps(const gp_Cone& S,
0048 const double Alpha1,
0049 const double Alpha2,
0050 const double Z1,
0051 const double Z2,
0052 const gp_Pnt& VLocation);
0053
0054 Standard_EXPORT GProp_VelGProps(const gp_Sphere& S,
0055 const double Teta1,
0056 const double Teta2,
0057 const double Alpha1,
0058 const double Alpha2,
0059 const gp_Pnt& VLocation);
0060
0061 Standard_EXPORT GProp_VelGProps(const gp_Torus& S,
0062 const double Teta1,
0063 const double Teta2,
0064 const double Alpha1,
0065 const double Alpha2,
0066 const gp_Pnt& VLocation);
0067
0068 Standard_EXPORT void SetLocation(const gp_Pnt& VLocation);
0069
0070 Standard_EXPORT void Perform(const gp_Cylinder& S,
0071 const double Alpha1,
0072 const double Alpha2,
0073 const double Z1,
0074 const double Z2);
0075
0076 Standard_EXPORT void Perform(const gp_Cone& S,
0077 const double Alpha1,
0078 const double Alpha2,
0079 const double Z1,
0080 const double Z2);
0081
0082 Standard_EXPORT void Perform(const gp_Sphere& S,
0083 const double Teta1,
0084 const double Teta2,
0085 const double Alpha1,
0086 const double Alpha2);
0087
0088 Standard_EXPORT void Perform(const gp_Torus& S,
0089 const double Teta1,
0090 const double Teta2,
0091 const double Alpha1,
0092 const double Alpha2);
0093 };
0094
0095 #endif