mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-10 18:51:21 +03:00
- Provide DumpJson for geometrical, ocaf and visualization classes; - Change depth parameter of DumpJson (constant is not obligate here) - Introduce a new macro for transient objects to be called as the first row in DumpJson: OCCT_DUMP_TRANSIENT_CLASS_BEGIN. We need not put the class name in the macro, using get_type_name of Standard_Transient for it. - change implementation of OCCT_DUMP_CLASS_BEGIN and OCCT_DUMP_TRANSIENT_CLASS_BEGIN. It is not an sentry more and it does not create a new hierarchy level. It appends a new row into the output stream: "className": <className> - OCCT_DUMP_* does not require semicolon - class header is included first in source files of TDataStd, TDocStd, TCAFDoc
131 lines
5.3 KiB
C++
131 lines
5.3 KiB
C++
// Created on: 1993-03-10
|
|
// Created by: JCV
|
|
// Copyright (c) 1993-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 _Geom_ElementarySurface_HeaderFile
|
|
#define _Geom_ElementarySurface_HeaderFile
|
|
|
|
#include <gp_Ax3.hxx>
|
|
#include <Geom_Surface.hxx>
|
|
|
|
class Geom_ElementarySurface;
|
|
DEFINE_STANDARD_HANDLE(Geom_ElementarySurface, Geom_Surface)
|
|
|
|
//! Describes the common behavior of surfaces which
|
|
//! have a simple parametric equation in a local
|
|
//! coordinate system. The Geom package provides
|
|
//! several implementations of concrete elementary surfaces:
|
|
//! - the plane, and
|
|
//! - four simple surfaces of revolution: the cylinder, the
|
|
//! cone, the sphere and the torus.
|
|
//! An elementary surface inherits the common behavior
|
|
//! of Geom_Surface surfaces. Furthermore, it is located
|
|
//! in 3D space by a coordinate system (a gp_Ax3
|
|
//! object) which is also its local coordinate system.
|
|
//! Any elementary surface is oriented, i.e. the normal
|
|
//! vector is always defined, and gives the same
|
|
//! orientation to the surface, at any point on the surface.
|
|
//! In topology this property is referred to as the "outside
|
|
//! region of the surface". This orientation is related to
|
|
//! the two parametric directions of the surface.
|
|
//! Rotation of a surface around the "main Axis" of its
|
|
//! coordinate system, in the trigonometric sense given
|
|
//! by the "X Direction" and the "Y Direction" of the
|
|
//! coordinate system, defines the u parametric direction
|
|
//! of that elementary surface of revolution. This is the
|
|
//! default construction mode.
|
|
//! It is also possible, however, to change the orientation
|
|
//! of a surface by reversing one of the two parametric
|
|
//! directions: use the UReverse or VReverse functions
|
|
//! to change the orientation of the normal at any point on the surface.
|
|
//! Warning
|
|
//! The local coordinate system of an elementary surface
|
|
//! is not necessarily direct:
|
|
//! - if it is direct, the trigonometric sense defined by its
|
|
//! "main Direction" is the same as the trigonometric
|
|
//! sense defined by its two vectors "X Direction" and "Y Direction":
|
|
//! "main Direction" = "X Direction" ^ "Y Direction"
|
|
//! - if it is indirect, the two definitions of trigonometric
|
|
//! sense are opposite:
|
|
//! "main Direction" = - "X Direction" ^ "Y Direction"
|
|
class Geom_ElementarySurface : public Geom_Surface
|
|
{
|
|
public:
|
|
|
|
//! Changes the main axis (ZAxis) of the elementary surface.
|
|
//!
|
|
//! Raised if the direction of A1 is parallel to the XAxis of the
|
|
//! coordinate system of the surface.
|
|
void SetAxis (const gp_Ax1& theA1) { pos.SetAxis(theA1); }
|
|
|
|
//! Changes the location of the local coordinates system of the
|
|
//! surface.
|
|
void SetLocation (const gp_Pnt& theLoc) { pos.SetLocation(theLoc); }
|
|
|
|
//! Changes the local coordinates system of the surface.
|
|
void SetPosition (const gp_Ax3& theAx3) { pos = theAx3; }
|
|
|
|
//! Returns the main axis of the surface (ZAxis).
|
|
const gp_Ax1& Axis() const { return pos.Axis(); }
|
|
|
|
//! Returns the location point of the local coordinate system of the
|
|
//! surface.
|
|
const gp_Pnt& Location() const { return pos.Location(); }
|
|
|
|
//! Returns the local coordinates system of the surface.
|
|
const gp_Ax3& Position() const { return pos; }
|
|
|
|
//! Reverses the U parametric direction of the surface.
|
|
Standard_EXPORT virtual void UReverse() Standard_OVERRIDE;
|
|
|
|
//! Return the parameter on the Ureversed surface for
|
|
//! the point of parameter U on <me>.
|
|
//!
|
|
//! me->UReversed()->Value(me->UReversedParameter(U),V)
|
|
//! is the same point as
|
|
//! me->Value(U,V)
|
|
Standard_EXPORT virtual Standard_Real UReversedParameter (const Standard_Real U) const Standard_OVERRIDE = 0;
|
|
|
|
//! Reverses the V parametric direction of the surface.
|
|
Standard_EXPORT virtual void VReverse() Standard_OVERRIDE;
|
|
|
|
//! Return the parameter on the Vreversed surface for
|
|
//! the point of parameter V on <me>.
|
|
//!
|
|
//! me->VReversed()->Value(U,me->VReversedParameter(V))
|
|
//! is the same point as
|
|
//! me->Value(U,V)
|
|
Standard_EXPORT virtual Standard_Real VReversedParameter (const Standard_Real V) const Standard_OVERRIDE = 0;
|
|
|
|
//! Returns GeomAbs_CN, the global continuity of any elementary surface.
|
|
Standard_EXPORT GeomAbs_Shape Continuity() const Standard_OVERRIDE;
|
|
|
|
//! Returns True.
|
|
Standard_EXPORT Standard_Boolean IsCNu (const Standard_Integer N) const Standard_OVERRIDE;
|
|
|
|
//! Returns True.
|
|
Standard_EXPORT Standard_Boolean IsCNv (const Standard_Integer N) const Standard_OVERRIDE;
|
|
|
|
//! Dumps the content of me into the stream
|
|
Standard_EXPORT virtual void DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth = -1) const Standard_OVERRIDE;
|
|
|
|
DEFINE_STANDARD_RTTIEXT(Geom_ElementarySurface,Geom_Surface)
|
|
|
|
protected:
|
|
gp_Ax3 pos;
|
|
};
|
|
|
|
#endif // _Geom_ElementarySurface_HeaderFile
|