mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-12 02:40:22 +08:00
173 lines
3.7 KiB
Plaintext
Executable File
173 lines
3.7 KiB
Plaintext
Executable File
-- Created on: 1993-03-04
|
|
-- Created by: Jacques GOUSSARD
|
|
-- Copyright (c) 1993-1999 Matra Datavision
|
|
-- Copyright (c) 1999-2012 OPEN CASCADE SAS
|
|
--
|
|
-- The content of this file is subject to the Open CASCADE Technology Public
|
|
-- License Version 6.5 (the "License"). You may not use the content of this file
|
|
-- except in compliance with the License. Please obtain a copy of the License
|
|
-- at http://www.opencascade.org and read it completely before using this file.
|
|
--
|
|
-- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
|
|
-- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
|
|
--
|
|
-- The Original Code and all software distributed under the License is
|
|
-- distributed on an "AS IS" basis, without warranty of any kind, and the
|
|
-- Initial Developer 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 the rights and limitations under the License.
|
|
|
|
|
|
|
|
class ContAna from Contap
|
|
|
|
---Purpose: This class provides the computation of the contours
|
|
-- for quadric surfaces.
|
|
|
|
uses Sphere from gp,
|
|
Cylinder from gp,
|
|
Cone from gp,
|
|
Lin from gp,
|
|
Circ from gp,
|
|
Pnt from gp,
|
|
Dir from gp,
|
|
CurveType from GeomAbs
|
|
|
|
|
|
raises NotDone from StdFail,
|
|
DomainError from Standard,
|
|
OutOfRange from Standard
|
|
|
|
is
|
|
|
|
Create
|
|
|
|
returns ContAna from Contap;
|
|
|
|
|
|
Perform(me: in out; S: Sphere from gp; D: Dir from gp)
|
|
|
|
is static;
|
|
|
|
|
|
Perform(me: in out; S: Sphere from gp; D : Dir from gp;
|
|
Ang: Real from Standard)
|
|
|
|
is static;
|
|
|
|
|
|
Perform(me: in out; S: Sphere from gp; Eye: Pnt from gp)
|
|
|
|
is static;
|
|
|
|
|
|
Perform(me: in out; C: Cylinder from gp; D: Dir from gp)
|
|
|
|
is static;
|
|
|
|
|
|
Perform(me: in out; C: Cylinder from gp; D : Dir from gp;
|
|
Ang: Real from Standard)
|
|
|
|
is static;
|
|
|
|
|
|
Perform(me: in out; C: Cylinder from gp; Eye: Pnt from gp)
|
|
|
|
---Purpose:
|
|
|
|
is static;
|
|
|
|
|
|
Perform(me: in out; C: Cone from gp; D: Dir from gp)
|
|
|
|
is static;
|
|
|
|
|
|
Perform(me: in out; C: Cone from gp; D : Dir from gp;
|
|
Ang: Real from Standard)
|
|
|
|
is static;
|
|
|
|
|
|
Perform(me: in out; C: Cone from gp; Eye: Pnt from gp)
|
|
|
|
---Purpose:
|
|
|
|
is static;
|
|
|
|
|
|
IsDone(me)
|
|
|
|
returns Boolean from Standard
|
|
---C++: inline
|
|
|
|
is static;
|
|
|
|
|
|
NbContours(me)
|
|
|
|
returns Integer from Standard
|
|
---C++: inline
|
|
|
|
raises NotDone from StdFail
|
|
|
|
is static;
|
|
|
|
|
|
|
|
TypeContour(me)
|
|
|
|
---Purpose: Returns GeomAbs_Line or GeomAbs_Circle, when
|
|
-- IsDone() returns True.
|
|
|
|
returns CurveType from GeomAbs
|
|
---C++: inline
|
|
|
|
raises NotDone from StdFail,
|
|
DomainError from Standard
|
|
|
|
is static;
|
|
|
|
|
|
Circle(me)
|
|
|
|
returns Circ from gp
|
|
---C++: inline
|
|
|
|
raises NotDone from StdFail,
|
|
DomainError from Standard
|
|
|
|
|
|
is static;
|
|
|
|
|
|
Line(me; Index: Integer from Standard)
|
|
|
|
returns Lin from gp
|
|
|
|
raises NotDone from StdFail,
|
|
DomainError from Standard,
|
|
OutOfRange from Standard
|
|
|
|
is static;
|
|
|
|
|
|
fields
|
|
|
|
done : Boolean from Standard;
|
|
nbSol : Integer from Standard;
|
|
typL : CurveType from GeomAbs;
|
|
pt1 : Pnt from gp;
|
|
pt2 : Pnt from gp;
|
|
pt3 : Pnt from gp;
|
|
pt4 : Pnt from gp;
|
|
dir1 : Dir from gp;
|
|
dir2 : Dir from gp;
|
|
dir3 : Dir from gp;
|
|
dir4 : Dir from gp;
|
|
prm : Real from Standard;
|
|
|
|
end ContAna;
|