mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-07 18:30:55 +03:00
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast Wrong license statements corrected in several files. Copyright and license statements added in XSD and GLSL files. Copyright year updated in some files. Obsolete documentation files removed from DrawResources.
111 lines
3.2 KiB
Plaintext
111 lines
3.2 KiB
Plaintext
-- Created on: 1993-07-22
|
|
-- Created by: Remi LEQUETTE
|
|
-- 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.
|
|
|
|
class MakeWedge from BRepPrimAPI inherits MakeShape from BRepBuilderAPI
|
|
|
|
---Purpose: Describes functions to build wedges, i.e. boxes with inclined faces.
|
|
-- A MakeWedge object provides a framework for:
|
|
-- - defining the construction of a wedge,
|
|
-- - implementing the construction algorithm, and
|
|
-- - consulting the result.
|
|
|
|
uses
|
|
Ax2 from gp,
|
|
Pnt from gp,
|
|
Shell from TopoDS,
|
|
Solid from TopoDS,
|
|
Wedge from BRepPrim
|
|
|
|
|
|
raises
|
|
DomainError from Standard,
|
|
NotDone from StdFail
|
|
|
|
|
|
is
|
|
|
|
|
|
Create( dx, dy, dz, ltx : Real)
|
|
returns MakeWedge from BRepPrimAPI
|
|
---Purpose: Make a STEP right angular wedge. (ltx >= 0)
|
|
---Level: Public
|
|
raises
|
|
DomainError from Standard; -- if dx,dy,dz <= Precision::Confusion()
|
|
|
|
|
|
Create(Axes : Ax2 from gp; dx, dy, dz, ltx : Real)
|
|
returns MakeWedge from BRepPrimAPI
|
|
---Purpose: Make a STEP right angular wedge. (ltx >= 0)
|
|
---Level: Public
|
|
raises
|
|
DomainError from Standard; -- if dx,dy,dz <= Precision::Confusion()
|
|
|
|
|
|
Create(dx,dy,dz,xmin,zmin,xmax,zmax : Real)
|
|
|
|
returns MakeWedge from BRepPrimAPI
|
|
---Purpose: Make a wedge. The face at dy is xmin,zmin xmax,zmax
|
|
---Level: Public
|
|
raises
|
|
DomainError from Standard; -- if dx,dy,dz <= Precision::Confusion()
|
|
|
|
Create(Axes : Ax2 from gp; dx,dy,dz,xmin,zmin,xmax,zmax : Real)
|
|
returns MakeWedge from BRepPrimAPI
|
|
---Purpose: Make a wedge. The face at dy is xmin,zmin xmax,zmax
|
|
---Level: Public
|
|
raises
|
|
DomainError from Standard; -- if dx,dy,dz <= Precision::Confusion()
|
|
|
|
|
|
----------------------------------------
|
|
-- Auxiliary methods
|
|
----------------------------------------
|
|
|
|
Wedge(me : in out) returns Wedge from BRepPrim
|
|
---Purpose: Returns the internal algorithm.
|
|
--
|
|
---C++: return &
|
|
---Level: Public
|
|
is static;
|
|
|
|
|
|
----------------------------------------
|
|
-- Results
|
|
----------------------------------------
|
|
|
|
Build(me : in out)
|
|
---Purpose: Stores the solid in myShape.
|
|
---Level: Public
|
|
is redefined;
|
|
|
|
Shell(me : in out) returns Shell from TopoDS
|
|
---C++: return const &
|
|
---C++: alias "Standard_EXPORT operator TopoDS_Shell();"
|
|
---Purpose: Returns the constructed box in the form of a shell.
|
|
is static;
|
|
|
|
Solid(me : in out) returns Solid from TopoDS
|
|
---C++: return const &
|
|
---C++: alias "Standard_EXPORT operator TopoDS_Solid();"
|
|
---Purpose: Returns the constructed box in the form of a solid.
|
|
is static;
|
|
|
|
fields
|
|
|
|
myWedge : Wedge from BRepPrim;
|
|
|
|
end MakeWedge;
|