mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-16 10:54:53 +03:00
109 lines
2.9 KiB
Plaintext
Executable File
109 lines
2.9 KiB
Plaintext
Executable File
-- Created on: 1993-04-30
|
|
-- Created by: Yves FRICAUD
|
|
-- 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 Node from MAT
|
|
|
|
---Purpose :
|
|
|
|
inherits
|
|
|
|
TShared from MMgt
|
|
|
|
uses
|
|
|
|
Arc from MAT,
|
|
BasicElt from MAT,
|
|
SequenceOfArc from MAT,
|
|
SequenceOfBasicElt from MAT,
|
|
Address from Standard
|
|
is
|
|
Create (GeomIndex : Integer;
|
|
LinkedArc : Arc from MAT;
|
|
Distance : Real)
|
|
returns mutable Node from MAT;
|
|
|
|
GeomIndex (me)
|
|
---Purpose: Returns the index associated of the geometric
|
|
-- representation of <me>.
|
|
returns Integer
|
|
is static;
|
|
|
|
Index (me)
|
|
---Purpose: Returns the index associated of the node
|
|
returns Integer
|
|
is static;
|
|
|
|
LinkedArcs (me ; S : in out SequenceOfArc)
|
|
---Purpose: Returns in <S> the Arcs linked to <me>.
|
|
is static;
|
|
|
|
NearElts (me ; S : in out SequenceOfBasicElt)
|
|
---Purpose: Returns in <S> the BasicElts equidistant
|
|
-- to <me>.
|
|
is static;
|
|
|
|
Distance (me)
|
|
--Purpose: Returns the distance between <me> and the figure.
|
|
returns Real
|
|
is static;
|
|
|
|
PendingNode (me)
|
|
--- Purpose:Returns True if <me> is a pending Node.
|
|
-- (ie : the number of Arc Linked = 1)
|
|
returns Boolean from Standard
|
|
is static;
|
|
|
|
OnBasicElt (me)
|
|
---Purpose: Returns True if <me> belongs to the figure.
|
|
returns Boolean from Standard
|
|
is static;
|
|
|
|
Infinite (me)
|
|
---Purpose: Returns True if the distance of <me> is Infinite
|
|
returns Boolean from Standard
|
|
is static;
|
|
|
|
SetIndex (me : mutable ; anIndex : Integer from Standard)
|
|
--- Purpose : Set the index associated of the node
|
|
is static;
|
|
|
|
SetLinkedArc(me : mutable ; anArc : Arc from MAT)
|
|
is static;
|
|
|
|
|
|
fields
|
|
|
|
nodeIndex : Integer from Standard;
|
|
geomIndex : Integer from Standard;
|
|
aLinkedArc : Address from Standard;
|
|
distance : Real from Standard;
|
|
|
|
end Node;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|