// Created on: 1992-08-26 // Created by: Remi GILET // Copyright (c) 1992-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 _gce_MakePln_HeaderFile #define _gce_MakePln_HeaderFile #include #include #include #include #include class gp_Ax2; class gp_Pnt; class gp_Dir; class gp_Ax1; //! This class implements the following algorithms used //! to create a Plane from gp. //! * Create a Pln parallel to another and passing //! through a point. //! * Create a Pln passing through 3 points. //! * Create a Pln by its normal. //! Defines a non-persistent plane. //! The plane is located in 3D space with an axis placement //! two axis. It is the local coordinate system of the plane. //! //! The "Location" point and the main direction of this axis //! placement define the "Axis" of the plane. It is the axis //! normal to the plane which gives the orientation of the //! plane. //! //! The "XDirection" and the "YDirection" of the axis //! placement define the plane ("XAxis" and "YAxis") . class gce_MakePln : public gce_Root { public: DEFINE_STANDARD_ALLOC //! The coordinate system of the plane is defined with the axis //! placement A2. //! The "Direction" of A2 defines the normal to the plane. //! The "Location" of A2 defines the location (origin) of the plane. //! The "XDirection" and "YDirection" of A2 define the "XAxis" and //! the "YAxis" of the plane used to parametrize the plane. Standard_EXPORT gce_MakePln(const gp_Ax2& A2); //! Creates a plane with the "Location" point

//! and the normal direction . Standard_EXPORT gce_MakePln(const gp_Pnt& P, const gp_Dir& V); //! Creates a plane from its cartesian equation : //! A * X + B * Y + C * Z + D = 0.0 //! //! the status is "BadEquation" if Sqrt (A*A + B*B + C*C) <= //! Resolution from gp. Standard_EXPORT gce_MakePln(const Standard_Real A, const Standard_Real B, const Standard_Real C, const Standard_Real D); //! Make a Pln from gp parallel to another //! Pln and passing through a Pnt . Standard_EXPORT gce_MakePln(const gp_Pln& Pln, const gp_Pnt& Point); //! Make a Pln from gp parallel to another //! Pln at the distance which can be greater //! or less than zero. //! In the first case the result is at the distance //! to the plane in the direction of the //! normal to . //! Otherwise it is in the opposite direction. Standard_EXPORT gce_MakePln(const gp_Pln& Pln, const Standard_Real Dist); //! Make a Pln from gp passing through 3 //! Pnt ,,. //! It returns false if are confused. Standard_EXPORT gce_MakePln(const gp_Pnt& P1, const gp_Pnt& P2, const gp_Pnt& P3); //! Make a Pln from gp perpendicular to the line //! passing through ,. //! The status is "ConfusedPoints" if are confused. Standard_EXPORT gce_MakePln(const gp_Pnt& P1, const gp_Pnt& P2); //! Make a pln passing through the location of and //! normal to the Direction of . //! Warning - If an error occurs (that is, when IsDone returns //! false), the Status function returns: //! - gce_BadEquation if Sqrt(A*A + B*B + //! C*C) is less than or equal to gp::Resolution(), //! - gce_ConfusedPoints if P1 and P2 are coincident, or //! - gce_ColinearPoints if P1, P2 and P3 are collinear. Standard_EXPORT gce_MakePln(const gp_Ax1& Axis); //! Returns the constructed plane. //! Exceptions StdFail_NotDone if no plane is constructed. Standard_EXPORT const gp_Pln& Value() const; Standard_EXPORT const gp_Pln& Operator() const; Standard_EXPORT operator gp_Pln() const; protected: private: gp_Pln ThePln; }; #endif // _gce_MakePln_HeaderFile