mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-22 04:37:23 +08:00
239 lines
7.5 KiB
Plaintext
Executable File
239 lines
7.5 KiB
Plaintext
Executable File
-- Created on: 1993-11-26
|
|
-- Created by: Isabelle GRIGNON
|
|
-- 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 SurfData from ChFiDS inherits TShared from MMgt
|
|
|
|
---Purpose:
|
|
|
|
uses
|
|
Pnt2d from gp,
|
|
Surface from Geom,
|
|
Orientation from TopAbs,
|
|
FaceInterference from ChFiDS,
|
|
CommonPoint from ChFiDS
|
|
|
|
is
|
|
Create returns mutable SurfData;
|
|
|
|
Copy(me: mutable; Other : SurfData from ChFiDS);
|
|
|
|
IndexOfS1(me) returns Integer is static;
|
|
---C++: inline
|
|
|
|
IndexOfS2(me) returns Integer is static;
|
|
---C++: inline
|
|
|
|
IsOnCurve1(me) returns Boolean is static;
|
|
---C++: inline
|
|
|
|
IsOnCurve2(me) returns Boolean is static;
|
|
---C++: inline
|
|
|
|
IndexOfC1(me) returns Integer is static;
|
|
---C++: inline
|
|
|
|
IndexOfC2(me) returns Integer is static;
|
|
---C++: inline
|
|
|
|
Surf(me) returns Integer is static;
|
|
---C++: inline
|
|
|
|
Orientation(me) returns Orientation from TopAbs is static;
|
|
---C++: inline
|
|
|
|
InterferenceOnS1(me) returns FaceInterference from ChFiDS is static;
|
|
---C++: inline
|
|
---C++: return const &
|
|
|
|
InterferenceOnS2(me) returns FaceInterference from ChFiDS is static;
|
|
---C++: inline
|
|
---C++: return const &
|
|
|
|
VertexFirstOnS1(me) returns CommonPoint from ChFiDS is static;
|
|
---C++: inline
|
|
---C++: return const &
|
|
|
|
VertexFirstOnS2(me) returns CommonPoint from ChFiDS is static;
|
|
---C++: inline
|
|
---C++: return const &
|
|
|
|
VertexLastOnS1(me) returns CommonPoint from ChFiDS is static;
|
|
---C++: inline
|
|
---C++: return const &
|
|
|
|
VertexLastOnS2(me) returns CommonPoint from ChFiDS is static;
|
|
---C++: inline
|
|
---C++: return const &
|
|
|
|
ChangeIndexOfS1(me : mutable; Index : Integer ) is static;
|
|
---C++: inline
|
|
|
|
ChangeIndexOfS2(me : mutable; Index : Integer ) is static;
|
|
---C++: inline
|
|
|
|
ChangeSurf(me : mutable; Index : Integer ) is static;
|
|
---C++: inline
|
|
|
|
SetIndexOfC1(me : mutable; Index : Integer ) is static;
|
|
---C++: inline
|
|
|
|
SetIndexOfC2(me : mutable; Index : Integer ) is static;
|
|
---C++: inline
|
|
|
|
ChangeOrientation(me : mutable) returns Orientation from TopAbs is static;
|
|
---C++: inline
|
|
---C++: return &
|
|
|
|
ChangeInterferenceOnS1(me : mutable)
|
|
returns FaceInterference from ChFiDS is static;
|
|
---C++: inline
|
|
---C++: return &
|
|
|
|
ChangeInterferenceOnS2(me : mutable)
|
|
returns FaceInterference from ChFiDS is static;
|
|
---C++: inline
|
|
---C++: return &
|
|
|
|
ChangeVertexFirstOnS1(me : mutable)
|
|
returns CommonPoint from ChFiDS is static;
|
|
---C++: inline
|
|
---C++: return &
|
|
|
|
ChangeVertexFirstOnS2(me : mutable)
|
|
returns CommonPoint from ChFiDS is static;
|
|
---C++: inline
|
|
---C++: return &
|
|
|
|
ChangeVertexLastOnS1(me : mutable)
|
|
returns CommonPoint from ChFiDS is static;
|
|
---C++: inline
|
|
---C++: return &
|
|
|
|
ChangeVertexLastOnS2(me : mutable)
|
|
returns CommonPoint from ChFiDS is static;
|
|
---C++: inline
|
|
---C++: return &
|
|
|
|
Interference(me; OnS : Integer from Standard)
|
|
returns FaceInterference from ChFiDS is static;
|
|
---C++: return const &
|
|
|
|
ChangeInterference(me : mutable; OnS : Integer from Standard)
|
|
returns FaceInterference from ChFiDS is static;
|
|
---C++: return &
|
|
|
|
Index(me; OfS : Integer from Standard)
|
|
returns Integer from Standard is static;
|
|
|
|
|
|
Vertex(me;
|
|
First : Boolean from Standard;
|
|
OnS : Integer from Standard)
|
|
returns CommonPoint from ChFiDS is static;
|
|
---C++: return const &
|
|
---Purpose: returns one of the four vertices wether First is true
|
|
-- or wrong and OnS equals 1 or 2.
|
|
|
|
ChangeVertex(me : mutable;
|
|
First : Boolean from Standard;
|
|
OnS : Integer from Standard)
|
|
returns CommonPoint from ChFiDS is static;
|
|
---C++: return &
|
|
---Purpose: returns one of the four vertices wether First is true
|
|
-- or wrong and OnS equals 1 or 2.
|
|
|
|
IsOnCurve(me; OnS : Integer from Standard) returns Boolean is static;
|
|
---C++: inline
|
|
|
|
IndexOfC(me; OnS : Integer from Standard) returns Integer is static;
|
|
---C++: inline
|
|
|
|
FirstSpineParam(me) returns Real from Standard is static;
|
|
LastSpineParam(me) returns Real from Standard is static;
|
|
FirstSpineParam(me : mutable; Par :Real from Standard) is static;
|
|
LastSpineParam(me : mutable; Par :Real from Standard) is static;
|
|
|
|
FirstExtensionValue(me) returns Real from Standard is static;
|
|
LastExtensionValue(me) returns Real from Standard is static;
|
|
FirstExtensionValue(me:mutable;Extend:Real from Standard) is static;
|
|
LastExtensionValue(me:mutable;Extend:Real from Standard) is static;
|
|
|
|
Simul(me) returns mutable TShared from MMgt;
|
|
SetSimul(me : mutable; S : TShared from MMgt);
|
|
ResetSimul(me : mutable);
|
|
|
|
Get2dPoints(me; First : Boolean from Standard; OnS : Integer from Standard)
|
|
returns Pnt2d from gp;
|
|
Get2dPoints(me; P2df1,P2dl1,P2df2,P2dl2 : out Pnt2d from gp);
|
|
Set2dPoints(me : mutable; P2df1,P2dl1,P2df2,P2dl2 : Pnt2d from gp);
|
|
|
|
TwistOnS1(me) returns Boolean is static;
|
|
---C++: inline
|
|
|
|
TwistOnS2(me) returns Boolean is static;
|
|
---C++: inline
|
|
|
|
TwistOnS1(me : mutable; T : Boolean from Standard);
|
|
---C++: inline
|
|
|
|
TwistOnS2(me : mutable; T : Boolean from Standard);
|
|
---C++: inline
|
|
|
|
|
|
|
|
fields
|
|
|
|
pfirstOnS1 : CommonPoint from ChFiDS;
|
|
plastOnS1 : CommonPoint from ChFiDS;
|
|
pfirstOnS2 : CommonPoint from ChFiDS;
|
|
plastOnS2 : CommonPoint from ChFiDS;
|
|
|
|
intf1 : FaceInterference from ChFiDS;
|
|
intf2 : FaceInterference from ChFiDS;
|
|
|
|
p2df1 : Pnt2d from gp; -- 2d points to be used as start point for simulation.
|
|
p2dl1 : Pnt2d from gp;
|
|
p2df2 : Pnt2d from gp;
|
|
p2dl2 : Pnt2d from gp;
|
|
|
|
ufspine : Real from Standard; -- may be uninitialized
|
|
ulspine : Real from Standard; -- may be uninitialized
|
|
myfirstextend : Real from Standard;
|
|
mylastextend : Real from Standard;
|
|
|
|
simul : TShared from MMgt; -- free space to store simulating sections.
|
|
|
|
indexOfS1 : Integer from Standard;
|
|
indexOfC1 : Integer from Standard;
|
|
indexOfS2 : Integer from Standard;
|
|
indexOfC2 : Integer from Standard;
|
|
indexOfConge : Integer from Standard;
|
|
|
|
isoncurv1 : Boolean from Standard;
|
|
isoncurv2 : Boolean from Standard;
|
|
twistons1 : Boolean from Standard;
|
|
twistons2 : Boolean from Standard;
|
|
orientation : Orientation from TopAbs;
|
|
|
|
end SurfData;
|
|
|