1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
|
// File generated by CPPExt (Value)
//
// Copyright (C) 1991 - 2000 by
// Matra Datavision SA. All rights reserved.
//
// Copyright (C) 2001 - 2004 by
// Open CASCADE SA. All rights reserved.
//
// This file is part of the Open CASCADE Technology software.
//
// This software may be distributed and/or modified under the terms and
// conditions of the Open CASCADE Public License as defined by Open CASCADE SA
// and appearing in the file LICENSE included in the packaging of this file.
//
// This software is distributed on an "AS IS" basis, without warranty of any
// kind, and Open CASCADE SA hereby disclaims all such warranties,
// including without limitation, any warranties of merchantability, fitness
// for a particular purpose or non-infringement. Please see the License for
// the specific terms and conditions governing rights and limitations under the
// License.
#ifndef _BRepFilletAPI_MakeChamfer_HeaderFile
#define _BRepFilletAPI_MakeChamfer_HeaderFile
#ifndef _ChFi3d_ChBuilder_HeaderFile
#include <ChFi3d_ChBuilder.hxx>
#endif
#ifndef _TopTools_MapOfShape_HeaderFile
#include <TopTools_MapOfShape.hxx>
#endif
#ifndef _BRepFilletAPI_LocalOperation_HeaderFile
#include <BRepFilletAPI_LocalOperation.hxx>
#endif
#ifndef _Standard_Real_HeaderFile
#include <Standard_Real.hxx>
#endif
#ifndef _Standard_Integer_HeaderFile
#include <Standard_Integer.hxx>
#endif
#ifndef _Standard_Boolean_HeaderFile
#include <Standard_Boolean.hxx>
#endif
#ifndef _Handle_TopOpeBRepBuild_HBuilder_HeaderFile
#include <Handle_TopOpeBRepBuild_HBuilder.hxx>
#endif
#ifndef _Handle_ChFiDS_SecHArray1_HeaderFile
#include <Handle_ChFiDS_SecHArray1.hxx>
#endif
class StdFail_NotDone;
class TopoDS_Shape;
class TopoDS_Edge;
class TopoDS_Face;
class TopoDS_Vertex;
class TopOpeBRepBuild_HBuilder;
class TopTools_ListOfShape;
class ChFiDS_SecHArray1;
#ifndef _Standard_HeaderFile
#include <Standard.hxx>
#endif
#ifndef _Standard_Macro_HeaderFile
#include <Standard_Macro.hxx>
#endif
//! Describes functions to build chamfers on edges of a shell or solid. <br>
//! Chamfered Edge of a Shell or Solid <br>
//! A MakeChamfer object provides a framework for: <br>
//! - initializing the construction algorithm with a given shape, <br>
//! - acquiring the data characterizing the chamfers, <br>
//! - building the chamfers and constructing the resulting shape, and <br>
//! - consulting the result. <br>
class BRepFilletAPI_MakeChamfer : public BRepFilletAPI_LocalOperation {
public:
void* operator new(size_t,void* anAddress)
{
return anAddress;
}
void* operator new(size_t size)
{
return Standard::Allocate(size);
}
void operator delete(void *anAddress)
{
if (anAddress) Standard::Free((Standard_Address&)anAddress);
}
// Methods PUBLIC
//
//! Initializes an algorithm for computing chamfers on the shape S. <br>
//! The edges on which chamfers are built are defined using the Add function. <br>
Standard_EXPORT BRepFilletAPI_MakeChamfer(const TopoDS_Shape& S);
//! Adds edge E to the table of edges used by this <br>
//! algorithm to build chamfers, where the parameters <br>
//! of the chamfer must be set after the <br>
Standard_EXPORT void Add(const TopoDS_Edge& E) ;
//! Adds edge E to the table of edges used by this <br>
//! algorithm to build chamfers, where <br>
//! the parameters of the chamfer are given by the two <br>
//! distances Dis1 and Dis2; the face F identifies the side <br>
//! where Dis1 is measured. <br>
//! The Add function results in a contour being built by <br>
//! propagation from the edge E (i.e. the contour contains at <br>
//! least this edge). This contour is composed of edges of <br>
//! the shape which are tangential to one another and <br>
//! which delimit two series of tangential faces, with one <br>
//! series of faces being located on either side of the contour. <br>
//! Warning <br>
//! Nothing is done if edge E or the face F does not belong to the initial shape. <br>
Standard_EXPORT void Add(const Standard_Real Dis,const TopoDS_Edge& E,const TopoDS_Face& F) ;
//! Sets the distances Dis1 and Dis2 which give the <br>
//! parameters of the chamfer along the contour of index <br>
//! IC generated using the Add function in the internal <br>
//! data structure of this algorithm. The face F identifies <br>
//! the side where Dis1 is measured. <br>
//! Warning <br>
//! Nothing is done if either the edge E or the face F <br>
//! does not belong to the initial shape. <br>
Standard_EXPORT void SetDist(const Standard_Real Dis,const Standard_Integer IC,const TopoDS_Face& F) ;
Standard_EXPORT void GetDist(const Standard_Integer IC,Standard_Real& Dis) const;
//! Adds a fillet contour in the builder (builds a <br>
//! contour of tangent edges to <E> and sets the two <br>
//! distances <Dis1> and <Dis2> ( parameters of the chamfer ) ). <br>
Standard_EXPORT void Add(const Standard_Real Dis1,const Standard_Real Dis2,const TopoDS_Edge& E,const TopoDS_Face& F) ;
//! Sets the distances Dis1 and Dis2 which give the <br>
//! parameters of the chamfer along the contour of index <br>
//! IC generated using the Add function in the internal <br>
//! data structure of this algorithm. The face F identifies <br>
//! the side where Dis1 is measured. <br>
//! Warning <br>
//! Nothing is done if either the edge E or the face F <br>
//! does not belong to the initial shape. <br>
Standard_EXPORT void SetDists(const Standard_Real Dis1,const Standard_Real Dis2,const Standard_Integer IC,const TopoDS_Face& F) ;
//! Returns the distances Dis1 and Dis2 which give the <br>
//! parameters of the chamfer along the contour of index IC <br>
//! in the internal data structure of this algorithm. <br>
//! Warning <br>
//! -1. is returned if IC is outside the bounds of the table of contours. <br>
Standard_EXPORT void Dists(const Standard_Integer IC,Standard_Real& Dis1,Standard_Real& Dis2) const;
//! Adds a fillet contour in the builder (builds a <br>
//! contour of tangent edges to <E> and sets the <br>
//! distance <Dis1> and angle <Angle> ( parameters of the chamfer ) ). <br>
Standard_EXPORT void AddDA(const Standard_Real Dis,const Standard_Real Angle,const TopoDS_Edge& E,const TopoDS_Face& F) ;
//! set the distance <Dis> and <Angle> of the fillet <br>
//! contour of index <IC> in the DS with <Dis> on <F>. <br>//! if the face <F> is not one of common faces <br>
//! of an edge of the contour <IC> <br>
Standard_EXPORT void SetDistAngle(const Standard_Real Dis,const Standard_Real Angle,const Standard_Integer IC,const TopoDS_Face& F) ;
//! gives the distances <Dis> and <Angle> of the fillet <br>
//! contour of index <IC> in the DS <br>
Standard_EXPORT void GetDistAngle(const Standard_Integer IC,Standard_Real& Dis,Standard_Real& Angle,Standard_Boolean& DisOnFace1) const;
//! return True if chamfer symetric false else. <br>
Standard_EXPORT Standard_Boolean IsSymetric(const Standard_Integer IC) const;
//! return True if chamfer is made with two distances false else. <br>
Standard_EXPORT Standard_Boolean IsTwoDistances(const Standard_Integer IC) const;
//! return True if chamfer is made with distance and angle false else. <br>
Standard_EXPORT Standard_Boolean IsDistanceAngle(const Standard_Integer IC) const;
//! Erases the chamfer parameters on the contour of <br>
//! index IC in the internal data structure of this algorithm. <br>
//! Use the SetDists function to reset this data. <br>
//! Warning <br>
//! Nothing is done if IC is outside the bounds of the table of contours. <br>
Standard_EXPORT void ResetContour(const Standard_Integer IC) ;
//! Returns the number of contours generated using the <br>
//! Add function in the internal data structure of this algorithm. <br>
Standard_EXPORT Standard_Integer NbContours() const;
//! Returns the index of the contour in the internal data <br>
//! structure of this algorithm, which contains the edge E of the shape. <br>
//! This function returns 0 if the edge E does not belong to any contour. <br>
//! Warning <br>
//! This index can change if a contour is removed from the <br>
//! internal data structure of this algorithm using the function Remove. <br>
Standard_EXPORT Standard_Integer Contour(const TopoDS_Edge& E) const;
//! Returns the number of edges in the contour of index I in <br>
//! the internal data structure of this algorithm. <br>
//! Warning <br>
//! Returns 0 if I is outside the bounds of the table of contours. <br>
Standard_EXPORT Standard_Integer NbEdges(const Standard_Integer I) const;
//! Returns the edge of index J in the contour of index I in <br>
//! the internal data structure of this algorithm. <br>
//! Warning <br>
//! Returns a null shape if: <br>
//! - I is outside the bounds of the table of contours, or <br>
//! - J is outside the bounds of the table of edges of the contour of index I. <br>
Standard_EXPORT const TopoDS_Edge& Edge(const Standard_Integer I,const Standard_Integer J) const;
//! Removes the contour in the internal data structure of <br>
//! this algorithm which contains the edge E of the shape. <br>
//! Warning <br>
//! Nothing is done if the edge E does not belong to the <br>
//! contour in the internal data structure of this algorithm. <br>
Standard_EXPORT void Remove(const TopoDS_Edge& E) ;
//! Returns the length of the contour of index IC in the <br>
//! internal data structure of this algorithm. <br>
//! Warning <br>
//! Returns -1. if IC is outside the bounds of the table of contours. <br>
Standard_EXPORT Standard_Real Length(const Standard_Integer IC) const;
//! Returns the first vertex of the contour of index IC <br>
//! in the internal data structure of this algorithm. <br>
//! Warning <br>
//! Returns a null shape if IC is outside the bounds of the table of contours. <br>
Standard_EXPORT TopoDS_Vertex FirstVertex(const Standard_Integer IC) const;
//! Returns the last vertex of the contour of index IC <br>
//! in the internal data structure of this algorithm. <br>
//! Warning <br>
//! Returns a null shape if IC is outside the bounds of the table of contours. <br>
Standard_EXPORT TopoDS_Vertex LastVertex(const Standard_Integer IC) const;
//! Returns the curvilinear abscissa of the vertex V on the <br>
//! contour of index IC in the internal data structure of this algorithm. <br>
//! Warning <br>
//! Returns -1. if: <br>
//! - IC is outside the bounds of the table of contours, or <br>
//! - V is not on the contour of index IC. <br>
Standard_EXPORT Standard_Real Abscissa(const Standard_Integer IC,const TopoDS_Vertex& V) const;
//! Returns the relative curvilinear abscissa (i.e. between 0 <br>
//! and 1) of the vertex V on the contour of index IC in the <br>
//! internal data structure of this algorithm. <br>
//! Warning <br>
//! Returns -1. if: <br>
//! - IC is outside the bounds of the table of contours, or <br>
//! - V is not on the contour of index IC. <br>
Standard_EXPORT Standard_Real RelativeAbscissa(const Standard_Integer IC,const TopoDS_Vertex& V) const;
//! eturns true if the contour of index IC in the internal <br>
//! data structure of this algorithm is closed and tangential at the point of closure. <br>
//! Warning <br>
//! Returns false if IC is outside the bounds of the table of contours. <br>
Standard_EXPORT Standard_Boolean ClosedAndTangent(const Standard_Integer IC) const;
//! Returns true if the contour of index IC in the internal <br>
//! data structure of this algorithm is closed. <br>
//! Warning <br>
//! Returns false if IC is outside the bounds of the table of contours. <br>
Standard_EXPORT Standard_Boolean Closed(const Standard_Integer IC) const;
//! Builds the chamfers on all the contours in the internal <br>
//! data structure of this algorithm and constructs the resulting shape. <br>
//! Use the function IsDone to verify that the chamfered <br>
//! shape is built. Use the function Shape to retrieve the chamfered shape. <br>
//! Warning <br>
//! The construction of chamfers implements highly complex <br>
//! construction algorithms. Consequently, there may be <br>
//! instances where the algorithm fails, for example if the <br>
//! data defining the parameters of the chamfer is not <br>
//! compatible with the geometry of the initial shape. There <br>
//! is no initial analysis of errors and these only become <br>
//! evident at the construction stage. <br>
//! Additionally, in the current software release, the following <br>
//! cases are not handled: <br>
//! - the end point of the contour is the point of <br>
//! intersection of 4 or more edges of the shape, or <br>
//! - the intersection of the chamfer with a face which <br>
//! limits the contour is not fully contained in this face. <br>
Standard_EXPORT virtual void Build() ;
//! Reinitializes this algorithm, thus canceling the effects of the Build function. <br>
//! This function allows modifications to be made to the <br>
//! contours and chamfer parameters in order to rebuild the shape. <br>
Standard_EXPORT void Reset() ;
//! Returns the internal filleting algorithm. <br>
Standard_EXPORT Handle_TopOpeBRepBuild_HBuilder Builder() const;
//! Returns the list of shapes generated from the <br>
//! shape <EorV>. <br>
Standard_EXPORT virtual const TopTools_ListOfShape& Generated(const TopoDS_Shape& EorV) ;
//! Returns the list of shapes modified from the shape <br>
//! <F>. <br>
Standard_EXPORT virtual const TopTools_ListOfShape& Modified(const TopoDS_Shape& F) ;
Standard_EXPORT virtual Standard_Boolean IsDeleted(const TopoDS_Shape& F) ;
Standard_EXPORT void Simulate(const Standard_Integer IC) ;
Standard_EXPORT Standard_Integer NbSurf(const Standard_Integer IC) const;
Standard_EXPORT Handle_ChFiDS_SecHArray1 Sect(const Standard_Integer IC,const Standard_Integer IS) const;
protected:
// Methods PROTECTED
//
// Fields PROTECTED
//
private:
// Methods PRIVATE
//
// Fields PRIVATE
//
ChFi3d_ChBuilder myBuilder;
TopTools_MapOfShape myMap;
};
// other Inline functions and methods (like "C++: function call" methods)
//
#endif
|