// Copyright (c) 1991-1999 Matra Datavision // Copyright (c) 1999-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #ifndef _gp_Circ_HeaderFile #define _gp_Circ_HeaderFile #include #include #include #include #include #include #include class Standard_ConstructionError; class gp_Ax2; class gp_Ax1; class gp_Pnt; class gp_Trsf; class gp_Vec; //! Describes a circle in 3D space. //! A circle is defined by its radius and positioned in space //! with a coordinate system (a gp_Ax2 object) as follows: //! - the origin of the coordinate system is the center of the circle, and //! - the origin, "X Direction" and "Y Direction" of the //! coordinate system define the plane of the circle. //! This positioning coordinate system is the "local //! coordinate system" of the circle. Its "main Direction" //! gives the normal vector to the plane of the circle. The //! "main Axis" of the coordinate system is referred to as //! the "Axis" of the circle. //! Note: when a gp_Circ circle is converted into a //! Geom_Circle circle, some implicit properties of the //! circle are used explicitly: //! - the "main Direction" of the local coordinate system //! gives an implicit orientation to the circle (and defines //! its trigonometric sense), //! - this orientation corresponds to the direction in //! which parameter values increase, //! - the starting point for parameterization is that of the //! "X Axis" of the local coordinate system (i.e. the "X Axis" of the circle). //! See Also //! gce_MakeCirc which provides functions for more complex circle constructions //! Geom_Circle which provides additional functions for //! constructing circles and works, in particular, with the //! parametric equations of circles class gp_Circ { public: DEFINE_STANDARD_ALLOC //! Creates an indefinite circle. gp_Circ(); //! A2 locates the circle and gives its orientation in 3D space. //! Warnings : //! It is not forbidden to create a circle with Radius = 0.0 Raises ConstructionError if Radius < 0.0 gp_Circ(const gp_Ax2& A2, const Standard_Real Radius); //! Changes the main axis of the circle. It is the axis //! perpendicular to the plane of the circle. //! Raises ConstructionError if the direction of A1 //! is parallel to the "XAxis" of the circle. void SetAxis (const gp_Ax1& A1); //! Changes the "Location" point (center) of the circle. void SetLocation (const gp_Pnt& P); //! Changes the position of the circle. void SetPosition (const gp_Ax2& A2); //! Modifies the radius of this circle. //! Warning. This class does not prevent the creation of a circle where Radius is null. //! Exceptions //! Standard_ConstructionError if Radius is negative. void SetRadius (const Standard_Real Radius); //! Computes the area of the circle. Standard_Real Area() const; //! Returns the main axis of the circle. //! It is the axis perpendicular to the plane of the circle, //! passing through the "Location" point (center) of the circle. const gp_Ax1& Axis() const; //! Computes the circumference of the circle. Standard_Real Length() const; //! Returns the center of the circle. It is the //! "Location" point of the local coordinate system //! of the circle const gp_Pnt& Location() const; //! Returns the position of the circle. //! It is the local coordinate system of the circle. const gp_Ax2& Position() const; //! Returns the radius of this circle. Standard_Real Radius() const; //! Returns the "XAxis" of the circle. //! This axis is perpendicular to the axis of the conic. //! This axis and the "Yaxis" define the plane of the conic. gp_Ax1 XAxis() const; //! Returns the "YAxis" of the circle. //! This axis and the "Xaxis" define the plane of the conic. //! The "YAxis" is perpendicular to the "Xaxis". gp_Ax1 YAxis() const; //! Computes the minimum of distance between the point P and //! any point on the circumference of the circle. Standard_Real Distance (const gp_Pnt& P) const; //! Computes the square distance between and the point P. Standard_Real SquareDistance (const gp_Pnt& P) const; //! Returns True if the point P is on the circumference. //! The distance between and

must be lower or //! equal to LinearTolerance. Standard_Boolean Contains (const gp_Pnt& P, const Standard_Real LinearTolerance) const; Standard_EXPORT void Mirror (const gp_Pnt& P); //! Performs the symmetrical transformation of a circle //! with respect to the point P which is the center of the //! symmetry. Standard_NODISCARD Standard_EXPORT gp_Circ Mirrored (const gp_Pnt& P) const; Standard_EXPORT void Mirror (const gp_Ax1& A1); //! Performs the symmetrical transformation of a circle with //! respect to an axis placement which is the axis of the //! symmetry. Standard_NODISCARD Standard_EXPORT gp_Circ Mirrored (const gp_Ax1& A1) const; Standard_EXPORT void Mirror (const gp_Ax2& A2); //! Performs the symmetrical transformation of a circle with respect //! to a plane. The axis placement A2 locates the plane of the //! of the symmetry : (Location, XDirection, YDirection). Standard_NODISCARD Standard_EXPORT gp_Circ Mirrored (const gp_Ax2& A2) const; void Rotate (const gp_Ax1& A1, const Standard_Real Ang); //! Rotates a circle. A1 is the axis of the rotation. //! Ang is the angular value of the rotation in radians. Standard_NODISCARD gp_Circ Rotated (const gp_Ax1& A1, const Standard_Real Ang) const; void Scale (const gp_Pnt& P, const Standard_Real S); //! Scales a circle. S is the scaling value. //! Warnings : //! If S is negative the radius stay positive but //! the "XAxis" and the "YAxis" are reversed as for //! an ellipse. Standard_NODISCARD gp_Circ Scaled (const gp_Pnt& P, const Standard_Real S) const; void Transform (const gp_Trsf& T); //! Transforms a circle with the transformation T from class Trsf. Standard_NODISCARD gp_Circ Transformed (const gp_Trsf& T) const; void Translate (const gp_Vec& V); //! Translates a circle in the direction of the vector V. //! The magnitude of the translation is the vector's magnitude. Standard_NODISCARD gp_Circ Translated (const gp_Vec& V) const; void Translate (const gp_Pnt& P1, const gp_Pnt& P2); //! Translates a circle from the point P1 to the point P2. Standard_NODISCARD gp_Circ Translated (const gp_Pnt& P1, const gp_Pnt& P2) const; protected: private: gp_Ax2 pos; Standard_Real radius; }; #include #endif // _gp_Circ_HeaderFile