blob: 6147b9f0ec8f3a0e6a454fb136064504d3d3e412 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
-- File: BRepAlgo_Cut.cdl
-- Created: Thu Oct 14 18:27:02 1993
-- Author: Remi LEQUETTE
-- <rle@phylox>
---Copyright: Matra Datavision 1993
class Cut from BRepAlgo inherits BooleanOperation from BRepAlgo
---Purpose: Describes functions for performing a topological cut
-- operation (Boolean subtraction).
-- A Cut object provides the framework for:
-- - defining the construction of a cut shape,
-- - implementing the construction algorithm, and
-- - consulting the result.
uses
Shape from TopoDS
is
Create (S1,S2 : Shape from TopoDS) returns Cut from BRepAlgo;
---Purpose: Cuts the shape S2 from the shape S1.
end Cut;
|