|
|
|||
File indexing completed on 2026-06-06 08:36:02
0001 // Created on: 1993-03-10 0002 // Created by: JCV 0003 // Copyright (c) 1993-1999 Matra Datavision 0004 // Copyright (c) 1999-2014 OPEN CASCADE SAS 0005 // 0006 // This file is part of Open CASCADE Technology software library. 0007 // 0008 // This library is free software; you can redistribute it and/or modify it under 0009 // the terms of the GNU Lesser General Public License version 2.1 as published 0010 // by the Free Software Foundation, with special exception defined in the file 0011 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT 0012 // distribution for complete text of the license and disclaimer of any warranty. 0013 // 0014 // Alternatively, this file may be used under the terms of Open CASCADE 0015 // commercial license or contractual agreement. 0016 0017 #ifndef _Geom_SphericalSurface_HeaderFile 0018 #define _Geom_SphericalSurface_HeaderFile 0019 0020 #include <Standard.hxx> 0021 #include <Standard_Type.hxx> 0022 0023 #include <Geom_ElementarySurface.hxx> 0024 #include <Standard_Integer.hxx> 0025 class gp_Ax3; 0026 class gp_Sphere; 0027 class Geom_Curve; 0028 class gp_Pnt; 0029 class gp_Vec; 0030 class gp_Trsf; 0031 class Geom_Geometry; 0032 0033 class Geom_SphericalSurface; 0034 DEFINE_STANDARD_HANDLE(Geom_SphericalSurface, Geom_ElementarySurface) 0035 0036 //! Describes a sphere. 0037 //! A sphere is defined by its radius, and is positioned in 0038 //! space by a coordinate system (a gp_Ax3 object), the 0039 //! origin of which is the center of the sphere. 0040 //! This coordinate system is the "local coordinate 0041 //! system" of the sphere. The following apply: 0042 //! - Rotation around its "main Axis", in the trigonometric 0043 //! sense given by the "X Direction" and the "Y 0044 //! Direction", defines the u parametric direction. 0045 //! - Its "X Axis" gives the origin for the u parameter. 0046 //! - The "reference meridian" of the sphere is a 0047 //! half-circle, of radius equal to the radius of the 0048 //! sphere. It is located in the plane defined by the 0049 //! origin, "X Direction" and "main Direction", centered 0050 //! on the origin, and positioned on the positive side of the "X Axis". 0051 //! - Rotation around the "Y Axis" gives the v parameter 0052 //! on the reference meridian. 0053 //! - The "X Axis" gives the origin of the v parameter on 0054 //! the reference meridian. 0055 //! - The v parametric direction is oriented by the "main 0056 //! Direction", i.e. when v increases, the Z coordinate 0057 //! increases. (This implies that the "Y Direction" 0058 //! orients the reference meridian only when the local 0059 //! coordinate system is indirect.) 0060 //! - The u isoparametric curve is a half-circle obtained 0061 //! by rotating the reference meridian of the sphere 0062 //! through an angle u around the "main Axis", in the 0063 //! trigonometric sense defined by the "X Direction" 0064 //! and the "Y Direction". 0065 //! The parametric equation of the sphere is: 0066 //! P(u,v) = O + R*cos(v)*(cos(u)*XDir + sin(u)*YDir)+R*sin(v)*ZDir 0067 //! where: 0068 //! - O, XDir, YDir and ZDir are respectively the 0069 //! origin, the "X Direction", the "Y Direction" and the "Z 0070 //! Direction" of its local coordinate system, and 0071 //! - R is the radius of the sphere. 0072 //! The parametric range of the two parameters is: 0073 //! - [ 0, 2.*Pi ] for u, and 0074 //! - [ - Pi/2., + Pi/2. ] for v. 0075 class Geom_SphericalSurface : public Geom_ElementarySurface 0076 { 0077 0078 public: 0079 //! A3 is the local coordinate system of the surface. 0080 //! At the creation the parametrization of the surface is defined 0081 //! such as the normal Vector (N = D1U ^ D1V) is directed away from 0082 //! the center of the sphere. 0083 //! The direction of increasing parametric value V is defined by the 0084 //! rotation around the "YDirection" of A2 in the trigonometric sense 0085 //! and the orientation of increasing parametric value U is defined 0086 //! by the rotation around the main direction of A2 in the 0087 //! trigonometric sense. 0088 //! Warnings : 0089 //! It is not forbidden to create a spherical surface with 0090 //! Radius = 0.0 0091 //! Raised if Radius < 0.0. 0092 Standard_EXPORT Geom_SphericalSurface(const gp_Ax3& A3, const Standard_Real Radius); 0093 0094 //! Creates a SphericalSurface from a non persistent Sphere from 0095 //! package gp. 0096 Standard_EXPORT Geom_SphericalSurface(const gp_Sphere& S); 0097 0098 //! Assigns the value R to the radius of this sphere. 0099 //! Exceptions Standard_ConstructionError if R is less than 0.0. 0100 Standard_EXPORT void SetRadius(const Standard_Real R); 0101 0102 //! Converts the gp_Sphere S into this sphere. 0103 Standard_EXPORT void SetSphere(const gp_Sphere& S); 0104 0105 //! Returns a non persistent sphere with the same geometric 0106 //! properties as <me>. 0107 Standard_EXPORT gp_Sphere Sphere() const; 0108 0109 //! Computes the u parameter on the modified 0110 //! surface, when reversing its u parametric 0111 //! direction, for any point of u parameter U on this sphere. 0112 //! In the case of a sphere, these functions returns 2.PI - U. 0113 Standard_EXPORT Standard_Real UReversedParameter(const Standard_Real U) const Standard_OVERRIDE; 0114 0115 //! Computes the v parameter on the modified 0116 //! surface, when reversing its v parametric 0117 //! direction, for any point of v parameter V on this sphere. 0118 //! In the case of a sphere, these functions returns -U. 0119 Standard_EXPORT Standard_Real VReversedParameter(const Standard_Real V) const Standard_OVERRIDE; 0120 0121 //! Computes the aera of the spherical surface. 0122 Standard_EXPORT Standard_Real Area() const; 0123 0124 //! Returns the parametric bounds U1, U2, V1 and V2 of this sphere. 0125 //! For a sphere: U1 = 0, U2 = 2*PI, V1 = -PI/2, V2 = PI/2. 0126 Standard_EXPORT void Bounds(Standard_Real& U1, 0127 Standard_Real& U2, 0128 Standard_Real& V1, 0129 Standard_Real& V2) const Standard_OVERRIDE; 0130 0131 //! Returns the coefficients of the implicit equation of the 0132 //! quadric in the absolute cartesian coordinates system : 0133 //! These coefficients are normalized. 0134 //! A1.X**2 + A2.Y**2 + A3.Z**2 + 2.(B1.X.Y + B2.X.Z + B3.Y.Z) + 0135 //! 2.(C1.X + C2.Y + C3.Z) + D = 0.0 0136 Standard_EXPORT void Coefficients(Standard_Real& A1, 0137 Standard_Real& A2, 0138 Standard_Real& A3, 0139 Standard_Real& B1, 0140 Standard_Real& B2, 0141 Standard_Real& B3, 0142 Standard_Real& C1, 0143 Standard_Real& C2, 0144 Standard_Real& C3, 0145 Standard_Real& D) const; 0146 0147 //! Computes the coefficients of the implicit equation of 0148 //! this quadric in the absolute Cartesian coordinate system: 0149 //! A1.X**2 + A2.Y**2 + A3.Z**2 + 2.(B1.X.Y + B2.X.Z + B3.Y.Z) + 0150 //! 2.(C1.X + C2.Y + C3.Z) + D = 0.0 0151 //! An implicit normalization is applied (i.e. A1 = A2 = 1. 0152 //! in the local coordinate system of this sphere). 0153 Standard_EXPORT Standard_Real Radius() const; 0154 0155 //! Computes the volume of the spherical surface. 0156 Standard_EXPORT Standard_Real Volume() const; 0157 0158 //! Returns True. 0159 Standard_EXPORT Standard_Boolean IsUClosed() const Standard_OVERRIDE; 0160 0161 //! Returns False. 0162 Standard_EXPORT Standard_Boolean IsVClosed() const Standard_OVERRIDE; 0163 0164 //! Returns True. 0165 Standard_EXPORT Standard_Boolean IsUPeriodic() const Standard_OVERRIDE; 0166 0167 //! Returns False. 0168 Standard_EXPORT Standard_Boolean IsVPeriodic() const Standard_OVERRIDE; 0169 0170 //! Computes the U isoparametric curve. 0171 //! The U isoparametric curves of the surface are defined by the 0172 //! section of the spherical surface with plane obtained by rotation 0173 //! of the plane (Location, XAxis, ZAxis) around ZAxis. This plane 0174 //! defines the origin of parametrization u. 0175 //! For a SphericalSurface the UIso curve is a Circle. 0176 //! Warnings : The radius of this circle can be zero. 0177 Standard_EXPORT Handle(Geom_Curve) UIso(const Standard_Real U) const Standard_OVERRIDE; 0178 0179 //! Computes the V isoparametric curve. 0180 //! The V isoparametric curves of the surface are defined by 0181 //! the section of the spherical surface with plane parallel to the 0182 //! plane (Location, XAxis, YAxis). This plane defines the origin of 0183 //! parametrization V. 0184 //! Be careful if V is close to PI/2 or 3*PI/2 the radius of the 0185 //! circle becomes tiny. It is not forbidden in this toolkit to 0186 //! create circle with radius = 0.0 0187 //! For a SphericalSurface the VIso curve is a Circle. 0188 //! Warnings : The radius of this circle can be zero. 0189 Standard_EXPORT Handle(Geom_Curve) VIso(const Standard_Real V) const Standard_OVERRIDE; 0190 0191 //! Computes the point P (U, V) on the surface. 0192 //! P (U, V) = Loc + Radius * Sin (V) * Zdir + 0193 //! Radius * Cos (V) * (cos (U) * XDir + sin (U) * YDir) 0194 //! where Loc is the origin of the placement plane (XAxis, YAxis) 0195 //! XDir is the direction of the XAxis and YDir the direction of 0196 //! the YAxis and ZDir the direction of the ZAxis. 0197 Standard_EXPORT void D0(const Standard_Real U, 0198 const Standard_Real V, 0199 gp_Pnt& P) const Standard_OVERRIDE; 0200 0201 //! Computes the current point and the first derivatives in the 0202 //! directions U and V. 0203 Standard_EXPORT void D1(const Standard_Real U, 0204 const Standard_Real V, 0205 gp_Pnt& P, 0206 gp_Vec& D1U, 0207 gp_Vec& D1V) const Standard_OVERRIDE; 0208 0209 //! Computes the current point, the first and the second derivatives 0210 //! in the directions U and V. 0211 Standard_EXPORT void D2(const Standard_Real U, 0212 const Standard_Real V, 0213 gp_Pnt& P, 0214 gp_Vec& D1U, 0215 gp_Vec& D1V, 0216 gp_Vec& D2U, 0217 gp_Vec& D2V, 0218 gp_Vec& D2UV) const Standard_OVERRIDE; 0219 0220 //! Computes the current point, the first,the second and the third 0221 //! derivatives in the directions U and V. 0222 Standard_EXPORT void D3(const Standard_Real U, 0223 const Standard_Real V, 0224 gp_Pnt& P, 0225 gp_Vec& D1U, 0226 gp_Vec& D1V, 0227 gp_Vec& D2U, 0228 gp_Vec& D2V, 0229 gp_Vec& D2UV, 0230 gp_Vec& D3U, 0231 gp_Vec& D3V, 0232 gp_Vec& D3UUV, 0233 gp_Vec& D3UVV) const Standard_OVERRIDE; 0234 0235 //! Computes the derivative of order Nu in the direction u 0236 //! and Nv in the direction v. 0237 //! Raised if Nu + Nv < 1 or Nu < 0 or Nv < 0. 0238 Standard_EXPORT gp_Vec DN(const Standard_Real U, 0239 const Standard_Real V, 0240 const Standard_Integer Nu, 0241 const Standard_Integer Nv) const Standard_OVERRIDE; 0242 0243 //! Applies the transformation T to this sphere. 0244 Standard_EXPORT void Transform(const gp_Trsf& T) Standard_OVERRIDE; 0245 0246 //! Creates a new object which is a copy of this sphere. 0247 Standard_EXPORT Handle(Geom_Geometry) Copy() const Standard_OVERRIDE; 0248 0249 //! Dumps the content of me into the stream 0250 Standard_EXPORT virtual void DumpJson(Standard_OStream& theOStream, 0251 Standard_Integer theDepth = -1) const Standard_OVERRIDE; 0252 0253 DEFINE_STANDARD_RTTIEXT(Geom_SphericalSurface, Geom_ElementarySurface) 0254 0255 protected: 0256 private: 0257 Standard_Real radius; 0258 }; 0259 0260 #endif // _Geom_SphericalSurface_HeaderFile
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|