mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-16 10:08:36 +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.
128 lines
2.6 KiB
Plaintext
128 lines
2.6 KiB
Plaintext
-- Created on: 1992-10-22
|
|
-- Created by: Jacques GOUSSARD
|
|
-- Copyright (c) 1992-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.
|
|
|
|
generic class PathPoint from IntStart
|
|
(TheVertex as any;
|
|
TheArc as any)
|
|
|
|
---Purpose: This class describes a point on an arc which
|
|
-- solution intersection between 2 surfaces.
|
|
|
|
uses Pnt from gp,
|
|
Vec from gp,
|
|
Dir2d from gp
|
|
|
|
raises DomainError from Standard
|
|
|
|
is
|
|
|
|
Create
|
|
|
|
returns PathPoint from IntStart;
|
|
|
|
|
|
Create(P: Pnt from gp; Tol: Real from Standard;
|
|
V: TheVertex; A: TheArc; Parameter: Real from Standard)
|
|
|
|
returns PathPoint from IntStart;
|
|
|
|
|
|
Create(P: Pnt from gp; Tol: Real from Standard;
|
|
A: TheArc; Parameter: Real from Standard)
|
|
|
|
returns PathPoint from IntStart;
|
|
|
|
|
|
SetValue(me: in out; P: Pnt from gp; Tol: Real from Standard;
|
|
V: TheVertex; A: TheArc;
|
|
Parameter: Real from Standard)
|
|
|
|
---C++: inline
|
|
|
|
is static;
|
|
|
|
|
|
SetValue(me: in out; P: Pnt from gp; Tol: Real from Standard;
|
|
A: TheArc; Parameter: Real from Standard)
|
|
|
|
---C++: inline
|
|
|
|
is static;
|
|
|
|
|
|
Value(me)
|
|
|
|
returns Pnt from gp
|
|
---C++: return const&
|
|
---C++: inline
|
|
|
|
is static;
|
|
|
|
|
|
Tolerance(me)
|
|
|
|
returns Real from Standard
|
|
---C++: inline
|
|
|
|
is static;
|
|
|
|
|
|
IsNew(me)
|
|
|
|
returns Boolean from Standard
|
|
---C++: inline
|
|
|
|
is static;
|
|
|
|
|
|
Vertex(me)
|
|
|
|
returns any TheVertex
|
|
---C++: return const&
|
|
---C++: inline
|
|
|
|
raises DomainError from Standard
|
|
is static;
|
|
|
|
|
|
Arc(me)
|
|
|
|
returns any TheArc
|
|
---C++: return const&
|
|
---C++: inline
|
|
|
|
is static;
|
|
|
|
|
|
Parameter(me)
|
|
|
|
returns Real from Standard
|
|
---C++: inline
|
|
|
|
raises DomainError from Standard
|
|
is static;
|
|
|
|
fields
|
|
|
|
point : Pnt from gp;
|
|
tol : Real from Standard;
|
|
isnew : Boolean from Standard;
|
|
vtx : TheVertex;
|
|
arc : TheArc;
|
|
param : Real from Standard;
|
|
|
|
end PathPoint;
|